114 lines
1.5 KiB
CSS
114 lines
1.5 KiB
CSS
* {
|
|
border: none;
|
|
font-family: 'Verdana', 'Cantarell', 'monospace', 'Symbols Nerd Font Mono';
|
|
font-size: 12px;
|
|
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
|
|
}
|
|
|
|
window#waybar {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* All modules */
|
|
|
|
/* Module on the left */
|
|
.modules-left {
|
|
color: #cdd6f4;
|
|
}
|
|
|
|
#custom-power {
|
|
color: white;
|
|
padding: 0px 8px;
|
|
padding-left: 18px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
#custom-power:hover {
|
|
background-color: #33ccff;
|
|
color: #107091;
|
|
}
|
|
|
|
#workspaces {
|
|
margin-left: 10px;
|
|
font-size: 12px;
|
|
border-radius: 100px;
|
|
padding: 2px;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: white;
|
|
animation: gradient_f 20s ease-in infinite;
|
|
transition: all 0.2s ease-in;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background: none;
|
|
color: white;
|
|
box-shadow: inherit;
|
|
text-shadow: inherit;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #33ccff;
|
|
}
|
|
|
|
#custom-spotify {
|
|
padding: 0px 10px;
|
|
}
|
|
|
|
#custom-spotify:hover {
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
/* Module in the middle */
|
|
#clock {
|
|
color: #cdd6f4;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
/* Module on the right */
|
|
|
|
.modules-right {
|
|
color: white;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.modules-right *:hover {
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.modules-right * {
|
|
padding: 0px 10px;
|
|
}
|
|
|
|
|
|
#memory {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
#cpu {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#bluetooth {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#custom-wireguard {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
#custom-coffee {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.inactive {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
|