2020-08-05 11:24:59 +02:00
|
|
|
@import "variables";
|
|
|
|
|
|
|
|
|
2020-04-07 21:44:46 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
*:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: sans-serif;
|
2020-08-05 11:24:59 +02:00
|
|
|
background-color: $bg;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
2020-04-07 21:44:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div {
|
|
|
|
position: fixed;
|
|
|
|
color: #fff;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 1em;
|
|
|
|
shape-rendering: geometricPrecision;
|
|
|
|
transition: transform .5s cubic-bezier(.22, .61, .36, 1);
|
|
|
|
stroke-width: 5px;
|
|
|
|
text-align: center;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-05 11:24:59 +02:00
|
|
|
@import "scrollbar";
|
2020-04-07 21:44:46 +02:00
|
|
|
@import "gui";
|
|
|
|
@import "input";
|
2020-08-01 21:51:54 +02:00
|
|
|
@import "controls";
|
2020-08-05 11:24:59 +02:00
|
|
|
@import "playlist";
|
|
|
|
@import "modal";
|
|
|
|
@import "notification";
|