Created
December 14, 2018 19:47
-
-
Save ehbc221/5cc42a98b553939550516a66be193a8a to your computer and use it in GitHub Desktop.
Minireset CSS from: https://jgthms.com/minireset.css/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */ | |
html, | |
body, | |
p, | |
ol, | |
ul, | |
li, | |
dl, | |
dt, | |
dd, | |
blockquote, | |
figure, | |
fieldset, | |
legend, | |
textarea, | |
pre, | |
iframe, | |
hr, | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
margin: 0; | |
padding: 0; | |
} | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
font-size: 100%; | |
font-weight: normal; | |
} | |
ul { | |
list-style: none; | |
} | |
button, | |
input, | |
select, | |
textarea { | |
margin: 0; | |
} | |
html { | |
box-sizing: border-box; | |
} | |
*, *:before, *:after { | |
box-sizing: inherit; | |
} | |
img, | |
embed, | |
iframe, | |
object, | |
audio, | |
video { | |
height: auto; | |
max-width: 100%; | |
} | |
iframe { | |
border: 0; | |
} | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; | |
} | |
td, | |
th { | |
padding: 0; | |
text-align: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment