Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. body,
  2. div,
  3. dl,
  4. dt,
  5. dd,
  6. ul,
  7. li,
  8. h1,
  9. h2,
  10. h3,
  11. h4,
  12. h5,
  13. h6,
  14. pre,
  15. code,
  16. form,
  17. fieldset,
  18. input,
  19. textarea,
  20. p,
  21. blockquote,
  22. th,
  23. td {
  24. margin: 0;
  25. padding: 0;
  26. }
  27.  
  28. table {
  29. border-collapse: collapse;
  30. border-spacing: 0;
  31. }
  32.  
  33. fieldset,
  34. img,
  35. abbr {
  36. border: 0;
  37. }
  38.  
  39. address,
  40. caption,
  41. cite,
  42. code,
  43. dfn,
  44. em,
  45. strong,
  46. th,
  47. var {
  48. font-style: normal;
  49. font-weight: normal;
  50. }
  51.  
  52. ul li {
  53. list-style: none;
  54. }
  55.  
  56. caption,
  57. th {
  58. text-align: left;
  59. }
  60.  
  61. h1,
  62. h2,
  63. h3,
  64. h4,
  65. h5,
  66. h6 {
  67. font-size: 100%;
  68. font-weight: normal;
  69. }
  70.  
  71. sup {
  72. vertical-align: text-top;
  73. }
  74.  
  75. sub {
  76. vertical-align: text-bottom;
  77. }
  78.  
  79. input,
  80. textarea,
  81. select {
  82. font-family: inherit;
  83. font-size: inherit;
  84. font-weight: inherit;
  85. }
  86.  
  87. legend {
  88. color: #000;
  89. }
  90.  
  91. article,
  92. aside,
  93. details,
  94. figcaption,
  95. figure,
  96. footer,
  97. header,
  98. hgroup,
  99. menu,
  100. nav,
  101. section,
  102. main {
  103. display: block;
  104. }
  105.  
  106. img {
  107. max-width: 100%;
  108. height: auto;
  109. }
  110.  
  111. .wrapper {
  112. max-width: 1920px;
  113. margin: 0 auto;
  114. padding-left: 325px;
  115. padding-right: 325px;
  116. }
  117.  
  118. div {
  119. -webkit-box-sizing: border-box;
  120. box-sizing: border-box;
  121. word-wrap: break-word;
  122. margin-left: 15px;
  123. margin-right: 15px;
  124. }
  125.  
  126. .header {
  127. display: -webkit-box;
  128. display: -ms-flexbox;
  129. display: flex;
  130. -ms-flex-wrap: wrap;
  131. flex-wrap: wrap;
  132. margin-left: -15px;
  133. margin-right: -15px;
  134. -webkit-box-pack: center;
  135. -ms-flex-pack: center;
  136. justify-content: center;
  137. }
  138.  
  139. @media screen and (max-width: 1920px) {
  140. .wrapper {
  141. padding-left: 325px;
  142. padding-right: 325px;
  143. }
  144. }
  145.  
  146. @media screen and (max-width: 1100px) {
  147. .wrapper {
  148. padding-left: 115px;
  149. padding-right: 115px;
  150. }
  151. }
  152.  
  153. @media screen and (max-width: 960px) {
  154. .wrapper {
  155. padding-left: 95px;
  156. padding-right: 95px;
  157. }
  158. }
  159.  
  160. @media screen and (max-width: 780px) {
  161. .wrapper {
  162. padding-left: 45px;
  163. padding-right: 45px;
  164. }
  165. }
  166.  
  167. @media screen and (max-width: 560px) {
  168. .wrapper {
  169. padding-left: 15px;
  170. padding-right: 15px;
  171. }
  172. }
  173. /*# sourceMappingURL=styles.css.map */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement