blob: 9afcbe80ba14d8200df6ed4af18c280b55f624d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@mixin rz-box-shadow($offset-x, $offset-y, $blur, $spread, $color) {
-webkit-box-shadow: $offset-x $offset-y $blur $spread $color;
-moz-box-shadow: $offset-x $offset-y $blur $spread $color;
box-shadow: $offset-x $offset-y $blur $spread $color;
}
@mixin rz-box-sizing-border() {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
|