versustunez
9d5259767c
- fixed loading songs - cleanup utils - added some helper class - cleanup preparing of WEBGL2 - added 3D wave - added light-support - added configs - added gui-events for playing, shuffling and playlist
53 lines
785 B
SCSS
53 lines
785 B
SCSS
@import "variables";
|
|
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*:focus {
|
|
outline: none;
|
|
}
|
|
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-size: 16px;
|
|
font-family: sans-serif;
|
|
background-color: $bg;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
@import "scrollbar";
|
|
@import "gui";
|
|
@import "input";
|
|
@import "controls";
|
|
@import "playlist";
|
|
@import "modal";
|
|
@import "notification"; |