Advertisement
julong

CSS -> responsive webdesign

Jan 25th, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /*responsive design*/
  2. /* Small devices (tablets, 768px and up) */
  3. @media only screen and(max-width:768px){
  4.  
  5. }
  6.  
  7. @media only screen and(min-width:769px){
  8.  
  9. }
  10. /* Medium devices (desktops, 992px and up) */
  11. @media only screen and (max-width:908px) {
  12.  
  13. }
  14.  
  15. /* Large devices (large desktops, 1200px and up) */
  16. @media only screen and (min-width: 1200px) {
  17.  
  18. }
  19.  
  20. /* styles for MacBook Pro-sized screens and larger */
  21. @media only screen and (min-width: 1440px) {
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement