mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-09-04 05:56:23 -07:00
33 lines
644 B
SCSS
33 lines
644 B
SCSS
@mixin box-shadow($properties...) {
|
|
filter: drop-shadow($properties);
|
|
}
|
|
|
|
@mixin shadow-filter($properties...) {
|
|
-webkit-filter: drop-shadow($properties);
|
|
filter: drop-shadow($properties);
|
|
}
|
|
|
|
@mixin box-sizing($sizing) {
|
|
-moz-box-sizing: $sizing;
|
|
-webkit-box-sizing: $sizing;
|
|
box-sizing: $sizing;
|
|
}
|
|
|
|
@mixin border-radius($properties...) {
|
|
-moz-border-radius: $properties;
|
|
-ms-border-radius: $properties;
|
|
-webkit-border-radius: $properties;
|
|
border-radius: $properties;
|
|
}
|
|
|
|
@mixin upload-box($bg, $a, $a-visited) {
|
|
div#upload-box {
|
|
background: $bg;
|
|
a {
|
|
color: $a;
|
|
}
|
|
a:hover, a:target, a:focus {
|
|
color: $a-visited;
|
|
}
|
|
}
|
|
}
|