2019-10-09 12:21:50 +02:00
|
|
|
$large-shadow: 0px 2px 10px rgba(0, 0, 0, 0);
|
|
|
|
$narrow-shadow: 0px 2px 6px rgba(0, 0, 0, 0);
|
|
|
|
$inset-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0);
|
|
|
|
$inset-shadow-inverted: inset 0px 2px 0px rgba(0, 0, 0, 0);
|
|
|
|
$inset-relief: inset 0px 2px 0px rgba(255, 255, 255, 0);
|
|
|
|
|
|
|
|
$border-radius: 0px;
|
|
|
|
$border-size: 0px;
|
|
|
|
|
2019-10-18 09:57:05 +02:00
|
|
|
$fontweight_big: 300;
|
|
|
|
$fontweight_base: 400;
|
|
|
|
$fontweight_bold: 600;
|
|
|
|
$fontweight_hyper: 800;
|
|
|
|
|
|
|
|
$basefont: Open Sans, sans-serif;
|
|
|
|
$titlefont: Amatic SC, sans-serif;
|
|
|
|
|
2019-10-09 12:21:50 +02:00
|
|
|
@mixin borders() {
|
|
|
|
border: $border-size solid rgba(0, 0, 0, 0.3)
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-radius() {
|
|
|
|
border-radius: $border-radius $border-radius $border-radius $border-radius;
|
2019-10-17 15:34:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@mixin biseau($size) {
|
|
|
|
position: relative;
|
|
|
|
z-index:1;
|
|
|
|
overflow: visible;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: " ";
|
|
|
|
position: absolute;
|
|
|
|
top:0;
|
|
|
|
left:-$size/2;
|
|
|
|
right:-$size/2;
|
|
|
|
bottom:0;
|
|
|
|
z-index:-1;
|
|
|
|
transform: skewX(-15deg);
|
2019-10-18 10:07:38 +02:00
|
|
|
transition: background-color 0.3s;
|
2019-10-17 15:34:11 +02:00
|
|
|
}
|
2019-10-09 12:21:50 +02:00
|
|
|
}
|