| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- @media screen and (orientation: portrait){
- @media screen and (max-width: 1400px){
- body{
- background:rgb(0, 27, 45);
- }
- .button{
- padding: 3px 0;
- }
- .mobileMenuSelector{
- color:rgb(240, 252, 255);
- z-index: 10;
- }
- .strandTitle{
- color: white;
- position: fixed;
- top: 15px;
- left: 0;
- right: 0;
- margin: 0;
- text-align: center;
- font-size: 20px;
- }
- .choosable{
- background:rgb(201, 201, 201);
- color: black;
- }
- /* HOME */
- #inventoryCheckCard{
- display: none;
- }
- #graphCard{
- display: none;
- }
- .card{
- background: white;
- }
- /* INGREDIENT INVENTORY */
- #categoryList{
- width: 95%;
- }
- .categoryDiv{
- margin: 5px;
- }
- .categoryDiv > div:first-of-type p{
- padding: 10px;
- margin-right: 15px;
- }
- .categoryDiv > div:first-of-type button{
- padding: 10px;
- height: initial;
- width: initial;
- display: flex;
- }
- .ingredientsDiv{
- width: 90%;
- }
- /* RECIPE BOOK */
- #recipeList{
- width: 90%;
- }
- /* ANALYTICS */
- #analyticsStrand .strandHead{
- height: 23vh;
- flex-direction: column;
- }
- #analyticsStrand .strandTitle{
- position: static;
- }
- .switch{
- margin-top: 0;
- }
- .analDateRange{
- display: none;
- }
- .analContent{
- flex-direction: column;
- justify-content: space-between;
- padding: 0;
- height: 70vh;
- }
- .itemsList{
- width: 90%;
- height: 47%;
- margin-bottom: 10px;
- }
- .analData{
- height: 47%;
- }
- .dataRow{
- flex-direction: column;
- }
- #itemUseGraph{
- display: none;
- }
- #analDailyAverages{
- display: none;
- }
- #recipeSalesGraph{
- display: none;
- }
- /* ORDERS */
- #ordersStrand .strandHead{
- justify-content: center;
- }
- #newOrderBtn{
- display: none;
- }
- #orderList{
- width: 90%;
- }
- #orderList > div p:nth-child(2){
- display: none;
- }
- /* TRANSACTIONS */
- #transactionsStrand .strandHead{
- justify-content: center;
- }
- .transactionsList{
- width: 90%;
- }
- /* SIDEBARS */
- .sidebar{
- width: 100vw;
- color: white;
- }
- .sidebarIconButtons{
- display: none;
- }
- /* MENU */
- #menu{
- display: none;
- width: 100vw;
- padding: 0;
- }
-
- .menuShifter{
- display: none;
- }
- .menuHead{
- justify-content: right;
- padding: 0;
- margin-bottom: 25px;
- }
- .menuHead a{
- justify-content: center;
- margin: auto;
- }
- .menuButton{
- padding-left: 0;
- justify-content: center;
- background: rgb(201, 201, 201);
- color: black;
- width: 90%;
- margin: 15px auto;
- box-shadow: 0 0 5px white;
- }
- }
- }
|