dashboard.css 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115
  1. /*
  2. General page styling
  3. */
  4. html{
  5. height: 100%;
  6. max-width: 100%;
  7. }
  8. body{
  9. display: flex;
  10. flex-direction: row;
  11. height: 100%;
  12. max-width: 100%;
  13. }
  14. .contentBlock{
  15. width: 100%;
  16. height: 100vh;
  17. flex: 1;
  18. box-sizing: border-box;
  19. position: relative;
  20. padding-bottom: 25px;
  21. }
  22. .mobileMenuSelector{
  23. display: none;
  24. position: fixed;
  25. left: 13px;
  26. top: -2px;
  27. font-size: 40px;
  28. }
  29. .mobileMenuSelector:active{
  30. color: rgb(255, 99, 107);
  31. }
  32. /*
  33. Multi-strand use classes
  34. */
  35. .strand{
  36. flex-direction: column;
  37. height: 100vh;
  38. width: 100%;
  39. padding-bottom: 25px;
  40. box-sizing: border-box;
  41. }
  42. .strandHead{
  43. display: flex;
  44. justify-content: space-between;
  45. width: 100%;
  46. padding: 10px 50px 0 50px;
  47. align-items: center;
  48. box-sizing: border-box;
  49. height: 10%;
  50. }
  51. .strandTitle{
  52. text-align: left;
  53. margin: 15px;
  54. padding: 0;
  55. }
  56. #sidebarCloser{
  57. width: 30px;
  58. background: rgb(0, 27, 45);
  59. color: white;
  60. margin-right: auto;
  61. border: none;
  62. position: fixed;
  63. top: 15px;
  64. left: 15px;
  65. }
  66. .buttonBox{
  67. display: flex;
  68. justify-content: space-around;
  69. margin-top: 50px;
  70. }
  71. .buttonBox > *{
  72. margin-right: 10px;
  73. }
  74. .choosable{
  75. display: flex;
  76. justify-content: space-around;
  77. align-items: center;
  78. background: rgb(0, 27, 45);
  79. color: white;
  80. border-radius: 5px;
  81. margin: 2px;
  82. padding: 5px;
  83. text-align: center;
  84. cursor: pointer;
  85. width: 99%;
  86. box-sizing: border-box;
  87. border: none;
  88. font-size: 16px;
  89. }
  90. .choosable.tall{
  91. padding: 15px;
  92. }
  93. .choosable:hover{
  94. background: rgb(201, 201, 201);
  95. color: black;
  96. }
  97. .choosable.active{
  98. background: rgb(179, 191, 209);
  99. color: white;
  100. }
  101. .searchBar{
  102. display: flex;
  103. align-items: center;
  104. margin-bottom: 10px;
  105. }
  106. .searchButton{
  107. padding: 6px;
  108. background: rgb(0, 27, 45);
  109. cursor: pointer;
  110. color: white;
  111. border-top-left-radius: 10px;
  112. border-bottom-left-radius: 10px;
  113. }
  114. .searchButton:hover{
  115. background: rgb(201, 201, 201);
  116. color: black;
  117. }
  118. .searchButton:active{
  119. background: rgb(179, 191, 209);
  120. color: white;
  121. }
  122. .searchInput{
  123. border: 4px solid rgb(0, 27, 45);
  124. font-size: 20px;
  125. border-top-right-radius: 10px;
  126. border-bottom-right-radius: 10px;
  127. padding: 1px 0 1px 4px;
  128. }
  129. .dateRange{
  130. display: flex;
  131. flex-direction: column;
  132. align-items: center;
  133. }
  134. .dateRangeInput{
  135. display: flex;
  136. justify-content: space-between;
  137. }
  138. .dateRangeInput p{
  139. margin: 0 5px;
  140. font-size: 20px;
  141. font-weight: bold;
  142. }
  143. .fileUpload{
  144. background: rgb(240, 252, 255);
  145. padding: 5px;
  146. border-radius: 5px;
  147. font-size: 16px;
  148. }
  149. .fileUpload::file-selector-button{
  150. background: rgb(0, 27, 45);
  151. border-radius: 5px;
  152. color: white;
  153. border: none;
  154. cursor: pointer;
  155. font-size: 18px;
  156. margin: auto 0;
  157. }
  158. .fileUpload::file-selector-button:hover{
  159. background: rgb(201, 201, 201);
  160. color: black;
  161. }
  162. /*
  163. Home Strand
  164. */
  165. #homeStrand{
  166. display: flex;
  167. }
  168. .card{
  169. margin: 0 15px;
  170. border: 1px solid rgba(183, 183, 183, 0.9);
  171. border-radius: 7px;
  172. box-shadow: 1px 2px gray;
  173. flex-grow: 1;
  174. height: 100%;
  175. }
  176. .card > *{
  177. margin: 10px;
  178. }
  179. .card p:first-of-type{
  180. font-size: 14px;
  181. font-weight: bold;
  182. text-align: center;
  183. }
  184. .flexRow{
  185. display: flex;
  186. justify-content: space-around;
  187. width: 100%;
  188. flex-basis: 100px;
  189. flex-grow: 1;
  190. margin: 15px 0;
  191. }
  192. #revenueCard{
  193. display: flex;
  194. flex-direction: column;
  195. justify-content: center;
  196. align-items: center;
  197. }
  198. #revenue{
  199. text-align: center;
  200. font-size: 30px;
  201. font-weight: bold;
  202. }
  203. #revenueChange{
  204. display: flex;
  205. }
  206. #revenueChange > p{
  207. font-weight: 100;
  208. }
  209. #revenueChange img{
  210. height: 15px;
  211. width: 15px;
  212. margin-right: 10px;
  213. }
  214. #graphCard{
  215. flex-grow: 5;
  216. display: flex;
  217. justify-content: center;
  218. }
  219. #inventoryCheckCard{
  220. display: flex;
  221. flex-direction: column;;
  222. justify-content: space-between;
  223. flex-basis: 100px;
  224. flex-grow: 1;
  225. }
  226. #inventoryCheckCard ul{
  227. list-style: none;
  228. }
  229. #inventoryCheckCard button{
  230. margin-left: auto;
  231. }
  232. .ingredientCheck{
  233. display: flex;
  234. align-items: center;
  235. margin: 5px 0;
  236. }
  237. .ingredientCheck p:first-of-type{
  238. width: 40%;
  239. font-weight: 300;
  240. font-size: 15px;
  241. margin-right: 25px;
  242. }
  243. .ingredientCheck p:last-of-type{
  244. width: 20%
  245. }
  246. .numberInput{
  247. display: flex;
  248. justify-content: center;
  249. width: 40%;
  250. margin-right: 25px;
  251. }
  252. .numberInput button{
  253. width: 30%;
  254. font-size: 23px;
  255. background: rgb(0, 27, 45);
  256. border: none;
  257. color: white;
  258. font-weight: bold;
  259. cursor: pointer;
  260. }
  261. .numberInput button:first-of-type{
  262. border-bottom-left-radius: 5px;
  263. border-top-left-radius: 5px;
  264. }
  265. .numberInput button:last-of-type{
  266. border-bottom-right-radius: 5px;
  267. border-top-right-radius: 5px;
  268. }
  269. .numberInput input{
  270. width: 55%;
  271. font-size: 15px;
  272. text-align: center;
  273. }
  274. .numberInput input::-webkit-outer-spin-button,
  275. .numberInput input::-webkit-inner-spin-button {
  276. -webkit-appearance: none;
  277. margin: 0;
  278. }
  279. .numberInput input[type=number] {
  280. -moz-appearance: textfield;
  281. }
  282. #popularIngredientsCard{
  283. display: flex;
  284. flex-direction: column;
  285. align-items: center;
  286. flex-basis: 100px;
  287. flex-grow: 2.5;
  288. padding: 5px;
  289. box-sizing: border-box;
  290. }
  291. #popularCanvas{
  292. margin: 0 35px;
  293. }
  294. .notice{
  295. color: red;
  296. font-size: 35px;
  297. font-weight: bold;
  298. }
  299. /*
  300. Ingredients Strand
  301. */
  302. #ingredientsStrand{
  303. display: none;
  304. align-items: center;
  305. height: 100%;
  306. box-sizing: border-box;
  307. }
  308. #categoryList{
  309. align-items:center;
  310. overflow-y: auto;
  311. width: 80%;
  312. }
  313. .categoryDiv{
  314. display: flex;
  315. flex-direction: column;
  316. align-items: center;
  317. }
  318. .categoryDiv > div:first-of-type{
  319. display: flex;
  320. cursor: pointer;
  321. width: 100%;
  322. }
  323. .categoryDiv > div:first-of-type p{
  324. display: flex;
  325. align-items: center;
  326. padding: 20px 0 20px 100px;
  327. background: rgb(240, 252, 255);
  328. border: 1px solid gray;
  329. border-radius: 5px;
  330. margin-right: 25px;
  331. flex-grow: 1;
  332. }
  333. .categoryDiv > div:first-of-type button{
  334. padding: 10px;
  335. background: rgb(240, 252, 255);
  336. border: 1px solid black;
  337. border-radius: 5px;
  338. width: 75px;
  339. height: 75px;
  340. cursor: pointer;
  341. }
  342. .ingredientsDiv{
  343. flex-direction: column;
  344. width: 50%;
  345. }
  346. .ingredientSpacer{
  347. border: none;
  348. border-top: 1px dashed black;
  349. margin: auto;
  350. }
  351. /*
  352. Recipe Book Strand
  353. */
  354. #recipeBookStrand{
  355. display: none;
  356. align-items: center;
  357. }
  358. #recipeList{
  359. display: flex;
  360. flex-direction: column;
  361. align-items: center;
  362. width: 50%;
  363. overflow-y: auto;
  364. }
  365. /*
  366. Analytics Strand
  367. */
  368. .switch{
  369. position: relative;
  370. display: inline-block;
  371. width: 239px;
  372. height: 34px;
  373. border: 3px solid rgb(0, 27, 45);
  374. color: white;
  375. }
  376. .switch input{
  377. opacity: 0;
  378. width: 0;
  379. height: 0;
  380. }
  381. .switch input:focus + .slider{
  382. box-shadow: 0 0 1px #2196F3;
  383. }
  384. .switch input:checked + .slider:before {
  385. -webkit-transform: translateX(105px);
  386. -ms-transform: translateX(92px);
  387. transform: translateX(125px);
  388. }
  389. .slider{
  390. display: flex;
  391. justify-content: space-between;
  392. align-items: center;
  393. position: absolute;
  394. cursor: pointer;
  395. top: 0;
  396. left: 0;
  397. right: 0;
  398. bottom: 0;
  399. padding: 0 24px 0 5px;
  400. background: rgb(255, 99, 107);
  401. transition: 0.2s;
  402. }
  403. .slider:before{
  404. position: absolute;
  405. content: "";
  406. height: 30px;
  407. width: 110px;
  408. left: 1px;
  409. bottom: 1px;
  410. background: rgba(255, 255, 255, 0.6);
  411. border: 1px solid rgb(0, 27, 45);
  412. transition: 0.2s;
  413. }
  414. .analContent{
  415. display: flex;
  416. justify-content: space-around;
  417. align-items:center;
  418. padding: 15px;
  419. box-sizing: border-box;
  420. height: 90%;
  421. }
  422. .itemsList{
  423. list-style-type: none;
  424. width: 15%;
  425. max-height: 95%;
  426. overflow-y: auto;
  427. }
  428. .analData{
  429. display: flex;
  430. flex-direction: column;
  431. justify-content: space-around;
  432. width: 100%;
  433. height: 100%;
  434. }
  435. #itemUseGraph{
  436. padding: 10px;
  437. height: 60%;
  438. flex-basis: 100px;
  439. flex-grow: 5;
  440. }
  441. .dataRow{
  442. display: flex;
  443. justify-content: space-between;
  444. flex-basis: 150px;
  445. flex-grow: 0;
  446. }
  447. .analCard{
  448. display: flex;
  449. flex-direction: column;
  450. justify-content: space-around;
  451. margin: 5px;
  452. height: inherit;
  453. }
  454. .analCard > *{
  455. margin: 0;
  456. }
  457. #analRecipeContent{
  458. display: flex;
  459. justify-content: space-around;
  460. align-items: center;
  461. padding: 15px;
  462. box-sizing: border-box;
  463. height: 90%;
  464. }
  465. /*
  466. Orders Strand
  467. */
  468. #ordersStrand{
  469. display: none;
  470. align-items: center;
  471. }
  472. #orderList{
  473. width: 50%;
  474. margin-top: 50px;
  475. overflow-y: auto;
  476. }
  477. /*
  478. Transactions Strand
  479. */
  480. .transactions{
  481. display: none;
  482. align-items: center;
  483. }
  484. .transactionsList{
  485. width: 50%;
  486. overflow-y: auto;
  487. margin-top: 50px;
  488. }
  489. /*
  490. ACCOUNT STRAND
  491. */
  492. #accountStrand{
  493. padding: 15px;
  494. box-sizing: border-box;
  495. }
  496. .horizontal{
  497. display: flex;
  498. justify-content: space-around;
  499. }
  500. .vertical{
  501. display: flex;
  502. flex-direction: column;
  503. }
  504. #accountUpdate{
  505. max-width: 500px;
  506. }
  507. #accountShowPassword{
  508. max-width: 300px;
  509. }
  510. #changePasswordBox{
  511. flex-direction: column;
  512. padding: 25px;
  513. background: rgb(240, 252, 255);
  514. border: 2px solid black;
  515. border-radius: 10px;
  516. }
  517. #changePasswordBox label{
  518. display: flex;
  519. justify-content: space-between;
  520. align-items: center;
  521. margin: 5px;
  522. }
  523. #changePasswordBox p{
  524. color: red;
  525. }
  526. #accountButtonBox{
  527. margin: 0;
  528. }
  529. /*
  530. Modal
  531. */
  532. .modal{
  533. flex-direction: column;
  534. justify-content: center;
  535. align-items: center;
  536. position: fixed;
  537. height: 100vh;
  538. width: 100vw;
  539. background: rgba(0, 27, 45, 0.75);
  540. }
  541. .modalBox{
  542. display: flex;
  543. flex-direction: column;
  544. align-items: flex-end;
  545. }
  546. .modalBox svg{
  547. color: rgb(255, 99, 107);
  548. cursor: pointer;
  549. }
  550. .modalSpreadsheetUpload{
  551. flex-direction: column;
  552. align-items: center;
  553. justify-content: space-between;
  554. margin-top: 0;
  555. padding: 25px 100px;
  556. background: rgb(240, 252, 255);
  557. border: 2px solid black;
  558. border-radius: 10px;
  559. }
  560. .modalSpreadsheetUpload > *{
  561. margin-top: 15px;
  562. }
  563. @media screen and (orientation: portrait){
  564. @media screen and (max-width: 1400px){
  565. body{
  566. background:rgb(0, 27, 45);
  567. }
  568. .button{
  569. padding: 3px 0;
  570. }
  571. .mobileMenuSelector{
  572. color:rgb(240, 252, 255);
  573. z-index: 10;
  574. }
  575. .strandTitle{
  576. color: white;
  577. position: fixed;
  578. top: 15px;
  579. left: 0;
  580. right: 0;
  581. margin: 0;
  582. text-align: center;
  583. font-size: 20px;
  584. }
  585. .searchInput{
  586. border-radius: 10px;
  587. }
  588. .choosable{
  589. background:rgb(201, 201, 201);
  590. color: black;
  591. }
  592. /* HOME */
  593. #inventoryCheckCard{
  594. display: none;
  595. }
  596. #graphCard{
  597. display: none;
  598. }
  599. .card{
  600. background: white;
  601. }
  602. /* INGREDIENT INVENTORY */
  603. #categoryList{
  604. width: 95%;
  605. }
  606. .categoryDiv{
  607. margin: 5px;
  608. }
  609. .categoryDiv > div:first-of-type p{
  610. padding: 10px;
  611. margin-right: 15px;
  612. }
  613. .categoryDiv > div:first-of-type button{
  614. padding: 10px;
  615. height: initial;
  616. width: initial;
  617. display: flex;
  618. }
  619. .ingredientsDiv{
  620. width: 90%;
  621. }
  622. /* RECIPE BOOK */
  623. #recipeList{
  624. width: 90%;
  625. }
  626. /* ANALYTICS */
  627. #analyticsStrand .strandHead{
  628. height: 23vh;
  629. flex-direction: column;
  630. }
  631. #analyticsStrand .strandTitle{
  632. position: static;
  633. }
  634. .switch{
  635. margin-top: 0;
  636. }
  637. .analDateRange{
  638. display: none;
  639. }
  640. .analContent{
  641. flex-direction: column;
  642. justify-content: space-between;
  643. padding: 0;
  644. height: 70vh;
  645. }
  646. .itemsList{
  647. width: 90%;
  648. height: 47%;
  649. margin-bottom: 10px;
  650. }
  651. .analData{
  652. height: 47%;
  653. }
  654. .dataRow{
  655. flex-direction: column;
  656. }
  657. #itemUseGraph{
  658. display: none;
  659. }
  660. #analDailyAverages{
  661. display: none;
  662. }
  663. #recipeSalesGraph{
  664. display: none;
  665. }
  666. /* ORDERS */
  667. #ordersStrand .strandHead{
  668. justify-content: center;
  669. }
  670. #newOrderBtn{
  671. display: none;
  672. }
  673. #orderList{
  674. width: 90%;
  675. }
  676. #orderList > div p:nth-child(2){
  677. display: none;
  678. }
  679. /* TRANSACTIONS */
  680. #transactionsStrand .strandHead{
  681. justify-content: center;
  682. }
  683. .transactionsList{
  684. width: 90%;
  685. }
  686. @media screen and (min-width: 601px){
  687. .strandTitle{
  688. font-size: 40px;
  689. }
  690. .mobileMenuSelector{
  691. left: 40px;
  692. top: 20px;
  693. }
  694. /* HOME */
  695. #graphCard{
  696. display: flex;
  697. }
  698. /* RECIPE BOOK */
  699. #recipeList{
  700. width: 75%;
  701. }
  702. /* ORDERS */
  703. #ordersStrand .strandHead{
  704. margin-top: 25px;
  705. }
  706. /* TRANSACTIONS */
  707. #transactionsStrand .strandHead{
  708. margin-top: 25px;
  709. }
  710. }
  711. }
  712. }
  713. @media screen and (orientation: landscape){
  714. @media screen and (max-width: 1200px){
  715. body{
  716. background: rgb(0, 27, 45);
  717. }
  718. .contentBlock{
  719. padding: 0;
  720. }
  721. .button{
  722. padding: 3px 0;
  723. }
  724. .mobileMenuSelector{
  725. display: flex;
  726. color: rgb(240, 252, 255);
  727. z-index: 10;
  728. }
  729. .strandHead{
  730. color: white;
  731. position: fixed;
  732. top: 5px;
  733. left: 25px;
  734. right: 0;
  735. margin: 0;
  736. text-align: center;
  737. font-size: 20px;
  738. }
  739. .strandTitle{
  740. margin: 0;
  741. }
  742. .searchInput{
  743. border-radius: 10px;
  744. }
  745. .choosable{
  746. background: rgb(201, 201, 201);
  747. color: black;
  748. }
  749. /* HOME */
  750. #homeStrand{
  751. flex-direction: row;
  752. padding: 0;
  753. align-items: flex-end;
  754. }
  755. #graphCard{
  756. display: none;
  757. }
  758. #inventoryCheckCard{
  759. display: none;
  760. }
  761. .flexRow{
  762. height: 80%;
  763. }
  764. .flexRow:nth-child(3){
  765. flex-grow: 2;
  766. }
  767. .card{
  768. background: white;
  769. }
  770. #popularIngredientsCard{
  771. max-height: 100%;
  772. padding-bottom: 5px;
  773. }
  774. /* INGREDIENTS */
  775. #ingredientsStrand{
  776. padding-bottom: 10px;
  777. justify-content: flex-end;
  778. }
  779. #categoryList{
  780. height: 70%;
  781. }
  782. .categoryDiv{
  783. margin: 3px;
  784. }
  785. .categoryDiv > div:first-of-type p{
  786. padding: 5px 10px;
  787. }
  788. .categoryDiv > div:first-of-type button{
  789. padding: 0;
  790. height: initial;
  791. width: initial;
  792. display: flex;
  793. align-items: center;
  794. }
  795. .ingredientsDiv{
  796. width: 90%;
  797. }
  798. /* RECIPE BOOK */
  799. #recipeBookStrand{
  800. padding-bottom: 10px;
  801. justify-content: flex-end;
  802. }
  803. #recipeList{
  804. height: 70%;
  805. }
  806. /* ANALYTICS */
  807. #analyticsStrand{
  808. padding-bottom: 10px;
  809. justify-content: space-between;
  810. }
  811. #analyticsStrand .strandHead{
  812. position: static;
  813. height: unset;
  814. flex-wrap: wrap;
  815. }
  816. #analyticsStrand .strandTitle{
  817. width: 100%;
  818. margin-top: -13px;
  819. margin-left: 10px;
  820. }
  821. .switch{
  822. margin-top: -15px;
  823. font-size: 15px;
  824. }
  825. #analyticsStrand .dateRange{
  826. margin-top: -55px;
  827. }
  828. .analDateRange{
  829. display: none;
  830. }
  831. .analContent{
  832. padding: 0;
  833. height: 70%;
  834. }
  835. .itemsList{
  836. width: 23%;
  837. }
  838. .analData{
  839. width: 73%
  840. }
  841. .dataRow{
  842. display: none;
  843. }
  844. .modebar-container{
  845. display: none;
  846. }
  847. #analRecipeContent{
  848. height: 70%;
  849. }
  850. #newOrderBtn{
  851. display: none;
  852. }
  853. /* ORDERS */
  854. #ordersStrand{
  855. justify-content: flex-end;
  856. }
  857. #ordersStrand .buttonBox{
  858. margin: 0;
  859. }
  860. #orderList{
  861. height: 70%;
  862. }
  863. /* TRANSACTIONS */
  864. #transactionsStrand{
  865. justify-content: flex-end;
  866. }
  867. #transactionsStrand .buttonBox{
  868. margin: 0;
  869. }
  870. #transactionsList{
  871. height: 70%;
  872. }
  873. @media screen and (min-width: 1000px){
  874. .mobileMenuSelector{
  875. top: 20px;
  876. left: 40px;
  877. }
  878. .strandTitle{
  879. margin: 15px;
  880. }
  881. /* HOME */
  882. #homeStrand{
  883. flex-direction: column;
  884. justify-content: flex-end;
  885. }
  886. #graphCard{
  887. display: flex;
  888. }
  889. .flexRow{
  890. max-height: 40vh;
  891. }
  892. .flexRow:nth-child(2){
  893. flex-grow: 2;
  894. }
  895. .flexRow:nth-child(3){
  896. flex-grow: 1;
  897. }
  898. /* INGREDIENTS */
  899. #categoryList{
  900. height: 80%;
  901. }
  902. /* RECIPE BOOK */
  903. #recipeList{
  904. height: 80%;
  905. }
  906. /* ANALYTICS */
  907. #analyticsStrand .strandTitle{
  908. margin-top: 8px;
  909. margin-left: 30px;
  910. }
  911. .analDateRange{
  912. display: block;
  913. }
  914. #analRecipeContent, .analContent{
  915. height: 80%;
  916. }
  917. /* ORDERS */
  918. #orderList{
  919. height: 80%;
  920. }
  921. /* TRANSACTIONS */
  922. #transactionsList{
  923. height: 80%;
  924. }
  925. }
  926. }
  927. }