-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (98 loc) · 1.73 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
* {
/* `otf-font-awesome` and SpaceMono Nerd Font are required to be installed for icons */
font-family: "Fira Sans Semibold", FontAwesome, Roboto, Helvetica, Arial, sans-serif;
font-size: 15px;
transition: background-color .3s ease-out;
}
window#waybar {
background: rgba(26, 27, 38, 0.75);
color: #c0caf5;
font-family:
SpaceMono Nerd Font,
feather;
transition: background-color .5s;
}
.modules-left,
.modules-center,
.modules-right
{
background: rgba(0, 0, 8, .7);
margin: 5px 10px;
padding: 0 5px;
border-radius: 15px;
}
.modules-left {
padding: 0;
}
.modules-center {
padding: 0 10px;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#scratchpad,
#power-profiles-daemon,
#language,
#mpd {
padding: 0 10px;
border-radius: 15px;
}
#clock:hover,
#battery:hover,
#cpu:hover,
#memory:hover,
#disk:hover,
#temperature:hover,
#backlight:hover,
#network:hover,
#pulseaudio:hover,
#wireplumber:hover,
#custom-media:hover,
#tray:hover,
#mode:hover,
#idle_inhibitor:hover,
#scratchpad:hover,
#power-profiles-daemon:hover,
#language:hover,
#mpd:hover {
background: rgba(26, 27, 38, 0.9);
}
#workspaces button {
background: transparent;
font-family:
SpaceMono Nerd Font,
feather;
font-weight: 900;
font-size: 13pt;
color: #c0caf5;
border:none;
border-radius: 15px;
}
#workspaces button.active {
background: #13131d;
}
#workspaces button:hover {
background: #11111b;
color: #cdd6f4;
box-shadow: none;
}
#custom-arch {
margin-left: 5px;
padding: 0 10px;
font-size: 25px;
transition: color .5s;
}
#custom-arch:hover {
color: #1793d1;
}