Created
July 21, 2014 20:51
-
-
Save bdtomlin/5fc6d3afb95bf2976bd6 to your computer and use it in GitHub Desktop.
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
.mad-libs-content { | |
position: relative; | |
} | |
.animate-questions, .animate-results { | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
} | |
.animate-questions.ng-hide-add, .animate-results.ng-hide-add{ | |
animation:0.1s fade_out; | |
} | |
.animate-results.ng-hide-remove, .animate-questions.ng-hide-remove{ | |
animation:1s fade_in; | |
animation-delay:1s; | |
} | |
@keyframes fade_out { | |
from { opacity:1; } | |
to { opacity:0; } | |
} | |
@keyframes fade_in { | |
from { opacity:0; } | |
to { opacity:1; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment