57 lines
845 B
Text
57 lines
845 B
Text
html {
|
|
background-color: #fff;
|
|
}
|
|
|
|
body {
|
|
font-family: lato, sans-serif;
|
|
line-height: 1.3;
|
|
background-color: #333;
|
|
color: #fff;
|
|
text-shadow: 0 1px 1px #000;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
|
|
> header, > footer {
|
|
box-shadow: 0 0 3px #000;
|
|
}
|
|
}
|
|
|
|
input, select, button {
|
|
color: inherit;
|
|
}
|
|
|
|
button {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
|
|
background-color: transparent;
|
|
padding: 0;
|
|
border: none;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.icon {
|
|
width: 24px;
|
|
|
|
path, polygon, circle {
|
|
&:not([fill]) {
|
|
fill: currentColor;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@import "font.less";
|
|
@import "main.less";
|
|
@import "nav.less";
|
|
@import "player.less";
|
|
@import "component.less";
|
|
@import "queue.less";
|
|
@import "library.less";
|
|
@import "fs.less";
|