Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
1
2
3
4
5
6
7
8
9
10
11
12
13
@import "colors"
 
@mixin background-gradient
  background: linear-gradient(to bottom, $color-gradient-grey-start, $color-gradient-grey-stop)
 
  &:hover
    background: linear-gradient(to bottom, darken($color-gradient-grey-start, 5%), darken($color-gradient-grey-stop, 5%))
 
@mixin background-gradient-green
  background: linear-gradient(to bottom, $color-gradient-green-start, $color-gradient-green-stop)
 
  &:hover
    background: linear-gradient(to bottom, darken($color-gradient-green-start, 5%), darken($color-gradient-green-stop, 5%))