Created
April 21, 2012 09:53
-
-
Save benschwarz/2436272 to your computer and use it in GitHub Desktop.
Untitled
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
article { border: 1px solid red; min-height: 100px} | |
article:hover menu { | |
-webkit-animation-direction: alternate; | |
-moz-animation-direction: alternate; | |
-ms-animation-direction: alternate; | |
-o-animation-direction: alternate; | |
animation-direction: alternate; | |
-webkit-animation: fadeInUp 250ms ease-in-out alternate; | |
-moz-animation: fadeInUp 250ms ease-in-out alternate; | |
-ms-animation: fadeInUp 250ms ease-in-out alternate; | |
-o-animation: fadeInUp 250ms ease-in-out alternate; | |
animation: fadeInUp 250ms ease-in-out alternate; | |
-webkit-animation-fill-mode: both; | |
-moz-animation-fill-mode: both; | |
-ms-animation-fill-mode: both; | |
-o-animation-fill-mode: both; | |
animation-fill-mode: both; } | |
/* line 62, ../sass/screen.scss */ | |
menu { | |
opacity: 0; | |
float: right; } | |
@-moz-keyframes fadeInUp { | |
/* line 11, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
0% { | |
-moz-transform: translateY(20px); | |
transform: translateY(20px); | |
opacity: 0; } | |
/* line 14, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
100% { | |
-moz-transform: translateY(0); | |
transform: translateY(0); | |
opacity: 1; } } | |
@-webkit-keyframes fadeInUp { | |
/* line 11, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
0% { | |
-webkit-transform: translateY(20px); | |
transform: translateY(20px); | |
opacity: 0; } | |
/* line 14, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
100% { | |
-webkit-transform: translateY(0); | |
transform: translateY(0); | |
opacity: 1; } } | |
@-o-keyframes fadeInUp { | |
/* line 11, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
0% { | |
-o-transform: translateY(20px); | |
transform: translateY(20px); | |
opacity: 0; } | |
/* line 14, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
100% { | |
-o-transform: translateY(0); | |
transform: translateY(0); | |
opacity: 1; } } | |
@-ms-keyframes fadeInUp { | |
/* line 11, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
0% { | |
-ms-transform: translateY(20px); | |
transform: translateY(20px); | |
opacity: 0; } | |
/* line 14, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
100% { | |
-ms-transform: translateY(0); | |
transform: translateY(0); | |
opacity: 1; } } | |
@keyframes fadeInUp { | |
/* line 11, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
0% { | |
transform: translateY(20px); | |
opacity: 0; } | |
/* line 14, ../../../../.rvm/gems/ruby-1.9.3-p125/gems/animation-0.1.alpha.3/stylesheets/animation/animate/fading/_fading-entrances.scss */ | |
100% { | |
transform: translateY(0); | |
opacity: 1; } } | |
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
<article> | |
<menu> | |
<a>A link</a> | |
</menu> | |
</article> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment