Created
September 21, 2017 14:30
-
-
Save luisfelipe-dev/8ce4d8a9c5274543fa4d5e724619d160 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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