jellyfish-web/src/components/playback/iconosd.scss

41 lines
678 B
SCSS
Raw Normal View History

2019-01-23 11:33:34 +00:00
.iconOsd {
2018-10-23 01:13:23 +03:00
position: fixed;
top: 7%;
right: 3%;
z-index: 100000;
background: #222;
2020-01-19 15:00:37 +01:00
background: rgba(0, 0, 0, 0.8);
2018-10-23 01:13:23 +03:00
padding: 1em;
color: #fff;
backdrop-filter: blur(5px);
2020-01-19 15:00:37 +01:00
border-radius: 0.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;
2020-01-19 15:00:37 +01:00
margin: 0.25em 0.7em;
2018-10-23 01:13:23 +03:00
}
.iconOsdProgressOuter {
2020-01-19 15:00:37 +01:00
margin: 1.5em 0.25em 1em;
height: 0.35em;
2018-10-23 01:13:23 +03:00
background: #222;
2020-01-19 15:00:37 +01:00
border-radius: 0.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%;
2020-01-19 15:00:37 +01:00
border-radius: 0.25em;
2018-10-23 01:13:23 +03:00
}
.brightnessOsdProgressInner {
2020-01-19 14:40:08 +01:00
background: #ff9800;
}