44 lines
703 B
CSS
44 lines
703 B
CSS
* {
|
|
font-family: "Noto Sans Regular";
|
|
font-size: 12pt;
|
|
}
|
|
|
|
window#osd {
|
|
border-radius: 999px;
|
|
border: none;
|
|
background: #{"alpha(@theme_bg_color, 0.8)"};
|
|
|
|
#container {
|
|
margin: 16px;
|
|
}
|
|
|
|
image,
|
|
label {
|
|
color: #{"@theme_fg_color"};
|
|
}
|
|
|
|
progressbar:disabled,
|
|
image:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
progressbar {
|
|
min-height: 6px;
|
|
border-radius: 999px;
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
trough {
|
|
min-height: inherit;
|
|
border-radius: inherit;
|
|
border: none;
|
|
background: #{"alpha(@theme_fg_color, 0.5)"};
|
|
}
|
|
progress {
|
|
min-height: inherit;
|
|
border-radius: inherit;
|
|
border: none;
|
|
background: #{"@theme_fg_color"};
|
|
}
|
|
}
|