Skip to content

Instantly share code, notes, and snippets.

@madr
Created September 12, 2014 09:16
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 madr/a424f90c6ed9a00b9c57 to your computer and use it in GitHub Desktop.
Save madr/a424f90c6ed9a00b9c57 to your computer and use it in GitHub Desktop.
@mixin gradient-stopped ($fromcolor, $tocolor, $stop) {
background-color: $tocolor;
background-image: -moz-linear-gradient(180deg, $fromcolor, $tocolor $stop, $tocolor);
background-image: -ms-linear-gradient(top, bottom, $fromcolor, $tocolor $stop, $tocolor);
background-image: -webkit-linear-gradient(top, bottom, $fromcolor, $tocolor $stop, $tocolor);
background-image: linear-gradient(180deg, $fromcolor, $tocolor $stop, $tocolor);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment