dashboard.css 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210
  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. align-items: center;
  496. }
  497. .settings{
  498. display: flex;
  499. flex-direction: column;
  500. width: 75%;
  501. max-height: 100%;
  502. overflow-y: auto;
  503. }
  504. .settingsSection{
  505. display: flex;
  506. flex-direction: column;
  507. justify-content: center;
  508. align-items: center;
  509. margin: 15px 0;
  510. background: rgb(201, 201, 201);
  511. padding: 35px;
  512. }
  513. .settingsSectionHeader{
  514. width: 100%;
  515. display: flex;
  516. justify-content: space-between;
  517. align-items: center;
  518. margin-bottom: 25px;
  519. border-bottom: 1px solid black;
  520. }
  521. #accountUpdate{
  522. max-width: 500px;
  523. }
  524. #settingsMerchants{
  525. width: 85%;
  526. }
  527. .locationDiv{
  528. width: 100%;
  529. display: flex;
  530. justify-content: space-between;
  531. align-items: center;
  532. padding: 0 25px;
  533. background: rgb(240, 252, 255);
  534. box-shadow: 0 0 10px black;
  535. margin: 10px 0;
  536. }
  537. .locationDiv p{
  538. font-size: 25px;
  539. font-weight: bold;
  540. }
  541. #accountShowPassword{
  542. max-width: 300px;
  543. }
  544. #changePasswordBox{
  545. flex-direction: column;
  546. padding: 25px;
  547. background: rgb(201, 201, 201);
  548. /* border: 2px solid black; */
  549. border-radius: 10px;
  550. }
  551. #changePasswordBox label{
  552. display: flex;
  553. justify-content: space-between;
  554. align-items: center;
  555. margin: 5px;
  556. }
  557. #changePasswordBox p{
  558. color: red;
  559. }
  560. #accountButtonBox{
  561. margin: 0;
  562. }
  563. /*
  564. Modal
  565. */
  566. .modal{
  567. flex-direction: column;
  568. justify-content: center;
  569. align-items: center;
  570. position: fixed;
  571. height: 100vh;
  572. width: 100vw;
  573. background: rgba(0, 27, 45, 0.75);
  574. }
  575. .modalBox{
  576. display: flex;
  577. flex-direction: column;
  578. align-items: flex-end;
  579. }
  580. .modalBox > svg{
  581. color: rgb(255, 99, 107);
  582. cursor: pointer;
  583. }
  584. .modalSpreadsheetUpload{
  585. flex-direction: column;
  586. align-items: center;
  587. justify-content: space-between;
  588. margin-top: 0;
  589. padding: 25px 100px;
  590. background: rgb(240, 252, 255);
  591. border: 2px solid black;
  592. border-radius: 10px;
  593. }
  594. .modalSpreadsheetUpload > *{
  595. margin-top: 15px;
  596. }
  597. #modalFeedback{
  598. display: flex;
  599. flex-direction: column;
  600. background: white;
  601. padding: 50px;
  602. }
  603. #modalFeedback > *{
  604. margin: 15px;
  605. }
  606. #modalFeedback label{
  607. display: flex;
  608. flex-direction: column;
  609. }
  610. #modalNewMerchant{
  611. display: flex;
  612. flex-direction: column;
  613. background: white;
  614. padding: 50px;
  615. min-width: 350px;
  616. }
  617. #modalNewMerchant h2{
  618. text-align: center;
  619. }
  620. #modalNewMerchant > *{
  621. margin: 15px;
  622. }
  623. #modalNewMerchant label{
  624. display: flex;
  625. flex-direction: column;
  626. }
  627. #modalConfirm{
  628. display: flex;
  629. flex-direction:column;
  630. align-items: center;
  631. background: white;
  632. padding: 50px;
  633. }
  634. #modalConfirm svg{
  635. font-size: 50px;
  636. margin: 15px;
  637. font-weight: bold;
  638. }
  639. #modalConfirm p{
  640. font-size: 25px;
  641. font-weight: bold;
  642. }
  643. @media screen and (orientation: portrait){
  644. @media screen and (max-width: 1400px){
  645. body{
  646. background:rgb(0, 27, 45);
  647. }
  648. .button{
  649. padding: 3px 0;
  650. }
  651. .mobileMenuSelector{
  652. color:rgb(240, 252, 255);
  653. z-index: 10;
  654. }
  655. .strandTitle{
  656. color: white;
  657. position: fixed;
  658. top: 15px;
  659. left: 0;
  660. right: 0;
  661. margin: 0;
  662. text-align: center;
  663. font-size: 20px;
  664. }
  665. .searchInput{
  666. border-radius: 10px;
  667. }
  668. .choosable{
  669. background:rgb(201, 201, 201);
  670. color: black;
  671. }
  672. /* HOME */
  673. #inventoryCheckCard{
  674. display: none;
  675. }
  676. #graphCard{
  677. display: none;
  678. }
  679. .card{
  680. background: white;
  681. }
  682. /* INGREDIENT INVENTORY */
  683. #categoryList{
  684. width: 95%;
  685. }
  686. .categoryDiv{
  687. margin: 5px;
  688. }
  689. .categoryDiv > div:first-of-type p{
  690. padding: 10px;
  691. margin-right: 15px;
  692. }
  693. .categoryDiv > div:first-of-type button{
  694. padding: 10px;
  695. height: initial;
  696. width: initial;
  697. display: flex;
  698. }
  699. .ingredientsDiv{
  700. width: 90%;
  701. }
  702. /* RECIPE BOOK */
  703. #recipeList{
  704. width: 90%;
  705. }
  706. /* ANALYTICS */
  707. #analyticsStrand .strandHead{
  708. height: 23vh;
  709. flex-direction: column;
  710. }
  711. #analyticsStrand .strandTitle{
  712. position: static;
  713. }
  714. .switch{
  715. margin-top: 0;
  716. }
  717. .analDateRange{
  718. display: none;
  719. }
  720. .analContent{
  721. flex-direction: column;
  722. justify-content: space-between;
  723. padding: 0;
  724. height: 70vh;
  725. }
  726. .itemsList{
  727. width: 90%;
  728. height: 47%;
  729. margin-bottom: 10px;
  730. }
  731. .analData{
  732. height: 47%;
  733. }
  734. .dataRow{
  735. flex-direction: column;
  736. }
  737. #itemUseGraph{
  738. display: none;
  739. }
  740. #analDailyAverages{
  741. display: none;
  742. }
  743. #recipeSalesGraph{
  744. display: none;
  745. }
  746. /* ORDERS */
  747. #ordersStrand .strandHead{
  748. justify-content: center;
  749. }
  750. #newOrderBtn{
  751. display: none;
  752. }
  753. #orderList{
  754. width: 90%;
  755. }
  756. #orderList > div p:nth-child(2){
  757. display: none;
  758. }
  759. /* TRANSACTIONS */
  760. #transactionsStrand .strandHead{
  761. justify-content: center;
  762. }
  763. .transactionsList{
  764. width: 90%;
  765. }
  766. @media screen and (min-width: 601px){
  767. .strandTitle{
  768. font-size: 40px;
  769. }
  770. .mobileMenuSelector{
  771. left: 40px;
  772. top: 20px;
  773. }
  774. /* HOME */
  775. #graphCard{
  776. display: flex;
  777. }
  778. /* RECIPE BOOK */
  779. #recipeList{
  780. width: 75%;
  781. }
  782. /* ORDERS */
  783. #ordersStrand .strandHead{
  784. margin-top: 25px;
  785. }
  786. /* TRANSACTIONS */
  787. #transactionsStrand .strandHead{
  788. margin-top: 25px;
  789. }
  790. }
  791. }
  792. }
  793. @media screen and (orientation: landscape){
  794. @media screen and (max-width: 1200px){
  795. body{
  796. background: rgb(0, 27, 45);
  797. }
  798. .contentBlock{
  799. padding: 0;
  800. }
  801. .button{
  802. padding: 3px 0;
  803. }
  804. .mobileMenuSelector{
  805. display: flex;
  806. color: rgb(240, 252, 255);
  807. z-index: 10;
  808. }
  809. .strandHead{
  810. color: white;
  811. position: fixed;
  812. top: 5px;
  813. left: 25px;
  814. right: 0;
  815. margin: 0;
  816. text-align: center;
  817. font-size: 20px;
  818. }
  819. .strandTitle{
  820. margin: 0;
  821. }
  822. .searchInput{
  823. border-radius: 10px;
  824. }
  825. .choosable{
  826. background: rgb(201, 201, 201);
  827. color: black;
  828. }
  829. /* HOME */
  830. #homeStrand{
  831. flex-direction: row;
  832. padding: 0;
  833. align-items: flex-end;
  834. }
  835. #graphCard{
  836. display: none;
  837. }
  838. #inventoryCheckCard{
  839. display: none;
  840. }
  841. .flexRow{
  842. height: 80%;
  843. }
  844. .flexRow:nth-child(3){
  845. flex-grow: 2;
  846. }
  847. .card{
  848. background: white;
  849. }
  850. #popularIngredientsCard{
  851. max-height: 100%;
  852. padding-bottom: 5px;
  853. }
  854. /* INGREDIENTS */
  855. #ingredientsStrand{
  856. padding-bottom: 10px;
  857. justify-content: flex-end;
  858. }
  859. #categoryList{
  860. height: 70%;
  861. }
  862. .categoryDiv{
  863. margin: 3px;
  864. }
  865. .categoryDiv > div:first-of-type p{
  866. padding: 5px 10px;
  867. }
  868. .categoryDiv > div:first-of-type button{
  869. padding: 0;
  870. height: initial;
  871. width: initial;
  872. display: flex;
  873. align-items: center;
  874. }
  875. .ingredientsDiv{
  876. width: 90%;
  877. }
  878. /* RECIPE BOOK */
  879. #recipeBookStrand{
  880. padding-bottom: 10px;
  881. justify-content: flex-end;
  882. }
  883. #recipeList{
  884. height: 70%;
  885. }
  886. /* ANALYTICS */
  887. #analyticsStrand{
  888. padding-bottom: 10px;
  889. justify-content: space-between;
  890. }
  891. #analyticsStrand .strandHead{
  892. position: static;
  893. height: unset;
  894. flex-wrap: wrap;
  895. }
  896. #analyticsStrand .strandTitle{
  897. width: 100%;
  898. margin-top: -13px;
  899. margin-left: 10px;
  900. }
  901. .switch{
  902. margin-top: -15px;
  903. font-size: 15px;
  904. }
  905. #analyticsStrand .dateRange{
  906. margin-top: -55px;
  907. }
  908. .analDateRange{
  909. display: none;
  910. }
  911. .analContent{
  912. padding: 0;
  913. height: 70%;
  914. }
  915. .itemsList{
  916. width: 23%;
  917. }
  918. .analData{
  919. width: 73%
  920. }
  921. .dataRow{
  922. display: none;
  923. }
  924. .modebar-container{
  925. display: none;
  926. }
  927. #analRecipeContent{
  928. height: 70%;
  929. }
  930. #newOrderBtn{
  931. display: none;
  932. }
  933. /* ORDERS */
  934. #ordersStrand{
  935. justify-content: flex-end;
  936. }
  937. #ordersStrand .buttonBox{
  938. margin: 0;
  939. }
  940. #orderList{
  941. height: 70%;
  942. }
  943. /* TRANSACTIONS */
  944. #transactionsStrand{
  945. justify-content: flex-end;
  946. }
  947. #transactionsStrand .buttonBox{
  948. margin: 0;
  949. }
  950. #transactionsList{
  951. height: 70%;
  952. }
  953. @media screen and (min-width: 1000px){
  954. .mobileMenuSelector{
  955. top: 20px;
  956. left: 40px;
  957. }
  958. .strandTitle{
  959. margin: 15px;
  960. }
  961. /* HOME */
  962. #homeStrand{
  963. flex-direction: column;
  964. justify-content: flex-end;
  965. }
  966. #graphCard{
  967. display: flex;
  968. }
  969. .flexRow{
  970. max-height: 40vh;
  971. }
  972. .flexRow:nth-child(2){
  973. flex-grow: 2;
  974. }
  975. .flexRow:nth-child(3){
  976. flex-grow: 1;
  977. }
  978. /* INGREDIENTS */
  979. #categoryList{
  980. height: 80%;
  981. }
  982. /* RECIPE BOOK */
  983. #recipeList{
  984. height: 80%;
  985. }
  986. /* ANALYTICS */
  987. #analyticsStrand .strandTitle{
  988. margin-top: 8px;
  989. margin-left: 30px;
  990. }
  991. .analDateRange{
  992. display: block;
  993. }
  994. #analRecipeContent, .analContent{
  995. height: 80%;
  996. }
  997. /* ORDERS */
  998. #orderList{
  999. height: 80%;
  1000. }
  1001. /* TRANSACTIONS */
  1002. #transactionsList{
  1003. height: 80%;
  1004. }
  1005. }
  1006. }
  1007. }