reset.css
ASCII text
1/* Better default box model */ 2html { 3box-sizing: border-box; 4} 5 6*, *:before, *:after { 7box-sizing: inherit; 8} 9 10/* Remove inconsistent default margins, shadows, borders and paddings */ 11* { 12margin: 0; 13padding: 0; 14box-shadow: none; 15text-shadow: none; 16border: none; 17} 18 19/* Disable subpixel rendering only on billionaire computers(tm) */ 20* { 21-webkit-font-smoothing: antialiased; 22-moz-osx-font-smoothing: grayscale; 23} 24 25/* Inherit font styles for form controls */ 26input, button, textarea, select { 27font: inherit; 28letter-spacing: inherit; 29word-spacing: inherit; 30} 31 32/* Break words to avoid horizontal scrolling */ 33p, h1, h2, h3, h4, h5, h6, label, li, dl, dt, dd, figcaption, blockquote { 34overflow-wrap: break-word; 35} 36 37/* Always fill the viewport */ 38html, body { 39min-height: 100vh; 40} 41 42/* Smarter images by default */ 43img { 44width: 100%; 45display: block; 46} 47 48ul, ol, menu { 49list-style: none; 50}