Skip to content

Instantly share code, notes, and snippets.

@thomd
Last active August 29, 2015 14:06
Show Gist options
  • Save thomd/ceed387a5777769f1049 to your computer and use it in GitHub Desktop.
Save thomd/ceed387a5777769f1049 to your computer and use it in GitHub Desktop.
SASS Transition
<a class="transition" href="#">foobar</a>
@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