robertvari

responsive

Nov 17th, 2019 (edited)
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.40 KB | None | 0 0
  1. /* Mobile Styles */
  2. @media only screen and (max-width: 400px) {
  3.   body {
  4.     background-color: #F09A9D; /* Red */
  5.   }
  6. }
  7.  
  8. /* Tablet Styles */
  9. @media only screen and (min-width: 401px) and (max-width: 960px) {
  10.   body {
  11.     background-color: #F5CF8E; /* Yellow */
  12.   }
  13. }
  14.  
  15. /* Desktop Styles */
  16. @media only screen and (min-width: 961px) {
  17.   body {
  18.     background-color: #B2D6FF; /* Blue */
  19.   }
  20. }
Add Comment
Please, Sign In to add comment