Created
September 18, 2016 18:47
-
-
Save dara/119e0968f7c57baf6fdd3f515f7f47e2 to your computer and use it in GitHub Desktop.
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
/* Extracted from Animate.css */ | |
.animated { | |
-webkit-animation-duration: 0.6s; | |
animation-duration: 0.6s; | |
-webkit-animation-fill-mode: both; | |
animation-fill-mode: both; | |
} | |
@-webkit-keyframes fadeInUpMicro { | |
from { | |
opacity: 0; | |
-webkit-transform: translate3d(0, 50px, 0); | |
transform: translate3d(0, 50px, 0); | |
} | |
to { | |
opacity: 1; | |
-webkit-transform: none; | |
transform: none; | |
} | |
} | |
@keyframes fadeInUpMicro { | |
from { | |
opacity: 0; | |
-webkit-transform: translate3d(0, 50px, 0); | |
transform: translate3d(0, 50px, 0); | |
} | |
to { | |
opacity: 1; | |
-webkit-transform: none; | |
transform: none; | |
} | |
} | |
.fadeInUpMicro { | |
-webkit-animation-name: fadeInUpMicro; | |
animation-name: fadeInUpMicro; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment