Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. .green{
  2. background-color: chartreuse;
  3. }
  4.  
  5. .container{
  6. margin-left: auto;
  7. margin-right: auto;
  8. margin-bottom: 25px;
  9. margin-top: 140px;
  10. border: 1px solid grey;
  11. display:block;
  12. width:70%;
  13. }
  14.  
  15. img{
  16. float:left;
  17. }
  18.  
  19. @media screen and (min-width: 358px) and (max-width: 768px) {
  20.  
  21. .green {
  22. height: 30px;
  23. }
  24. }
  25.  
  26. @media screen and (min-width: 769px) and (max-width: 992px) {
  27. .green {
  28. height:60px;
  29. }
  30. }
  31.  
  32. @media screen and (min-width: 993px) and (max-width: 1200px) {
  33. .green {
  34. height: 80px;
  35. }
  36. }
  37.  
  38. @media screen and (min-width: 1201px) {
  39. .green {
  40. height: 95px;
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement