Skip to content

Instantly share code, notes, and snippets.

@luisdalmolin
Created June 5, 2013 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luisdalmolin/5717169 to your computer and use it in GitHub Desktop.
Save luisdalmolin/5717169 to your computer and use it in GitHub Desktop.
Compass Gradient CSS3 function
@mixin gradient($color-start, $color-stop, $direction: top) {
background-color: $color-stop;
@include background-image(linear-gradient($direction, $color-start, $color-stop));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment