jellyfish-web/src/bower_components/emby-webcomponents/playback/iconosd.css

40 lines
672 B
CSS
Raw Normal View History

.iconOsd {
2018-10-23 01:13:23 +03:00
position: fixed;
top: 7%;
right: 3%;
z-index: 100000;
background: #222;
background: rgba(0, 0, 0, .8);
padding: 1em;
color: #fff;
backdrop-filter: blur(5px);
border-radius: .25em;
transition: opacity 200ms ease-out;
2018-10-23 01:13:23 +03:00
}
.iconOsd-hidden {
opacity: 0;
2018-10-23 01:13:23 +03:00
}
.iconOsdIcon {
font-size: 320%;
display: block;
margin: .25em .7em;
2018-10-23 01:13:23 +03:00
}
.iconOsdProgressOuter {
margin: 1.5em .25em 1em;
height: .35em;
background: #222;
border-radius: .25em;
2018-10-23 01:13:23 +03:00
}
.iconOsdProgressInner {
2019-01-10 15:41:25 +03:00
background: #00a4dc;
2018-10-23 01:13:23 +03:00
height: 100%;
border-radius: .25em;
2018-10-23 01:13:23 +03:00
}
.brightnessOsdProgressInner {
background: #FF9800;
2019-01-10 15:41:25 +03:00
}