2024-08-03 14:51:50 +00:00
|
|
|
@use "../colors/_glassy.scss" as *;
|
|
|
|
@use "_bat.scss" as *;
|
|
|
|
@use "_bri.scss" as *;
|
|
|
|
@use "_vol.scss" as *;
|
2024-08-03 17:55:11 +00:00
|
|
|
/* OSD - Vol, Bright, Bat, etc. */
|
2024-08-03 14:51:50 +00:00
|
|
|
|
|
|
|
$br: 5px;
|
|
|
|
|
|
|
|
.osd_progbar_container {
|
|
|
|
.osd_prog_bg {
|
|
|
|
border-radius: $br;
|
|
|
|
background-color: $osd_bg_col;
|
|
|
|
}
|
|
|
|
|
|
|
|
.osd_prog_filled
|
|
|
|
{
|
|
|
|
border-radius: $br 0 0 $br;
|
|
|
|
background-color: $osd_fill_col;
|
|
|
|
&.full
|
|
|
|
{
|
|
|
|
border-radius: $br;
|
|
|
|
}
|
|
|
|
&.empty
|
|
|
|
{
|
|
|
|
all: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include osd_fill_cols_bat;
|
|
|
|
@include osd_fill_cols_bri;
|
|
|
|
@include osd_fill_cols_vol;
|
|
|
|
|
|
|
|
.osd_value
|
|
|
|
{
|
|
|
|
margin-right: $br;
|
|
|
|
font-size: 35px;
|
|
|
|
font-family: "Iosevka Extrabold";
|
|
|
|
}
|
|
|
|
|
|
|
|
.osd_icon
|
|
|
|
{
|
|
|
|
margin-left: 7px;
|
|
|
|
font-size: 35px;
|
|
|
|
font-family: "icon-font";
|
|
|
|
}
|
|
|
|
}
|