dashboard.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191
  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. @media screen and (orientation: portrait){
  628. @media screen and (max-width: 1400px){
  629. body{
  630. background:rgb(0, 27, 45);
  631. }
  632. .button{
  633. padding: 3px 0;
  634. }
  635. .mobileMenuSelector{
  636. color:rgb(240, 252, 255);
  637. z-index: 10;
  638. }
  639. .strandTitle{
  640. color: white;
  641. position: fixed;
  642. top: 15px;
  643. left: 0;
  644. right: 0;
  645. margin: 0;
  646. text-align: center;
  647. font-size: 20px;
  648. }
  649. .searchInput{
  650. border-radius: 10px;
  651. }
  652. .choosable{
  653. background:rgb(201, 201, 201);
  654. color: black;
  655. }
  656. /* HOME */
  657. #inventoryCheckCard{
  658. display: none;
  659. }
  660. #graphCard{
  661. display: none;
  662. }
  663. .card{
  664. background: white;
  665. }
  666. /* INGREDIENT INVENTORY */
  667. #categoryList{
  668. width: 95%;
  669. }
  670. .categoryDiv{
  671. margin: 5px;
  672. }
  673. .categoryDiv > div:first-of-type p{
  674. padding: 10px;
  675. margin-right: 15px;
  676. }
  677. .categoryDiv > div:first-of-type button{
  678. padding: 10px;
  679. height: initial;
  680. width: initial;
  681. display: flex;
  682. }
  683. .ingredientsDiv{
  684. width: 90%;
  685. }
  686. /* RECIPE BOOK */
  687. #recipeList{
  688. width: 90%;
  689. }
  690. /* ANALYTICS */
  691. #analyticsStrand .strandHead{
  692. height: 23vh;
  693. flex-direction: column;
  694. }
  695. #analyticsStrand .strandTitle{
  696. position: static;
  697. }
  698. .switch{
  699. margin-top: 0;
  700. }
  701. .analDateRange{
  702. display: none;
  703. }
  704. .analContent{
  705. flex-direction: column;
  706. justify-content: space-between;
  707. padding: 0;
  708. height: 70vh;
  709. }
  710. .itemsList{
  711. width: 90%;
  712. height: 47%;
  713. margin-bottom: 10px;
  714. }
  715. .analData{
  716. height: 47%;
  717. }
  718. .dataRow{
  719. flex-direction: column;
  720. }
  721. #itemUseGraph{
  722. display: none;
  723. }
  724. #analDailyAverages{
  725. display: none;
  726. }
  727. #recipeSalesGraph{
  728. display: none;
  729. }
  730. /* ORDERS */
  731. #ordersStrand .strandHead{
  732. justify-content: center;
  733. }
  734. #newOrderBtn{
  735. display: none;
  736. }
  737. #orderList{
  738. width: 90%;
  739. }
  740. #orderList > div p:nth-child(2){
  741. display: none;
  742. }
  743. /* TRANSACTIONS */
  744. #transactionsStrand .strandHead{
  745. justify-content: center;
  746. }
  747. .transactionsList{
  748. width: 90%;
  749. }
  750. @media screen and (min-width: 601px){
  751. .strandTitle{
  752. font-size: 40px;
  753. }
  754. .mobileMenuSelector{
  755. left: 40px;
  756. top: 20px;
  757. }
  758. /* HOME */
  759. #graphCard{
  760. display: flex;
  761. }
  762. /* RECIPE BOOK */
  763. #recipeList{
  764. width: 75%;
  765. }
  766. /* ORDERS */
  767. #ordersStrand .strandHead{
  768. margin-top: 25px;
  769. }
  770. /* TRANSACTIONS */
  771. #transactionsStrand .strandHead{
  772. margin-top: 25px;
  773. }
  774. }
  775. }
  776. }
  777. @media screen and (orientation: landscape){
  778. @media screen and (max-width: 1200px){
  779. body{
  780. background: rgb(0, 27, 45);
  781. }
  782. .contentBlock{
  783. padding: 0;
  784. }
  785. .button{
  786. padding: 3px 0;
  787. }
  788. .mobileMenuSelector{
  789. display: flex;
  790. color: rgb(240, 252, 255);
  791. z-index: 10;
  792. }
  793. .strandHead{
  794. color: white;
  795. position: fixed;
  796. top: 5px;
  797. left: 25px;
  798. right: 0;
  799. margin: 0;
  800. text-align: center;
  801. font-size: 20px;
  802. }
  803. .strandTitle{
  804. margin: 0;
  805. }
  806. .searchInput{
  807. border-radius: 10px;
  808. }
  809. .choosable{
  810. background: rgb(201, 201, 201);
  811. color: black;
  812. }
  813. /* HOME */
  814. #homeStrand{
  815. flex-direction: row;
  816. padding: 0;
  817. align-items: flex-end;
  818. }
  819. #graphCard{
  820. display: none;
  821. }
  822. #inventoryCheckCard{
  823. display: none;
  824. }
  825. .flexRow{
  826. height: 80%;
  827. }
  828. .flexRow:nth-child(3){
  829. flex-grow: 2;
  830. }
  831. .card{
  832. background: white;
  833. }
  834. #popularIngredientsCard{
  835. max-height: 100%;
  836. padding-bottom: 5px;
  837. }
  838. /* INGREDIENTS */
  839. #ingredientsStrand{
  840. padding-bottom: 10px;
  841. justify-content: flex-end;
  842. }
  843. #categoryList{
  844. height: 70%;
  845. }
  846. .categoryDiv{
  847. margin: 3px;
  848. }
  849. .categoryDiv > div:first-of-type p{
  850. padding: 5px 10px;
  851. }
  852. .categoryDiv > div:first-of-type button{
  853. padding: 0;
  854. height: initial;
  855. width: initial;
  856. display: flex;
  857. align-items: center;
  858. }
  859. .ingredientsDiv{
  860. width: 90%;
  861. }
  862. /* RECIPE BOOK */
  863. #recipeBookStrand{
  864. padding-bottom: 10px;
  865. justify-content: flex-end;
  866. }
  867. #recipeList{
  868. height: 70%;
  869. }
  870. /* ANALYTICS */
  871. #analyticsStrand{
  872. padding-bottom: 10px;
  873. justify-content: space-between;
  874. }
  875. #analyticsStrand .strandHead{
  876. position: static;
  877. height: unset;
  878. flex-wrap: wrap;
  879. }
  880. #analyticsStrand .strandTitle{
  881. width: 100%;
  882. margin-top: -13px;
  883. margin-left: 10px;
  884. }
  885. .switch{
  886. margin-top: -15px;
  887. font-size: 15px;
  888. }
  889. #analyticsStrand .dateRange{
  890. margin-top: -55px;
  891. }
  892. .analDateRange{
  893. display: none;
  894. }
  895. .analContent{
  896. padding: 0;
  897. height: 70%;
  898. }
  899. .itemsList{
  900. width: 23%;
  901. }
  902. .analData{
  903. width: 73%
  904. }
  905. .dataRow{
  906. display: none;
  907. }
  908. .modebar-container{
  909. display: none;
  910. }
  911. #analRecipeContent{
  912. height: 70%;
  913. }
  914. #newOrderBtn{
  915. display: none;
  916. }
  917. /* ORDERS */
  918. #ordersStrand{
  919. justify-content: flex-end;
  920. }
  921. #ordersStrand .buttonBox{
  922. margin: 0;
  923. }
  924. #orderList{
  925. height: 70%;
  926. }
  927. /* TRANSACTIONS */
  928. #transactionsStrand{
  929. justify-content: flex-end;
  930. }
  931. #transactionsStrand .buttonBox{
  932. margin: 0;
  933. }
  934. #transactionsList{
  935. height: 70%;
  936. }
  937. @media screen and (min-width: 1000px){
  938. .mobileMenuSelector{
  939. top: 20px;
  940. left: 40px;
  941. }
  942. .strandTitle{
  943. margin: 15px;
  944. }
  945. /* HOME */
  946. #homeStrand{
  947. flex-direction: column;
  948. justify-content: flex-end;
  949. }
  950. #graphCard{
  951. display: flex;
  952. }
  953. .flexRow{
  954. max-height: 40vh;
  955. }
  956. .flexRow:nth-child(2){
  957. flex-grow: 2;
  958. }
  959. .flexRow:nth-child(3){
  960. flex-grow: 1;
  961. }
  962. /* INGREDIENTS */
  963. #categoryList{
  964. height: 80%;
  965. }
  966. /* RECIPE BOOK */
  967. #recipeList{
  968. height: 80%;
  969. }
  970. /* ANALYTICS */
  971. #analyticsStrand .strandTitle{
  972. margin-top: 8px;
  973. margin-left: 30px;
  974. }
  975. .analDateRange{
  976. display: block;
  977. }
  978. #analRecipeContent, .analContent{
  979. height: 80%;
  980. }
  981. /* ORDERS */
  982. #orderList{
  983. height: 80%;
  984. }
  985. /* TRANSACTIONS */
  986. #transactionsList{
  987. height: 80%;
  988. }
  989. }
  990. }
  991. }