Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created September 21, 2017 14:30
Show Gist options
  • Select an option

  • Save luisfelipe-dev/8ce4d8a9c5274543fa4d5e724619d160 to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/8ce4d8a9c5274543fa4d5e724619d160 to your computer and use it in GitHub Desktop.
@mixin anima-slow {
-o-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-khtml-transition: all 0.3s linear;
-webkit-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
}
@mixin anima-normal {
-o-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-khtml-transition: all 0.2s linear;
-webkit-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
transition: all 0.2s linear;
}
@mixin anima-fast {
-o-transition: all 0.1s linear;
-moz-transition: all 0.1s linear;
-khtml-transition: all 0.1s linear;
-webkit-transition: all 0.1s linear;
-ms-transition: all 0.1s linear;
transition: all 0.1s linear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment