35 lines
675 B
CSS
35 lines
675 B
CSS
* {
|
|
all: unset;
|
|
font-family: "UbuntuMono Nerd Font";
|
|
font-size: 15px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.modules-left, .modules-center, .modules-right {
|
|
background: rgba(38, 41, 44, 0.5);
|
|
border: 1px #4f4f4f solid;
|
|
border-radius: 3px;
|
|
margin: 8px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#cpu, #custom-gpu, #memory, #disk, #custom-processes, #custom-tcp, #custom-udp, #custom-pacman, #wireplumber, #clock {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
border-radius: 3px;
|
|
padding: 4px 8px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: rgba(255, 255, 255, 0.1);
|
|
padding: 4px;
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
color: transparent;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
} |