blob: 10ff74549659b4bf330a22c70506d2f33951e195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@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-inset-box-shadow($offset-x, $offset-y, $blur, $color) {
-webkit-box-shadow: inset $offset-x $offset-y $blur $color;
-moz-box-shadow: inset $offset-x $offset-y $blur $color;
box-shadow: inset $offset-x $offset-y $blur $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;
}
|