portraitPhone.css 668 B

123456789101112131415161718192021222324252627282930313233343536
  1. @media screen and (orientation: portrait){
  2. @media screen and (min-width: 601px){
  3. .strandTitle{
  4. font-size: 40px;
  5. }
  6. .mobileMenuSelector{
  7. left: 40px;
  8. top: 20px;
  9. }
  10. /* HOME */
  11. #graphCard{
  12. display: flex;
  13. }
  14. /* RECIPE BOOK */
  15. #recipeList{
  16. width: 75%;
  17. }
  18. /* ORDERS */
  19. #ordersStrand .strandHead{
  20. margin-top: 25px;
  21. }
  22. /* TRANSACTIONS */
  23. #transactionsStrand .strandHead{
  24. margin-top: 25px;
  25. }
  26. .menuHead a p{
  27. font-size: 40px;
  28. }
  29. }
  30. }