@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}');
+ background: -ms-linear-gradient(center top, $from 5%, $to 100%);
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}');
}