portraitPhone.css 605 B

1234567891011121314151617181920212223242526272829303132
  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. }
  27. }