Created
August 13, 2014 09:42
-
-
Save nedSaf/ae23dc9a6ca0d37bc78f to your computer and use it in GitHub Desktop.
Create a function in mixins.
This file contains 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
// Mixins | |
@mixin gradient($color) { | |
background: -webkit-linear-gradient(top, $color 0%,$color 100%); | |
background: -o-linear-gradient(top, $color 0%,$color 100%); | |
background: -ms-linear-gradient(top, $color 0%,$color 100%); | |
background: linear-gradient(top, $color 0%,$color 100%); | |
background: -moz-linear-gradient(top, $color 0%,$color 100%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment