33 lines
No EOL
602 B
Text
33 lines
No EOL
602 B
Text
#player {
|
|
display: flex;
|
|
flex-direction: row;
|
|
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; }
|
|
|
|
.art img { vertical-align: top; }
|
|
|
|
.info {
|
|
flex-grow: 1;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.controls {
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
.icon { width: 64px; }
|
|
}
|
|
|
|
.misc {
|
|
display: flex;
|
|
flex-direction: column;
|
|
@size: 96px / 2;
|
|
width: @size;
|
|
.icon { width: @size; }
|
|
}
|
|
|
|
} |