2020-08-16 12:21:35 +00:00
|
|
|
@mixin shadow($distance) {
|
2021-08-08 12:29:08 +00:00
|
|
|
-webkit-box-shadow: $distance * 1rem $distance * 2rem $distance * 3rem rgba($color-dark, $distance * 0.3);
|
|
|
|
-moz-box-shadow: $distance * 1rem $distance * 2rem $distance * 3rem rgba($color-dark, $distance * 0.3);
|
|
|
|
box-shadow: $distance * 1rem $distance * 2rem $distance * 3rem rgba($color-dark, $distance * 0.3);
|
2020-08-16 12:21:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin hz-center {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin vt-center {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin all-center {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
2020-08-17 07:39:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin avoid-break {
|
|
|
|
@media print {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
}
|
2020-08-16 12:21:35 +00:00
|
|
|
}
|