Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active August 29, 2015 14:08
Show Gist options
  • Save Kcko/875d6638ac75e9e2f65a to your computer and use it in GitHub Desktop.
Save Kcko/875d6638ac75e9e2f65a to your computer and use it in GitHub Desktop.
Transition mixin
@mixin transition($args...) {
-webkit-transition: $args;
-moz-transition: $args;
-ms-transition: $args;
-o-transition: $args;
transition: $args;
}
a {
color: gray;
@include transition(color .3s ease);
&:hover {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment