Skip to content

Instantly share code, notes, and snippets.

@startinggravity
Created November 25, 2014 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save startinggravity/671cca4159de37615cf8 to your computer and use it in GitHub Desktop.
Save startinggravity/671cca4159de37615cf8 to your computer and use it in GitHub Desktop.
Hover transition
@mixin hover($time) {
-webkit-transition: all $time ease-in-out;
-o-transition: all $time ease-in-out;
-moz-transition: all $time ease-in-out;
transition: all $time ease-in-out;
}
// Use as:
@include hover(.3s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment