Guest User

Untitled

a guest
Aug 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. /*========== Desktop First Method ==========*/
  2.  
  3. /* Large Devices, Wide Screens */
  4. @media only screen and (max-width : 1200px) {
  5.  
  6. }
  7.  
  8. /* Medium Devices, Desktops */
  9. @media only screen and (max-width : 992px) {
  10.  
  11. }
  12.  
  13. /* Small Devices, Tablets */
  14. @media only screen and (max-width : 768px) {
  15.  
  16. }
  17.  
  18. /* Extra Small Devices, Phones */
  19. @media only screen and (max-width : 480px) {
  20.  
  21. }
  22.  
  23. /* Custom, iPhone Retina */
  24. @media only screen and (max-width : 320px) {
  25.  
  26. }
  27.  
  28.  
  29. /*========== Mobile First Method ==========*/
  30.  
  31. /* Custom, iPhone Retina */
  32. @media only screen and (min-width : 320px) {
  33.  
  34. }
  35.  
  36. /* Extra Small Devices, Phones */
  37. @media only screen and (min-width : 480px) {
  38.  
  39. }
  40.  
  41. /* Small Devices, Tablets */
  42. @media only screen and (min-width : 768px) {
  43.  
  44. }
  45.  
  46. /* Medium Devices, Desktops */
  47. @media only screen and (min-width : 992px) {
  48.  
  49. }
  50.  
  51. /* Large Devices, Wide Screens */
  52. @media only screen and (min-width : 1200px) {
  53.  
  54. }
Add Comment
Please, Sign In to add comment