Advertisement
s2prod

Mini Reset CSS

Mar 18th, 2022
1,068
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.61 KB | None | 0 0
  1. *,::after,::before {
  2.     box-sizing: border-box
  3. }
  4.  
  5. a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
  6.     margin: 0;
  7.     padding: 0;
  8.     border: 0;
  9.     font-size: 100%;
  10.     font: inherit;
  11.     vertical-align: baseline
  12. }
  13.  
  14. button {
  15.     color: inherit;
  16.     padding: 0;
  17.     border: none;
  18.     cursor: pointer;
  19.     background: 0 0;
  20.     font-size: inherit
  21. }
  22.  
  23. form {
  24.     display: block
  25. }
  26.  
  27. input,select {
  28.     font-size: inherit;
  29.     font-family: inherit
  30. }
  31.  
  32. pre {
  33.     font-family: monospace
  34. }
  35.  
  36. article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  37.     display: block
  38. }
  39.  
  40. body {
  41.     line-height: 1
  42. }
  43.  
  44. ol,ul {
  45.     list-style: none
  46. }
  47.  
  48. blockquote,q {
  49.     quotes: none
  50. }
  51.  
  52. blockquote:after,blockquote:before,q:after,q:before {
  53.     content: "";
  54.     content: none
  55. }
  56.  
  57. table {
  58.     border-collapse: collapse;
  59.     border-spacing: 0
  60. }
  61.  
  62. img {
  63.     max-width: 100%
  64. }
  65.  
  66. a {
  67.     text-decoration: none;
  68.     color: inherit;
  69.     transition: color .3s
  70. }
  71.  
  72. textarea {
  73.     font-size: inherit;
  74.     font-family: inherit;
  75.     line-height: inherit;
  76.     resize: none
  77. }
  78.  
  79. hr {
  80.     height: 1px;
  81.     background: var(--border);
  82.     margin: 0;
  83.     padding: 0;
  84.     border: none
  85. }
  86.  
  87. :focus:not(:focus-visible) {
  88.     outline: 0
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement