landscapePhone.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @media screen and (orientation: landscape){
  2. @media screen and (min-width: 1000px){
  3. .mobileMenuSelector{
  4. top: 20px;
  5. left: 40px;
  6. }
  7. .strandTitle{
  8. margin: 15px;
  9. }
  10. /* HOME */
  11. #homeStrand{
  12. flex-direction: column;
  13. justify-content: flex-end;
  14. }
  15. #graphCard{
  16. display: flex;
  17. }
  18. .flexRow{
  19. max-height: 40vh;
  20. }
  21. .flexRow:nth-child(2){
  22. flex-grow: 2;
  23. }
  24. .flexRow:nth-child(3){
  25. flex-grow: 1;
  26. }
  27. /* INGREDIENTS */
  28. #categoryList{
  29. height: 80%;
  30. }
  31. /* RECIPE BOOK */
  32. #recipeList{
  33. height: 80%;
  34. }
  35. /* ANALYTICS */
  36. #analyticsStrand .strandTitle{
  37. margin-top: 8px;
  38. margin-left: 30px;
  39. }
  40. .analDateRange{
  41. display: block;
  42. }
  43. #analRecipeContent, .analContent{
  44. height: 80%;
  45. }
  46. /* ORDERS */
  47. #orderList{
  48. height: 80%;
  49. }
  50. /* TRANSACTIONS */
  51. #transactionsList{
  52. height: 80%;
  53. }
  54. }
  55. }