Skip to content

Instantly share code, notes, and snippets.

@chrissuperduper
Last active March 2, 2021 20:05
Show Gist options
  • Save chrissuperduper/704b7a21aa978d0c22713ede8f0e89c8 to your computer and use it in GitHub Desktop.
Save chrissuperduper/704b7a21aa978d0c22713ede8f0e89c8 to your computer and use it in GitHub Desktop.
CSS3 Starter
html,
body {
min-height: 100%;
}
html {
box-sizing: border-box;
font-size: 16px;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
font-weight: 400;
font-style: normal;
line-height: 1;
font-family: sans-serif;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
* {
margin: 0;
padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
}
ol,
ul {
list-style: none;
}
/* responsive images */
img {
max-width: 100%;
height: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment