Marius Cramer
2015-02-03 9b0ee8d9832edd60b772ee11a18f2e1c4f39e8cf
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, 2%), darken($color-gradient-grey-stop, 2%))
 
@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, 2%), darken($color-gradient-green-stop, 2%))