freifunk-rhein-sieg.net/css/_mixins.scss

7 lines
371 B
SCSS
Raw Normal View History

2018-03-10 12:33:31 +00:00
@mixin background-linear-gradient($deg, $start_color, $end_color) {
background: linear-gradient($deg, $start_color, $end_color);
background: -moz-linear-gradient($deg, $start_color, $end_color);
background: -o-linear-gradient($deg, $start_color, $end_color);
background: -webkit-linear-gradient($deg, $start_color, $end_color);
background-color: $start_color;
}