Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @media only screen and (min-width: 1200px) {
  2. [insert css here]
  3. }
  4.  
  5. @media only screen and (min-width: 960px) and (max-width: 1199px) {
  6. [insert css here]
  7. }
  8.  
  9. @media (min-width: 768px) and (max-width: 959px) {
  10. [insert css here]
  11. }
  12.  
  13. @media (max-width: 767px) {
  14. [insert css here]
  15. }
  16.  
  17. @media only screen and (max-width: 480px) {
  18. [insert css here]
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement