Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.18 KB | None | 0 0
  1. html, body, div, span, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. abbr, address, cite, code,
  4. del, dfn, em, img, ins, kbd, q, samp,
  5. small, strong, var,
  6. b, i,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. article, aside, canvas, details, figcaption, figure,
  10. footer, header, hgroup, menu, nav, section, summary,
  11. time, mark, audio, video, button {
  12.     margin: 0;
  13.     padding: 0;
  14.     border: 0;
  15.     outline: 0;
  16.     font-size: 100%;
  17.     vertical-align: baseline;
  18.     background: transparent;
  19.     box-sizing: border-box;
  20.  
  21.     &:before,
  22.     &:after {
  23.         box-sizing: border-box;
  24.     }
  25. }
  26.  
  27. sub,
  28. sup {
  29.     margin: 0;
  30.     padding: 0;
  31.     border: 0;
  32.     outline: 0;
  33.     font-size: 100%;
  34.     background: transparent;
  35.     box-sizing: border-box;
  36.  
  37.     &:before,
  38.     &:after {
  39.         box-sizing: border-box;
  40.     }
  41. }
  42.  
  43. a {
  44.     &:before,
  45.     &:after {
  46.         box-sizing: border-box;
  47.     }
  48. }
  49.  
  50. table, caption, tbody, tfoot, thead, tr, th, td {
  51.     margin: 0;
  52.     padding: 0;
  53.     border: 0;
  54.     outline: 0;
  55.     font-size: 100%;
  56.     background: transparent;
  57. }
  58.  
  59. article, aside, details, figcaption, figure,
  60. footer, header, hgroup, menu, nav, section {
  61.     display: block;
  62. }
  63.  
  64. ol, ul, li {
  65.     list-style: none;
  66. }
  67.  
  68. blockquote, q {
  69.     quotes: none;
  70. }
  71.  
  72. blockquote {
  73.     &:before, &:after {
  74.         content: none;
  75.     }
  76. }
  77.  
  78. q {
  79.     &:before, &:after {
  80.         content: none;
  81.     }
  82. }
  83.  
  84. :focus {
  85.     outline: 0;
  86. }
  87.  
  88. input[type="text"], textarea {
  89.     -webkit-appearance: none;
  90.  
  91.     &::-ms-clear {
  92.         display: none;
  93.     }
  94. }
  95.  
  96. input,
  97. textarea {
  98.     border-radius: 0;
  99.     box-sizing: border-box;
  100.  
  101.     &::-webkit-input-placeholder {
  102.         color: $input_placeholder_color;
  103.     }
  104.  
  105.     &::-moz-placeholder {
  106.         color: $input_placeholder_color;
  107.     }
  108.     &:-ms-input-placeholder {
  109.         color: $input_placeholder_color;
  110.     }
  111.  
  112.     &:focus {
  113.         &::-webkit-input-placeholder {
  114.             color: transparent;
  115.         }
  116.  
  117.         &::-moz-placeholder {
  118.             color: transparent;
  119.         }
  120.         &:-ms-input-placeholder {
  121.             color: transparent;
  122.         }
  123.     }
  124. }
  125.  
  126. textarea {
  127.     resize: none;
  128. }
  129.  
  130. ins {
  131.     text-decoration: none;
  132. }
  133.  
  134. del {
  135.     text-decoration: line-through;
  136. }
  137.  
  138. table {
  139.     border-collapse: collapse;
  140.     border-spacing: 0;
  141. }
  142.  
  143. * {
  144.     box-sizing: border-box;
  145.     word-wrap: break-word;
  146. }
  147. //-------------------------------------------------reset*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement