Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Forked from ykhs/_linear-gradient.scss
Created May 1, 2013 17:10
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 claudiosanches/5496656 to your computer and use it in GitHub Desktop.
Save claudiosanches/5496656 to your computer and use it in GitHub Desktop.
@mixin linear-gradient($angle, $color-stops...) {
$_angle-with-vendor-prefix: "";
$_angle: "";
@if $angle == "to top" or $angle == "bottom" {
$_angle-with-vendor-prefix: bottom;
$_angle: to top;
} @else if $angle == "to right" or $angle == "left" {
$_angle-with-vendor-prefix: left;
$_angle: to right;
} @else if $angle == "to bottom" or $angle == "top" {
$_angle-with-vendor-prefix: top;
$_angle: to bottom;
} @else if $angle == "to left" or $angle == "right" {
$_angle-with-vendor-prefix: right;
$_angle: to left;
} @else if $angle == "to top right" or $angle == "bottom left" {
$_angle-with-vendor-prefix: bottom left;
$_angle: to top right;
} @else if $angle == "to bottom right" or $angle == "top left" {
$_angle-with-vendor-prefix: top left;
$_angle: to bottom right;
} @else if $angle == "to bottom left" or $angle == "top right" {
$_angle-with-vendor-prefix: top right;
$_angle: to bottom left;
} @else if $angle == "to top left" or $angle == "bottom right" {
$_angle-with-vendor-prefix: bottom right;
$_angle: to top left;
} @else {
$_angle-with-vendor-prefix: $angle % 360;
$_angle: (90 - $angle) % 360;
}
background: -webkit-linear-gradient($_angle-with-vendor-prefix, $color-stops);
background: -moz-linear-gradient($_angle-with-vendor-prefix, $color-stops);
background: -o-linear-gradient($_angle-with-vendor-prefix, $color-stops);
background: linear-gradient($_angle, $color-stops);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment