aboutsummaryrefslogtreecommitdiff
path: root/.config/waybar/style.css
blob: f185f22c23a7102078e18e89681a095de78627c9 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
* {
    font-family: monospace;
}

window#waybar {
    background: transparent;
}

#workspaces {
    font-size: 16px;
    margin: 10px 10px 0px 10px;
    color: white;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border: 3px solid #29b;
    background: gray;
}

#workspaces button {
    color: white;
    border-radius: 0px;
}

#workspaces button.focused {
    background-color: #29b;
}

#workspaces button:hover {
    background-color: #ffffff;
    /* color: #24283b; */
    color: gray;
}


/* Top module of section */
#tray {
    padding: 5px 0px 5px 0px;
    margin: 10px 10px 0px 10px;
    color: white;
    border: 3px solid #29b;
    background: gray;
}

#idle_inhibitor, #network {
    font-size: 24px;
}

#pulseaudio {
    font-size: 12px;
}

/* Modules in center of section */ 
#idle_inhibitor, #memory, #cpu, #temperature, #network, #pulseaudio {
    padding: 1px 0px 1px 0px;
    margin: 0px 10px 0px 10px;
    color: white;
    border-left: 3px solid #29b;
    border-right: 3px solid #29b;
    background: gray;
}

/* Bottom module of section */
#clock {
    padding: 5px 0px 5px 0px;
    margin: 0px 10px 10px 10px;
    color: white;
    border: 3px solid #29b;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background: #29b;
}

@keyframes blink {
    to {
        background-color: #ffffff;
        color: black;
    }
}