summaryrefslogtreecommitdiff
path: root/scss/osds.scss
blob: 7ad3d5bd375cbc2814ccbb4c40e74027eca604bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@use "scheme";
@use "lib";
@use "font";

.brightness,
.volume {
    @include lib.rounded(8);
    @include lib.border(scheme.$overlay0, 0.1);
    @include lib.shadow;
    @include font.mono;

    background-color: scheme.$base;
    font-size: lib.s(16);
    padding: lib.s(3);

    .inner {
        @include lib.fluent-decel(1000ms);

        min-width: lib.s(300);
        min-height: lib.s(32);
        background-color: scheme.$teal;
    }
}

.volume .inner.mute {
    background-color: scheme.$overlay0;
}