2020-03-09 05:11:46 +08:00
|
|
|
cyp-player {
|
2019-04-15 15:48:27 +08:00
|
|
|
@art-size: 96px;
|
2019-04-03 01:19:46 +08:00
|
|
|
.flex-row;
|
2019-04-12 19:34:28 +08:00
|
|
|
align-items: stretch;
|
2019-03-29 05:52:57 +08:00
|
|
|
|
|
|
|
&: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-26 19:48:23 +08:00
|
|
|
x-range {
|
2019-04-15 22:00:59 +08:00
|
|
|
flex-grow: 1;
|
2019-04-26 19:48:23 +08:00
|
|
|
--elapsed-color: var(--primary);
|
2019-04-15 15:48:27 +08:00
|
|
|
}
|
|
|
|
|
2019-04-01 04:02:26 +08:00
|
|
|
.art {
|
2019-04-15 15:13:39 +08:00
|
|
|
margin-right: 0;
|
2019-04-15 15:48:27 +08:00
|
|
|
height: @art-size;
|
2019-04-09 22:08:09 +08:00
|
|
|
img, .icon {
|
2019-04-15 15:48:27 +08:00
|
|
|
width: @art-size;
|
2019-04-09 22:08:09 +08:00
|
|
|
}
|
2019-04-01 04:02:26 +08:00
|
|
|
}
|
|
|
|
|
2019-04-15 22:00:59 +08:00
|
|
|
.info {
|
|
|
|
flex-grow: 2;
|
|
|
|
flex-basis: 0;
|
2019-04-16 14:40:16 +08:00
|
|
|
padding: 0 var(--icon-spacing);
|
2020-03-10 23:02:28 +08:00
|
|
|
overflow: hidden; // FIXME asi tu ma byt min-width
|
2019-04-15 22:00:59 +08:00
|
|
|
|
2019-04-10 20:37:02 +08:00
|
|
|
.flex-column;
|
2019-04-12 19:34:28 +08:00
|
|
|
justify-content: space-around;
|
2019-03-22 22:35:04 +08:00
|
|
|
|
2019-04-15 15:48:27 +08:00
|
|
|
h2 {
|
|
|
|
font-size: 125%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2019-04-01 04:02:26 +08:00
|
|
|
|
2020-03-10 22:25:43 +08:00
|
|
|
.title, .subtitle { .ellipsis; }
|
2019-04-15 15:13:39 +08:00
|
|
|
}
|
2020-03-09 05:11:46 +08:00
|
|
|
|
2019-04-11 19:34:24 +08:00
|
|
|
.timeline {
|
|
|
|
.flex-row;
|
|
|
|
|
|
|
|
.duration, .elapsed {
|
|
|
|
flex-basis: 5ch;
|
2019-04-12 19:34:28 +08:00
|
|
|
text-align: center;
|
2019-04-11 19:34:24 +08:00
|
|
|
}
|
2019-04-10 20:37:02 +08:00
|
|
|
}
|
|
|
|
|
2019-03-29 05:52:57 +08:00
|
|
|
.controls {
|
2019-04-15 22:00:59 +08:00
|
|
|
flex-grow: 1;
|
|
|
|
flex-basis: 0;
|
|
|
|
max-width: 220px;
|
|
|
|
|
2019-04-11 19:34:24 +08:00
|
|
|
.flex-column;
|
2019-04-12 19:34:28 +08:00
|
|
|
justify-content: space-around;
|
2019-04-11 19:34:24 +08:00
|
|
|
|
|
|
|
.playback {
|
|
|
|
.flex-row;
|
|
|
|
justify-content: space-around;
|
|
|
|
|
2019-04-15 22:00:59 +08:00
|
|
|
.icon { width: 40px; }
|
2019-04-11 19:34:24 +08:00
|
|
|
|
2019-04-15 22:00:59 +08:00
|
|
|
.icon-play, .icon-pause { width: 64px; }
|
2019-04-11 19:34:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.volume {
|
|
|
|
.flex-row;
|
|
|
|
|
2019-04-15 22:00:59 +08:00
|
|
|
.mute { margin-right: 4px; }
|
2019-04-01 04:02:26 +08:00
|
|
|
}
|
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-04-15 15:13:39 +08:00
|
|
|
|
|
|
|
@media (max-width: 519px) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
.info {
|
|
|
|
order: 1;
|
2019-04-15 22:00:59 +08:00
|
|
|
flex-basis: 100%;
|
2019-04-15 15:48:27 +08:00
|
|
|
height: @art-size;
|
2019-04-15 15:13:39 +08:00
|
|
|
}
|
|
|
|
}
|
2019-04-09 22:08:09 +08:00
|
|
|
}
|