jellyfin-web/dashboard-ui/css/mediaplayer.css
Luke Pulverenti 0e1df8a39d update osd
2015-08-28 15:10:44 -04:00

72 lines
1.1 KiB
CSS

#mediaElement {
display: inline-block;
position: relative;
}
.nowPlayingText {
display: inline-block;.
font-weight: normal;
position: relative;
top: -7px;
margin: 0 0 0 3px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
text-align: left;
font-size: 15px;
max-width: 130px;
}
.mediaButton.infoButton iron-icon {
width: 34px;
height: 34px;
}
.mediaButton.active {
color: #2ad;
}
@media (min-width: 500px) {
.nowPlayingText {
max-width: 180px;
}
}
@media (min-width: 600px) {
.nowPlayingText {
max-width: 200px;
}
}
@media (min-width: 800px) {
.nowPlayingText {
margin-right: 30px;
}
}
.mediaButton img {
height: 24px;
}
.currentTime {
display: inline-block;
vertical-align: middle;
max-width: 110px;
margin-right: 2em;
font-weight: normal;
}
.mediaPlayerAudioContainer {
position: fixed;
top: 40%;
text-align: center;
left: 0;
right: 0;
}
.mediaPlayerAudioContainerInner {
padding: 1em;
background: #222;
}