First separation commit.

Added LICENSE, README.md, CONTRIBUTORS.md
This commit is contained in:
Erwin de Haan 2019-01-09 12:36:54 +01:00
parent 09513af31b
commit 4678528d00
657 changed files with 422 additions and 0 deletions

View file

@ -0,0 +1,45 @@
.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
}