Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. // Anything above
  2. body
  3. {
  4.  
  5. margin: 0px;
  6. padding: 0px;
  7.  
  8. display: grid;
  9.  
  10. grid-template-columns: 1fr;
  11. grid-template-rows: auto auto auto;
  12.  
  13. grid-gap: 32px;
  14.  
  15. width: 100%;
  16. }
  17.  
  18. header
  19. {
  20. min-height: 80px;
  21.  
  22. background-color: green;
  23.  
  24. }
  25.  
  26. main
  27. {
  28. min-height: 800px;
  29. background-color: green;
  30.  
  31.  
  32. }
  33.  
  34. footer
  35. {
  36. min-height: 200px;
  37.  
  38. background-color: green;
  39.  
  40. }
  41. // Desktop
  42. @media screen and (max-width: 1280px)
  43. {
  44. header
  45. {
  46. background-color: orange;
  47.  
  48. }
  49.  
  50. main
  51. {
  52. background-color: orange;
  53.  
  54.  
  55. }
  56.  
  57. footer
  58. {
  59. background-color: orange;
  60.  
  61. }
  62.  
  63. }
  64.  
  65. @media screen and (max-width: 1024px)
  66. {
  67. header
  68. {
  69. background-color: yellow;
  70.  
  71. }
  72.  
  73. main
  74. {
  75. background-color: yellow;
  76.  
  77.  
  78. }
  79.  
  80. footer
  81. {
  82. background-color: yellow;
  83.  
  84. }
  85.  
  86. }
  87.  
  88. @media screen and (max-width: 768px)
  89. {
  90. header
  91. {
  92. background-color: red;
  93.  
  94. }
  95.  
  96. main
  97. {
  98. background-color: red;
  99.  
  100.  
  101. }
  102.  
  103. footer
  104. {
  105. background-color: red;
  106.  
  107. }
  108.  
  109. }
  110.  
  111.  
  112. // Mobile
  113. @media screen and (max-width: 600px)
  114. {
  115. header
  116. {
  117. background-color: blue;
  118.  
  119. }
  120.  
  121. main
  122. {
  123. background-color: blue;
  124.  
  125.  
  126. }
  127.  
  128. footer
  129. {
  130. background-color: blue;
  131.  
  132. }
  133. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement