Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. /* Large Devices, Wide Screens */
  2. @media only screen and (max-width : 1200px) {
  3.  
  4. }
  5.  
  6. /* Medium Devices, Desktops */
  7. @media only screen and (max-width: 992px) {
  8.  
  9. }
  10.  
  11. /* Small Devices, Tablets */
  12. @media only screen and (max-width: 768px) {
  13.  
  14. }
  15.  
  16. /* Extra Small Devices, Phones */
  17. @media only screen and (max-width: 480px) {
  18.  
  19. }
  20.  
  21. /* Custom, iPhone Retina */
  22. @media only screen and (max-width : 320px) {
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement