Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /*========== Media ==========*/
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement