aboutsummaryrefslogtreecommitdiffstats
path: root/wofi/style.css
blob: 746edafd2e5d1ff7fa91f62897570e512c663e11 (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
44
45
46
* { 
    outline-style: none;
    outline: none;
}

window {
    margin: 5px;
    font-family: Iosevka SS08, Iosevka Nerd Font;
    background-color: transparent;
} 

#outer-box {
    border: 3px solid #434e59;
    background-color: transparent;
}

#input {
    border: none;
    background-color: #434e59;
    box-shadow: none;
    opacity: 1;
    border-radius: 0;
}

#scroll {
    opacity: 0.95;
    background-color: #27292b;
}

#entry {
    padding: 5px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
}

#entry:selected {
    background-color: rgba(96, 111, 128, 0.2);
    font-weight: 700;
    font-style: italic;
    border-left: 3px solid #434e59;
    border-right: 3px solid #434e59;
}

#img {
    margin-right: 5px;
}