Guest User

Untitled

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