Created
January 13, 2011 19:57
-
-
Save anonymous/778477 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 gradient($color1, $color2){ | |
background: $color2; | |
background:-webkit-gradient( | |
linear, | |
left bottom, | |
left top, | |
color-stop(0, $color1), | |
color-stop(1, $color2) | |
); | |
background:-moz-linear-gradient( | |
center bottom, | |
$color1 0%, | |
$color2 100% | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment