summaryrefslogtreecommitdiff
path: root/assets/native.css
blob: 8552508227ea44fd9523f243181e62af814b172f (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
body.native {
    background-color: transparent !important;
}

#ui, #lyrics-page, #lyrics-body {
    background-color: white !important;
}

body.navigation-body {
    background-color: rgba(255, 255, 255, .1) !important;
    border-right: 1px solid rgba(0, 0, 0, .1) !important;
    position: fixed;
    inset: 0;
}

#navigation-gradient {
    display: none !important;
}

#search, .list-group-item {
    background-color: rgba(255, 255, 255, .25) !important;
}

@media (prefers-color-scheme: dark) {
    body, #player.bg-white {
        background-color: transparent !important;
    }

    body.navigation-body {
        background-color: rgba(0, 0, 0, .1) !important;
        border-right: 1px solid rgba(255, 255, 255, .1) !important;
        position: fixed;
        inset: 0;
    }

    #navigation-gradient {
        display: none !important;
    }

    #filter, #search, .list-group-item {
        background-color: rgba(0, 0, 0, .25) !important;
    }
}