Lines Matching refs:gradient

1 @mixin vertical-gradient( $top, $bottom ) {
3 background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
4 …background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,…
5 background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
6 background: -o-linear-gradient( top, $top 0%, $bottom 100% );
7 background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
8 background: linear-gradient( top, $top 0%, $bottom 100% );
11 @mixin horizontal-gradient( $top, $bottom ) {
13 background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
14 …background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$b…
15 background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
16 background: -o-linear-gradient( left, $top 0%, $bottom 100% );
17 background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
18 background: linear-gradient( left, $top 0%, $bottom 100% );
21 @mixin radial-gradient( $outer, $inner, $type: circle ) {
23 background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
24 …background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inne…
25 background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
26 background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
27 background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
28 background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );