Skip to content

Instantly share code, notes, and snippets.

Created January 13, 2011 19:57
Show Gist options
  • Save anonymous/778477 to your computer and use it in GitHub Desktop.
Save anonymous/778477 to your computer and use it in GitHub Desktop.
@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