style fixes

This commit is contained in:
albert
2011-11-15 18:08:01 -05:00
parent cd48af8845
commit 710d584ec6
11 changed files with 72 additions and 55 deletions

View File

@@ -27,12 +27,12 @@ $baseline: 1em;
box-shadow: $x $y $blur $color;
}
@mixin text-shadow($x, $y, $blur, $color) {
-moz-text-shadow: $x $y $blur $color;
-webkit-text-shadow: $x $y $blur $color;
-ms-text-shadow: $x $y $blur $color;
-o-text-shadow: $x $y $blur $color;
text-shadow: $x $y $blur $color;
@mixin text-shadow($val) {
-moz-text-shadow: $val;
-webkit-text-shadow: $val;
-ms-text-shadow: $val;
-o-text-shadow: $val;
text-shadow: $val;
}
@mixin transparency($value) {