Skip to content

Instantly share code, notes, and snippets.

@klickgists
Last active December 14, 2015 05:48
Show Gist options
  • Save klickgists/5037393 to your computer and use it in GitHub Desktop.
Save klickgists/5037393 to your computer and use it in GitHub Desktop.
@mixin background-gradient($color1, $color2) {
background-image: linear-gradient(bottom, $color1 0%, $color2 100%);
background-image: -o-linear-gradient(bottom, $color1 0%, $color2 100%);
background-image: -moz-linear-gradient(bottom, $color1 0%, $color2 100%);
background-image: -webkit-linear-gradient(bottom, $color1 0%, $color2 100%);
background-image: -ms-linear-gradient(bottom, $color1 0%, $color2 100%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment