Guest User

Untitled

a guest
May 24th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. /*========== Desktop First Method ==========*/
  2.  
  3. /* Large Devices, Wide Screens */
  4. // @media only screen and (max-width: 1200px)
  5.  
  6. /* Medium Devices, Desktops */
  7. // @media only screen and (max-width: 992px)
  8.  
  9. /* Small Devices, Tablets */
  10. // @media only screen and (max-width: 768px)
  11.  
  12. /* Extra Small Devices, Phones */
  13. // @media only screen and (max-width: 480px)
  14.  
  15. /* Custom, iPhone Retina */
  16. // @media only screen and (max-width: 320px)
  17.  
  18. /*========== Mobile First Method ==========*/
  19.  
  20. /* Custom, iPhone Retina */
  21. // @media only screen and (min-width: 320px)
  22.  
  23. /* Extra Small Devices, Phones */
  24. // @media only screen and (min-width: 480px)
  25.  
  26. /* Small Devices, Tablets */
  27. // @media only screen and (min-width: 768px)
  28.  
  29. /* Medium Devices, Desktops */
  30. // @media only screen and (min-width: 992px)
  31.  
  32. /* Large Devices, Wide Screens */
  33. // @media only screen and (min-width: 1200px)
Add Comment
Please, Sign In to add comment