mirror of https://gitee.com/bigwinds/arangodb
26 lines
503 B
SCSS
26 lines
503 B
SCSS
// Horizontal offset, vertical offset, blur, spread, color
|
|
@mixin box-shadow($params...) {
|
|
-webkit-box-shadow: $params;
|
|
-moz-box-shadow: $params;
|
|
box-shadow: $params;
|
|
}
|
|
|
|
@mixin border-radius($r) {
|
|
-moz-border-radius: $r;
|
|
-webkit-border-radius: $r;
|
|
border-radius: $r;
|
|
}
|
|
|
|
@mixin border-triangle($width, $color) {
|
|
position: absolute;
|
|
border: {
|
|
width: $width;
|
|
style: solid;
|
|
color: $c-transp;
|
|
top: none;
|
|
bottom-color: $color;
|
|
}
|
|
display: inline-block;
|
|
content: '';
|
|
}
|