1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/css/mediaplayer.css

72 lines
1.1 KiB
CSS
Raw Normal View History

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