Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created December 19, 2014 12:16
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 jshawl/8d41f056fa555f76d881 to your computer and use it in GitHub Desktop.
Save jshawl/8d41f056fa555f76d881 to your computer and use it in GitHub Desktop.
a precess production
@mixin transitions($transition) {
-webkit-transition: $transition;
-moz-transition: $transition;
-o-transition: $transition;
transition: $transition;
}
body{
@include transitions(color .5s ease);
}
body {
-webkit-transition: color 0.5s ease;
-moz-transition: color 0.5s ease;
-o-transition: color 0.5s ease;
transition: color 0.5s ease;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment