freifunk-rhein-sieg.net/css/_mixins.scss
2018-03-10 13:33:31 +01:00

7 lines
371 B
SCSS

@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;
}