df14540b7c
Replaced "Emby Green" with blue taken from artwork. Replaced artwork. Kept old "Emby Green" themes for future reuse and renamed them "classic". Removed CSS element that was making the Jellyfin banner too small.
45 lines
850 B
CSS
45 lines
850 B
CSS
.iconOsd {
|
|
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);
|
|
-webkit-border-radius: .25em;
|
|
border-radius: .25em;
|
|
-webkit-transition: opacity .2s ease-out;
|
|
-o-transition: opacity .2s ease-out;
|
|
transition: opacity .2s ease-out
|
|
}
|
|
|
|
.iconOsd-hidden {
|
|
opacity: 0
|
|
}
|
|
|
|
.iconOsdIcon {
|
|
font-size: 320%;
|
|
display: block;
|
|
margin: .25em .7em
|
|
}
|
|
|
|
.iconOsdProgressOuter {
|
|
margin: 1.5em .25em 1em;
|
|
height: .35em;
|
|
background: #222;
|
|
-webkit-border-radius: .25em;
|
|
border-radius: .25em
|
|
}
|
|
|
|
.iconOsdProgressInner {
|
|
background: #00a4dc;
|
|
height: 100%;
|
|
-webkit-border-radius: .25em;
|
|
border-radius: .25em
|
|
}
|
|
|
|
.brightnessOsdProgressInner {
|
|
background: #FF9800
|
|
} |