Move components css files to sass

This commit is contained in:
Bill Thornton 2021-01-26 16:25:38 -05:00
parent 55dfb219b0
commit a47f6d458c
120 changed files with 112 additions and 112 deletions

View file

@ -0,0 +1,40 @@
.iconOsd {
position: fixed;
top: 7%;
right: 3%;
z-index: 100000;
background: #222;
background: rgba(0, 0, 0, 0.8);
padding: 1em;
color: #fff;
backdrop-filter: blur(5px);
border-radius: 0.25em;
transition: opacity 200ms ease-out;
}
.iconOsd-hidden {
opacity: 0;
}
.iconOsdIcon {
font-size: 320%;
display: block;
margin: 0.25em 0.7em;
}
.iconOsdProgressOuter {
margin: 1.5em 0.25em 1em;
height: 0.35em;
background: #222;
border-radius: 0.25em;
}
.iconOsdProgressInner {
background: #00a4dc;
height: 100%;
border-radius: 0.25em;
}
.brightnessOsdProgressInner {
background: #ff9800;
}