2019-03-27 00:07:52 +08:00
|
|
|
*, *::before, *::after { box-sizing: inherit; }
|
|
|
|
|
2019-03-26 19:35:47 +08:00
|
|
|
html {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-03-20 05:56:39 +08:00
|
|
|
body {
|
2019-03-27 00:07:52 +08:00
|
|
|
box-sizing: border-box;
|
2019-03-26 22:40:23 +08:00
|
|
|
font-family: lato, sans-serif;
|
|
|
|
line-height: 1.3;
|
|
|
|
background-color: #333;
|
2019-03-26 19:35:47 +08:00
|
|
|
color: #fff;
|
|
|
|
text-shadow: 0 1px 1px #000;
|
2019-03-26 17:09:26 +08:00
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
overflow: hidden;
|
2019-03-20 05:56:39 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
|
2019-03-25 22:49:23 +08:00
|
|
|
> header, > footer {
|
|
|
|
box-shadow: 0 0 3px #000;
|
|
|
|
}
|
2019-03-22 23:17:10 +08:00
|
|
|
}
|
|
|
|
|
2019-03-26 22:40:23 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 22:49:23 +08:00
|
|
|
|
2019-03-26 19:35:47 +08:00
|
|
|
@import "font.less";
|
2019-03-20 05:56:39 +08:00
|
|
|
@import "main.less";
|
2019-03-21 17:32:58 +08:00
|
|
|
@import "nav.less";
|
|
|
|
@import "player.less";
|
2019-03-25 22:49:23 +08:00
|
|
|
@import "component.less";
|
2019-03-22 22:35:04 +08:00
|
|
|
@import "queue.less";
|
2019-03-25 22:49:23 +08:00
|
|
|
@import "library.less";
|
2019-03-26 19:35:47 +08:00
|
|
|
@import "fs.less";
|