dashboard.css 24 KB

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