portraitTablet.css 3.9 KB

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