Skip to content

Instantly share code, notes, and snippets.

@flabernardez
Last active April 9, 2018 15:55
Show Gist options
  • Save flabernardez/5a41e05a3383a65a3d749a9301b1232d to your computer and use it in GitHub Desktop.
Save flabernardez/5a41e05a3383a65a3d749a9301b1232d to your computer and use it in GitHub Desktop.
#css Reset
*,
*::before,
*::after,
*:before,
*:after{
box-sizing: border-box;
}
html, body, div, span, iframe,
h1,h2, h3, h4, h5, h6, p, blockquote,
a, address, em, img, small, strong,
ul, li, fieldset, form, label, article, aside,
figcaption, figure, footer, header, menu, nav,
section, audio, video{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font: inherit;
vertical-align: baseline;
}
article, aside, figcaption, figure,
footer, header, menu, nav, section,li {
display: block;
}
body {
line-height: 1;
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
strong {
font-weight: bold;
}
a,
button {
color: inherit;
}
a {
text-decoration: none;
}
::-moz-focus-inner {
padding: 0;
border: 0;
}
img {
max-width: 100%;
height: auto;
border: 0;
}
ul {
list-style: none;
}
blockquote{
quotes: none;
}
blockquote:before,
blockquote:after{
content: none;
}
p{
-webkit-margin-before: 0;
-webkit-margin-after: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment