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-03-29 03:28:55 +08:00
|
|
|
line-height: 1;
|
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
|
|
|
body > header,
|
|
|
|
body > footer {
|
2019-03-22 23:17:10 +08:00
|
|
|
box-shadow: 0 0 3px #000;
|
|
|
|
}
|
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-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-03-26 19:35:47 +08:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Lato';
|
|
|
|
src: url('font/LatoLatin-Regular.woff2') format('woff2');
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Lato';
|
|
|
|
src: url('font/LatoLatin-bold.woff2') format('woff2');
|
|
|
|
font-style: bold;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2019-03-28 22:23:28 +08:00
|
|
|
.icon {
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
.icon path:not([fill]),
|
|
|
|
.icon polygon:not([fill]),
|
|
|
|
.icon circle:not([fill]) {
|
|
|
|
fill: currentColor;
|
|
|
|
}
|
2019-03-21 17:32:58 +08:00
|
|
|
main {
|
|
|
|
flex-grow: 1;
|
2019-03-25 22:49:23 +08:00
|
|
|
overflow: hidden;
|
2019-03-21 17:32:58 +08:00
|
|
|
}
|
|
|
|
nav ul {
|
2019-03-20 05:56:39 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2019-03-29 05:52:57 +08:00
|
|
|
nav ul .icon {
|
2019-03-29 23:28:26 +08:00
|
|
|
display: block;
|
|
|
|
margin: 4px auto;
|
2019-03-29 05:52:57 +08:00
|
|
|
}
|
2019-03-21 17:32:58 +08:00
|
|
|
nav ul li {
|
2019-03-20 05:56:39 +08:00
|
|
|
text-align: center;
|
2019-03-26 19:35:47 +08:00
|
|
|
flex: 1 0 0;
|
2019-03-29 03:28:55 +08:00
|
|
|
cursor: pointer;
|
|
|
|
border-top: 4px solid transparent;
|
|
|
|
border-bottom: 4px solid transparent;
|
2019-03-20 05:56:39 +08:00
|
|
|
}
|
2019-03-22 22:35:04 +08:00
|
|
|
nav ul li.active {
|
2019-03-29 23:28:26 +08:00
|
|
|
border-top-color: var(--primary);
|
2019-03-22 22:35:04 +08:00
|
|
|
}
|
2019-03-22 23:17:10 +08:00
|
|
|
#player {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-03-29 05:52:57 +08:00
|
|
|
align-items: center;
|
2019-03-22 23:17:10 +08:00
|
|
|
}
|
2019-03-21 17:32:58 +08:00
|
|
|
#player:not([data-state=play]) .pause {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#player[data-state=play] .play {
|
|
|
|
display: none;
|
2019-03-20 05:56:39 +08:00
|
|
|
}
|
2019-03-22 22:35:04 +08:00
|
|
|
#player:not([data-flags~=random]) .random,
|
|
|
|
#player:not([data-flags~=repeat]) .repeat {
|
2019-03-21 17:32:58 +08:00
|
|
|
opacity: 0.5;
|
2019-03-20 05:56:39 +08:00
|
|
|
}
|
2019-03-29 05:52:57 +08:00
|
|
|
#player .info {
|
|
|
|
flex-grow: 1;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
#player .controls {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#player .controls .icon {
|
2019-03-26 22:40:23 +08:00
|
|
|
width: 64px;
|
2019-03-27 00:07:52 +08:00
|
|
|
}
|
|
|
|
#player .misc {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
#player .misc .icon {
|
|
|
|
width: 48px;
|
2019-03-26 22:40:23 +08:00
|
|
|
}
|
2019-03-25 22:49:23 +08:00
|
|
|
.component {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2019-03-26 19:35:47 +08:00
|
|
|
.component ul {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
.component li {
|
2019-03-26 19:35:47 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-03-26 22:40:23 +08:00
|
|
|
align-items: center;
|
2019-03-29 03:28:55 +08:00
|
|
|
white-space: nowrap;
|
2019-03-26 19:35:47 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
.component h2 {
|
2019-03-26 19:35:47 +08:00
|
|
|
flex-grow: 1;
|
2019-03-26 22:40:23 +08:00
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
2019-03-26 19:35:47 +08:00
|
|
|
margin: 0;
|
2019-03-31 06:15:32 +08:00
|
|
|
margin-left: 4px;
|
2019-03-26 19:35:47 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
.component h2 .icon {
|
2019-03-29 05:52:57 +08:00
|
|
|
margin-right: 4px;
|
2019-03-29 23:28:26 +08:00
|
|
|
color: var(--primary);
|
2019-03-29 05:52:57 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
.component li:nth-child(odd) {
|
2019-03-29 05:52:57 +08:00
|
|
|
background-color: #555;
|
2019-03-28 22:23:28 +08:00
|
|
|
}
|
|
|
|
@media (pointer: coarse) {
|
2019-03-30 19:57:01 +08:00
|
|
|
.component .icon {
|
2019-03-28 22:23:28 +08:00
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
}
|
2019-03-25 22:49:23 +08:00
|
|
|
#queue {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2019-03-22 23:17:10 +08:00
|
|
|
#queue ul {
|
2019-03-25 22:49:23 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
overflow: auto;
|
2019-03-22 23:17:10 +08:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#queue li {
|
2019-03-26 19:35:47 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-03-26 22:40:23 +08:00
|
|
|
align-items: center;
|
2019-03-29 03:28:55 +08:00
|
|
|
white-space: nowrap;
|
2019-03-26 19:35:47 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#queue h2 {
|
2019-03-26 19:35:47 +08:00
|
|
|
flex-grow: 1;
|
2019-03-26 22:40:23 +08:00
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
2019-03-26 19:35:47 +08:00
|
|
|
margin: 0;
|
2019-03-31 06:15:32 +08:00
|
|
|
margin-left: 4px;
|
2019-03-26 19:35:47 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#queue h2 .icon {
|
2019-03-29 05:52:57 +08:00
|
|
|
margin-right: 4px;
|
2019-03-29 23:28:26 +08:00
|
|
|
color: var(--primary);
|
2019-03-29 05:52:57 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#queue li:nth-child(odd) {
|
2019-03-29 05:52:57 +08:00
|
|
|
background-color: #555;
|
2019-03-28 22:23:28 +08:00
|
|
|
}
|
|
|
|
@media (pointer: coarse) {
|
2019-03-30 19:57:01 +08:00
|
|
|
#queue .icon {
|
2019-03-28 22:23:28 +08:00
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
}
|
2019-03-29 05:52:57 +08:00
|
|
|
#queue .current * {
|
|
|
|
font-weight: bold !important;
|
2019-03-22 22:35:04 +08:00
|
|
|
}
|
2019-03-25 22:49:23 +08:00
|
|
|
#library {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#library ul {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#library li {
|
2019-03-26 19:35:47 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-03-26 22:40:23 +08:00
|
|
|
align-items: center;
|
2019-03-29 03:28:55 +08:00
|
|
|
white-space: nowrap;
|
2019-03-26 19:35:47 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#library h2 {
|
2019-03-26 19:35:47 +08:00
|
|
|
flex-grow: 1;
|
2019-03-26 22:40:23 +08:00
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
2019-03-26 19:35:47 +08:00
|
|
|
margin: 0;
|
2019-03-31 06:15:32 +08:00
|
|
|
margin-left: 4px;
|
2019-03-26 19:35:47 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#library h2 .icon {
|
2019-03-29 05:52:57 +08:00
|
|
|
margin-right: 4px;
|
2019-03-29 23:28:26 +08:00
|
|
|
color: var(--primary);
|
2019-03-29 05:52:57 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#library li:nth-child(odd) {
|
2019-03-29 05:52:57 +08:00
|
|
|
background-color: #555;
|
2019-03-28 22:23:28 +08:00
|
|
|
}
|
|
|
|
@media (pointer: coarse) {
|
2019-03-30 19:57:01 +08:00
|
|
|
#library .icon {
|
2019-03-28 22:23:28 +08:00
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
}
|
2019-03-31 06:15:32 +08:00
|
|
|
#library .art img {
|
|
|
|
width: 64px;
|
2019-03-31 05:05:33 +08:00
|
|
|
}
|
2019-03-30 06:36:06 +08:00
|
|
|
#library .tiles {
|
|
|
|
display: grid;
|
2019-03-30 19:57:01 +08:00
|
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
|
|
grid-gap: 2px;
|
2019-03-30 06:36:06 +08:00
|
|
|
}
|
|
|
|
#library .tiles li {
|
2019-03-30 19:57:01 +08:00
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: rgba(255, 255, 255, 0.08);
|
2019-03-30 06:36:06 +08:00
|
|
|
height: 200px;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#library .tiles li h2 {
|
|
|
|
font-size: 150%;
|
|
|
|
margin: 4px 0;
|
|
|
|
}
|
2019-03-26 19:35:47 +08:00
|
|
|
#fs {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#fs ul {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#fs li {
|
2019-03-26 19:35:47 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-03-26 22:40:23 +08:00
|
|
|
align-items: center;
|
2019-03-29 03:28:55 +08:00
|
|
|
white-space: nowrap;
|
2019-03-26 19:35:47 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#fs h2 {
|
2019-03-26 19:35:47 +08:00
|
|
|
flex-grow: 1;
|
2019-03-26 22:40:23 +08:00
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
2019-03-26 19:35:47 +08:00
|
|
|
margin: 0;
|
2019-03-31 06:15:32 +08:00
|
|
|
margin-left: 4px;
|
2019-03-26 19:35:47 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#fs h2 .icon {
|
2019-03-29 05:52:57 +08:00
|
|
|
margin-right: 4px;
|
2019-03-29 23:28:26 +08:00
|
|
|
color: var(--primary);
|
2019-03-29 05:52:57 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#fs li:nth-child(odd) {
|
2019-03-29 05:52:57 +08:00
|
|
|
background-color: #555;
|
2019-03-28 22:23:28 +08:00
|
|
|
}
|
|
|
|
@media (pointer: coarse) {
|
2019-03-30 19:57:01 +08:00
|
|
|
#fs .icon {
|
2019-03-28 22:23:28 +08:00
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
}
|
2019-03-29 23:28:26 +08:00
|
|
|
#fs .group {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-03-28 22:23:28 +08:00
|
|
|
#playlists {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
#playlists ul {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#playlists li {
|
2019-03-28 22:23:28 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2019-03-29 03:28:55 +08:00
|
|
|
white-space: nowrap;
|
2019-03-28 22:23:28 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#playlists h2 {
|
2019-03-28 22:23:28 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
2019-03-31 06:15:32 +08:00
|
|
|
margin-left: 4px;
|
2019-03-28 22:23:28 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#playlists h2 .icon {
|
2019-03-29 05:52:57 +08:00
|
|
|
margin-right: 4px;
|
2019-03-29 23:28:26 +08:00
|
|
|
color: var(--primary);
|
2019-03-29 05:52:57 +08:00
|
|
|
}
|
2019-03-30 19:57:01 +08:00
|
|
|
#playlists li:nth-child(odd) {
|
2019-03-29 05:52:57 +08:00
|
|
|
background-color: #555;
|
2019-03-26 19:35:47 +08:00
|
|
|
}
|
2019-03-28 22:23:28 +08:00
|
|
|
@media (pointer: coarse) {
|
2019-03-30 19:57:01 +08:00
|
|
|
#playlists .icon {
|
2019-03-28 22:23:28 +08:00
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
}
|
2019-03-31 05:05:33 +08:00
|
|
|
#yt {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
#yt ul {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: auto;
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#yt li {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
#yt h2 {
|
|
|
|
flex-grow: 1;
|
|
|
|
font-size: 100%;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
2019-03-31 06:15:32 +08:00
|
|
|
margin-left: 4px;
|
2019-03-31 05:05:33 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
#yt h2 .icon {
|
|
|
|
margin-right: 4px;
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
#yt li:nth-child(odd) {
|
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
@media (pointer: coarse) {
|
|
|
|
#yt .icon {
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#yt .go {
|
|
|
|
width: 96px;
|
|
|
|
height: 96px;
|
|
|
|
}
|
|
|
|
#yt .go:disabled {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#yt .go:disabled::before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-top: 3px solid var(--primary);
|
|
|
|
border-radius: 50%;
|
|
|
|
animation: rotate linear 3s infinite;
|
|
|
|
}
|
|
|
|
#yt p {
|
|
|
|
margin: 16px 8px;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
@keyframes rotate {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2019-03-29 23:28:26 +08:00
|
|
|
:root {
|
|
|
|
--primary: dodgerblue;
|
|
|
|
--fg: #fff;
|
|
|
|
--bg: #333;
|
|
|
|
}
|