1
0
mirror of https://github.com/danbee/danbarberphoto synced 2025-03-04 08:49:07 +00:00
danbarberphoto/app/assets/stylesheets/includes/_v_linear_grad.sass
2011-10-10 15:39:52 +01:00

8 lines
472 B
Sass

@mixin v-linear-grad($from, $to)
background-image: -moz-linear-gradient(top, $from 0%, $to 100%)
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $from), color-stop(100%, $to))
background-image: -webkit-linear-gradient(top, $from 0%, $to 100%)
background-image: -o-linear-gradient(top, $from 0%, $to 100%)
background-image: -ms-linear-gradient(top, $from 0%, $to 100%)
background-image: linear-gradient(top, $from 0%, $to 100%)