Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 1 | // Gradients |
| 2 | |
| 3 | // Horizontal gradient, from left to right |
| 4 | // |
| 5 | // Creates two color stops, start and end, by specifying a color and position for each color stop. |
| 6 | // Color stops are not available in IE9 and below. |
| 7 | @mixin gradient-horizontal($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) { |
| 8 | background-image: -webkit-linear-gradient(left, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+ |
| 9 | background-image: -o-linear-gradient(left, $start-color $start-percent, $end-color $end-percent); // Opera 12 |
| 10 | background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ |
| 11 | background-repeat: repeat-x; |
| 12 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down |
| 13 | } |
| 14 | |
| 15 | // Vertical gradient, from top to bottom |
| 16 | // |
| 17 | // Creates two color stops, start and end, by specifying a color and position for each color stop. |
| 18 | // Color stops are not available in IE9 and below. |
| 19 | @mixin gradient-vertical($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) { |
| 20 | background-image: -webkit-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+ |
| 21 | background-image: -o-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Opera 12 |
| 22 | background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ |
| 23 | background-repeat: repeat-x; |
| 24 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down |
| 25 | } |
| 26 | |
| 27 | @mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) { |
| 28 | background-repeat: repeat-x; |
| 29 | background-image: -webkit-linear-gradient($deg, $start-color, $end-color); // Safari 5.1-6, Chrome 10+ |
| 30 | background-image: -o-linear-gradient($deg, $start-color, $end-color); // Opera 12 |
| 31 | background-image: linear-gradient($deg, $start-color, $end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+ |
| 32 | } |
| 33 | |
| 34 | @mixin gradient-horizontal-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) { |
| 35 | background-image: -webkit-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color); |
| 36 | background-image: -o-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color); |
| 37 | background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color); |
| 38 | background-repeat: no-repeat; |
| 39 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down, gets no color-stop at all for proper fallback |
| 40 | } |
| 41 | |
| 42 | @mixin gradient-vertical-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) { |
| 43 | background-image: -webkit-linear-gradient($start-color, $mid-color $color-stop, $end-color); |
| 44 | background-image: -o-linear-gradient($start-color, $mid-color $color-stop, $end-color); |
| 45 | background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color); |
| 46 | background-repeat: no-repeat; |
| 47 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down, gets no color-stop at all for proper fallback |
| 48 | } |
| 49 | |
| 50 | @mixin gradient-radial($inner-color: #555, $outer-color: #333) { |
| 51 | background-image: -webkit-radial-gradient(circle, $inner-color, $outer-color); |
| 52 | background-image: radial-gradient(circle, $inner-color, $outer-color); |
| 53 | background-repeat: no-repeat; |
| 54 | } |
| 55 | |
| 56 | @mixin gradient-striped($color: rgba(255,255,255,.15), $angle: 45deg) { |
| 57 | background-image: -webkit-linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); |
| 58 | background-image: -o-linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); |
| 59 | background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent); |
| 60 | } |