Skip to content

Instantly share code, notes, and snippets.

@Minasokoni
Created June 10, 2014 20:57
Show Gist options
  • Save Minasokoni/b59aaa911c6344b60ca8 to your computer and use it in GitHub Desktop.
Save Minasokoni/b59aaa911c6344b60ca8 to your computer and use it in GitHub Desktop.
SCSS Gradient
@mixin gradient($from, $to) {
background-color: $from;
background-image: -moz-linear-gradient($from, $to);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from($from), to($to));
background-image: -webkit-linear-gradient($from, $to);
background-image: -o-linear-gradient($from, $to);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment