-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (113 loc) · 2.55 KB
/
style.css
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
* {
/* `otf-font-awesome` is required to be installed for icons */
font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
}
window#waybar {
margin-top: 4px;
background-color: rgba(0, 0, 0, 0);
/* border-bottom: 2px solid rgba(69, 0, 255, 1); */
color: #ffffff;
padding: 20px;
}
button {
/* Use box-shadow instead of border so the text isn't offset */
box-shadow: inset 0 -3px transparent;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
button:hover {
background: inherit;
box-shadow: inset 0 -3px #ffffff;
}
/* you can set a style on hover for any module like this */
#workspaces button {
padding: 0 5px;
background-color: rgba(40,40,40,0);
border: 4px inset transparent;
border-radius: 9px;
color: #ffffff;
}
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
}
#workspaces button.active {
background-color: rgba(30,30,30,0.9);
box-shadow: inset 0 -4px rgba(69, 0, 255, 1);
}
#workspaces button.focused {
background-color: rgba(40,40,40,0.9);
box-shadow: inset 0 -3px #ffffff;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#mode {
background-color: #64727D;
box-shadow: inset 0 -3px #ffffff;
}
#clock,
#cpu,
#memory,
#disk,
#temperature,
#pulseaudio,
#network,
#tray,
#window,
#workspaces {
border: 2px inset transparent;
border-radius: 9px;
margin: 1 4px;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
border: 2px solid rgba(69, 0, 255, 1);
border-radius: 9px;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right{
padding: 0 1px;
border: 2px solid rgba(69, 0, 255, 1);
border-radius: 9px;
}
#clock {
border: 2px solid rgba(69, 0, 255, 1);
border-radius: 9px;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
/* Using steps() instead of linear as a timing function to limit cpu usage */
label:focus {
background-color: #000000;
}
#cpu {
color: #ffffff;
}
#memory {
}
#pulseaudio {
color: #ffffff;
}
#pulseaudio.muted {
color: #ffffff;
}
#network {
}
#tray {
border: 2px solid rgba(69, 0, 255, 1);
border-radius: 9px;
background-color: rgba(30,30,30,0);
}
#tray > .passive {
box-shadow: inset 0 -3px transparent;
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
box-shadow: inset 0 -3px #ffffff;
}