Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // Large devices (desktops, 992px and up)
  2. @media (min-width: 992px) and (max-with:1200px) {
  3. .container: with:970px;
  4. }
  5.  
  6. // Medium devices (tablets, 768px and up)
  7. @media (min-width: 768px) and (max-with:991px) {
  8. .container: with:750px;
  9. }
  10.  
  11. // Small devices (landscape phones, 576px and up)
  12. @media (min-width: 576px) and (max-with:767px){
  13. .container: with:540px;
  14. }
  15.  
  16. // Small devices (landscape phones, 480px and up)
  17. @media (min-width: 480px) and (max-with:575px){
  18. .container: with:450px;
  19. }
  20.  
  21. // Extra Small devices (320px and up)
  22. @media (min-width: 320px){
  23. .container: with:100%;
  24. }
Add Comment
Please, Sign In to add comment