2019-03-21 17:32:58 +08:00
|
|
|
#player {
|
2019-03-22 23:17:10 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-03-29 05:52:57 +08:00
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&:not([data-state=play]) .pause { display: none; }
|
|
|
|
&[data-state=play] .play { display: none; }
|
|
|
|
&:not([data-flags~=random]) .random, &:not([data-flags~=repeat]) .repeat { opacity: 0.5; }
|
2019-03-21 17:32:58 +08:00
|
|
|
|
2019-04-01 04:02:26 +08:00
|
|
|
.art {
|
|
|
|
margin-right: var(--icon-spacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 125%;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2019-03-28 22:23:28 +08:00
|
|
|
.info {
|
|
|
|
flex-grow: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2019-03-22 22:35:04 +08:00
|
|
|
|
2019-04-01 04:02:26 +08:00
|
|
|
.title, .subtitle { .long-line; }
|
|
|
|
|
2019-03-29 05:52:57 +08:00
|
|
|
.controls {
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
2019-04-01 04:02:26 +08:00
|
|
|
.icon {
|
|
|
|
width: 32px;
|
|
|
|
margin: 8px;
|
|
|
|
}
|
2019-03-26 22:40:23 +08:00
|
|
|
}
|
2019-03-27 00:07:52 +08:00
|
|
|
|
|
|
|
.misc {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-04-01 04:02:26 +08:00
|
|
|
align-self: stretch;
|
|
|
|
justify-content: space-around;
|
|
|
|
.icon { width: 32px; }
|
2019-03-27 00:07:52 +08:00
|
|
|
}
|
|
|
|
|
2019-03-21 17:32:58 +08:00
|
|
|
}
|