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

7 lines
371 B
SCSS
Raw Normal View History

2018-03-13 17:02:47 +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;
}