-/*
-To change this license header, choose License Headers in Project Properties.
-To change this template file, choose Tools | Templates
-and open the template in the editor.
-*/
/*
Created on : Mar 5, 2015, 2:57:35 PM
Author : laury
*/
+@mixin gradient($from, $to) {
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, $from), color-stop(1, $to));
+ background: -moz-linear-gradient(center top, $from 5%, $to 100%);
+ filter: progid:DXIm-ageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr'#{$to}');
+}