Created
April 30, 2017 23:23
-
-
Save lucianobarauna/7b2ba3a5c573cd356a7da03f467af6c8 to your computer and use it in GitHub Desktop.
Css Reset Bootstrap - Meu zerador css para bootstrap
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
/* | |
CSS RESET V1.8 | |
Criado em: 20/03/2012 | |
Desenvolvido por: Luciano Barauna | |
*/ | |
html, | |
body { height:100%; } | |
textarea { | |
max-width:100%; | |
width:100%; | |
-webkit-box-sizing:border-box; | |
-moz-box-sizing:border-box; | |
-ms-box-sizing:border-box; | |
box-sizing:border-box; | |
} | |
img, | |
iframe, | |
object, | |
video { | |
max-width:100%; | |
width:auto; | |
height:auto; | |
} | |
form:before, | |
form:after { | |
display: table; | |
content:" "; | |
} | |
form:after { clear: both; } | |
a { | |
-webkit-transition: all 0.1s ease-out 0.1s; | |
-o-transition: all 0.1s ease-out 0.1s; | |
transition: all 0.1s ease-out 0.1s; | |
} | |
h1, h2, h3, h4, h5 {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment