cyp/app/css/app.less

53 lines
850 B
Plaintext
Raw Normal View History

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;
2019-03-29 03:28:55 +08:00
line-height: 1;
2019-03-26 22:40:23 +08:00
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;
}
2019-03-25 22:49:23 +08:00
2019-03-26 19:35:47 +08:00
@import "font.less";
2019-03-28 22:23:28 +08:00
@import "icons.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";
2019-03-28 22:23:28 +08:00
@import "playlists.less";