blob: 3c431be0fe4b36c6e68ff489267403ea05af0780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@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;
}
@mixin rz-box-sizing-padding() {
-webkit-box-sizing: padding-box;
-moz-box-sizing: padding-box;
box-sizing: padding-box;
}
|