jellyfin-web/dashboard-ui/css/mediaplayer.css

67 lines
1.0 KiB
CSS
Raw Normal View History

2015-06-27 12:53:36 -07:00
#mediaElement {
2013-12-27 09:18:42 -07:00
display: inline-block;
position: relative;
}
.nowPlayingText {
2013-12-27 09:18:42 -07:00
display: inline-block;
font-weight: normal;
position: relative;
top: -7px;
2015-05-04 21:17:38 -07:00
margin: 0 0 0 3px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2015-05-01 11:37:01 -07:00
vertical-align: middle;
2014-06-21 22:52:31 -07:00
text-align: left;
2015-05-01 11:37:01 -07:00
font-size: 15px;
2015-05-24 11:33:28 -07:00
max-width: 130px;
}
@media (min-width: 500px) {
.nowPlayingText {
max-width: 180px;
}
}
@media (min-width: 600px) {
.nowPlayingText {
max-width: 200px;
}
2015-05-04 21:17:38 -07:00
}
@media (min-width: 800px) {
.nowPlayingText {
margin-right: 30px;
}
2013-12-27 09:18:42 -07:00
}
.mediaButton img {
height: 24px;
}
.currentTime {
display: inline-block;
2015-05-04 21:17:38 -07:00
vertical-align: middle;
max-width: 110px;
margin-right: 2em;
2013-12-28 09:58:13 -07:00
font-weight: normal;
2013-12-27 09:18:42 -07:00
}
.volumeButton {
2015-05-04 21:17:38 -07:00
margin-right: .5em !important;
2013-12-27 09:18:42 -07:00
}
.mediaPlayerAudioContainer {
position: fixed;
top: 40%;
text-align: center;
left: 0;
right: 0;
2013-12-27 09:18:42 -07:00
}
.mediaPlayerAudioContainerInner {
padding: 1em;
background: #222;
2014-06-21 22:52:31 -07:00
}