45 lines
No EOL
850 B
CSS
45 lines
No EOL
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: #52B54B;
|
|
height: 100%;
|
|
-webkit-border-radius: .25em;
|
|
border-radius: .25em
|
|
}
|
|
|
|
.brightnessOsdProgressInner {
|
|
background: #FF9800
|
|
} |