cyp/app/css/app.less

75 lines
1.2 KiB
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 {
2019-03-29 23:28:26 +08:00
background-color: var(--fg);
2019-03-26 19:35:47 +08:00
}
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-04-01 04:02:26 +08:00
line-height: 1.25;
2019-03-29 23:28:26 +08:00
background-color: var(--bg);
color: var(--fg);
2019-03-30 19:57:01 +08:00
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);
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;
2019-04-01 04:02:26 +08:00
font: inherit;
2019-03-26 22:40:23 +08:00
}
button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
padding: 0;
border: none;
line-height: 1;
cursor: pointer;
2019-03-29 05:52:57 +08:00
flex-shrink: 0;
2019-03-26 22:40:23 +08:00
}
2019-03-31 05:05:33 +08:00
.art img {
vertical-align: top;
}
2019-04-01 04:02:26 +08:00
.long-line {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.multiline {
display: flex;
flex-direction: row;
align-items: center;
h2 { font-weight: normal; }
}
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";
2019-03-31 05:05:33 +08:00
@import "yt.less";
2019-04-01 04:02:26 +08:00
@import "search.less";
2019-03-29 23:28:26 +08:00
@import "variables.less";