Created
April 6, 2016 17:47
-
-
Save mareksotak/476c883ea3d47aca347c7cecf0b85b3b 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
@-webkit-keyframes fadeIn { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
@keyframes fadeIn { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
.inmplayer-popover { | |
-webkit-animation-name: fadeIn; | |
animation-name: fadeIn; | |
-webkit-animation-delay: 0.4s; | |
-moz-animation-delay: 0.4s; | |
animation-delay: 0.4s; | |
-webkit-animation-duration: 1s; | |
animation-duration: 1s; | |
-webkit-animation-fill-mode: both; | |
animation-fill-mode: both; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment