landscapeTablet.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. @media screen and (orientation: landscape){
  2. @media screen and (max-width: 1200px){
  3. body{
  4. background: rgb(0, 27, 45);
  5. }
  6. .contentBlock{
  7. padding: 0;
  8. }
  9. .button{
  10. padding: 3px 0;
  11. }
  12. .mobileMenuSelector{
  13. display: flex;
  14. color: rgb(240, 252, 255);
  15. z-index: 10;
  16. }
  17. .strandHead{
  18. color: white;
  19. position: fixed;
  20. top: 5px;
  21. left: 25px;
  22. right: 0;
  23. margin: 0;
  24. text-align: center;
  25. font-size: 20px;
  26. }
  27. .strandTitle{
  28. margin: 0;
  29. }
  30. .choosable{
  31. background: rgb(201, 201, 201);
  32. color: black;
  33. }
  34. /* HOME */
  35. #homeStrand{
  36. flex-direction: row;
  37. padding: 0;
  38. align-items: flex-end;
  39. }
  40. #graphCard{
  41. display: none;
  42. }
  43. #inventoryCheckCard{
  44. display: none;
  45. }
  46. .flexRow{
  47. height: 80%;
  48. }
  49. .flexRow:nth-child(3){
  50. flex-grow: 2;
  51. }
  52. .card{
  53. background: white;
  54. }
  55. #popularIngredientsCard{
  56. max-height: 100%;
  57. padding-bottom: 5px;
  58. }
  59. /* INGREDIENTS */
  60. #ingredientsStrand{
  61. padding-bottom: 10px;
  62. justify-content: flex-end;
  63. }
  64. #categoryList{
  65. height: 70%;
  66. }
  67. .categoryDiv{
  68. margin: 3px;
  69. }
  70. .categoryDiv > div:first-of-type p{
  71. padding: 5px 10px;
  72. }
  73. .categoryDiv > div:first-of-type button{
  74. padding: 0;
  75. height: initial;
  76. width: initial;
  77. display: flex;
  78. align-items: center;
  79. }
  80. .ingredientsDiv{
  81. width: 90%;
  82. }
  83. /* RECIPE BOOK */
  84. #recipeBookStrand{
  85. padding-bottom: 10px;
  86. justify-content: flex-end;
  87. }
  88. #recipeList{
  89. height: 70%;
  90. }
  91. /* ANALYTICS */
  92. #analyticsStrand{
  93. padding-bottom: 10px;
  94. justify-content: space-between;
  95. }
  96. #analyticsStrand .strandHead{
  97. position: static;
  98. height: unset;
  99. flex-wrap: wrap;
  100. }
  101. #analyticsStrand .strandTitle{
  102. width: 100%;
  103. margin-top: -13px;
  104. margin-left: 10px;
  105. }
  106. .switch{
  107. margin-top: -15px;
  108. font-size: 15px;
  109. }
  110. #analyticsStrand .dateRange{
  111. margin-top: -55px;
  112. }
  113. .analDateRange{
  114. display: none;
  115. }
  116. .analContent{
  117. padding: 0;
  118. height: 70%;
  119. }
  120. .itemsList{
  121. width: 23%;
  122. }
  123. .analData{
  124. width: 73%
  125. }
  126. .dataRow{
  127. display: none;
  128. }
  129. .modebar-container{
  130. display: none;
  131. }
  132. #analRecipeContent{
  133. height: 70%;
  134. }
  135. #newOrderBtn{
  136. display: none;
  137. }
  138. /* ORDERS */
  139. #ordersStrand{
  140. justify-content: flex-end;
  141. }
  142. #ordersStrand .buttonBox{
  143. margin: 0;
  144. }
  145. #orderList{
  146. height: 70%;
  147. }
  148. /* TRANSACTIONS */
  149. #transactionsStrand{
  150. justify-content: flex-end;
  151. }
  152. #transactionsStrand .buttonBox{
  153. margin: 0;
  154. }
  155. #transactionsList{
  156. height: 70%;
  157. }
  158. }
  159. }