@@ -48,12 +48,12 @@ really slow down your CSS. Don't overdo it.
4848
4949/* @include css-gradient(#dfdfdf,#f8f8f8); */
5050@mixin css-gradient ($from : #dfdfdf , $to : #f8f8f8 ) {
51- background-color : $to ;
52- background-image : -webkit-gradient (linear , left top , left bottom , from ($from ), to ($to ));
53- background-image : -webkit-linear-gradient (top , $from , $to );
54- background-image : -moz-linear-gradient (top , $from , $to );
55- background-image : -o-linear-gradient (top , $from , $to );
56- background-image : linear-gradient (to bottom , $from , $to );
51+ background-color : $to ;
52+ background-image : -webkit-gradient (linear , left top , left bottom , from ($from ), to ($to ));
53+ background-image : -webkit-linear-gradient (top , $from , $to );
54+ background-image : -moz-linear-gradient (top , $from , $to );
55+ background-image : -o-linear-gradient (top , $from , $to );
56+ background-image : linear-gradient (to bottom , $from , $to );
5757}
5858
5959/* ********************
@@ -64,10 +64,10 @@ BOX SIZING
6464/* NOTE: value of "padding-box" is only supported in Gecko. So
6565probably best not to use it. I mean, were you going to anyway? */
6666@mixin box-sizing ($type : border-box ) {
67- -webkit-box-sizing : $type ;
68- -moz-box-sizing : $type ;
69- -ms-box-sizing : $type ;
70- box-sizing : $type ;
67+ -webkit-box-sizing : $type ;
68+ -moz-box-sizing : $type ;
69+ -ms-box-sizing : $type ;
70+ box-sizing : $type ;
7171}
7272
7373/* ********************
@@ -77,10 +77,10 @@ BORDER RADIUS
7777/* @include border-radius(5px); */
7878
7979@mixin border-radius ($type : 8px ) {
80- -webkit-border-radius : $type ;
81- -moz-border-radius : $type ;
82- -khtml-border-radius : $type ;
83- border-radius : $type ;
80+ -webkit-border-radius : $type ;
81+ -moz-border-radius : $type ;
82+ -khtml-border-radius : $type ;
83+ border-radius : $type ;
8484}
8585
8686/* ********************
@@ -94,7 +94,6 @@ FONT FACE
9494 font-family : $font-name ;
9595 src : url (" fonts/#{$file-name } .eot" );
9696 src : url (" fonts/#{$file-name } .eot?#iefix" ) format (" embedded-opentype" ),
97- url (" fonts/#{$file-name } .woff2" ) format (" woff2" ),
9897 url (" fonts/#{$file-name } .woff" ) format (" woff" ),
9998 url (" fonts/#{$file-name } .ttf" ) format (" truetype" ),
10099 url (" fonts/#{$file-name } .svg#svg#{$file-name } " ) format (" svg" );
0 commit comments