Created
March 20, 2013 13:40
-
-
Save danilowm/5204702 to your computer and use it in GitHub Desktop.
CSS Mini Reset
This file contains 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 Mini Reset */ | |
* {margin: 0;padding: 0;} | |
table { border-collapse: collapse;border-spacing: 0;} | |
th, td {text-align: left;vertical-align: top;} | |
h1, h2, h3, h4, h5, h6, th, td, caption {font-weight:normal;} | |
img, button {border: 0;} | |
.clear { clear:both; } | |
.left { float:left; } | |
.right { float:right; } | |
/* animação */ | |
.animate { -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; -webkit-animation-duration: 1s; -webkit-animation-delay: .2s; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: both; -moz-animation-duration: 1s;-moz-animation-delay: .2s; -moz-animation-timing-function: ease; -moz-animation-fill-mode: both; -ms-animation-duration: 1s; -ms-animation-delay: .2s; -ms-animation-timing-function: ease; -ms-animation-fill-mode: both; animation-duration: 1s; animation-delay: .2s; animation-timing-function: ease; animation-fill-mode: both; } | |
/* CSS Mini Reset End */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment