Last active
August 29, 2015 14:06
-
-
Save thomd/ceed387a5777769f1049 to your computer and use it in GitHub Desktop.
SASS Transition
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
<a class="transition" href="#">foobar</a> |
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
@mixin transition($args...) | |
-webkit-transition: $args | |
-moz-transition: $args | |
-ms-transition: $args | |
-o-transition: $args | |
transition: $args | |
.transition | |
@include transition(all 0.4s ease) | |
a | |
color: lightblue | |
&:hover | |
color: darkblue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment