waybar/style.css
2024-12-04 15:30:18 +00:00

63 lines
1.1 KiB
CSS

* {
font-family: monospace;
border: none;
border-radius: 0;
padding: 0;
margin: 0;
border: none;
min-height: 0;
color: #ffffff;
}
button:hover {
box-shadow: none; /* Remove predefined box-shadow */
text-shadow: none; /* Remove predefined text-shadow */
background: none; /* Remove predefined background color (white) */
transition: none; /* Disable predefined animations */
}
window#waybar {
background-color: rgba(0, 0, 0, 0.5);
}
.module {
padding: 0.2em 1em;
}
.module#workspaces {
padding: 0;
}
#workspaces {
margin: 0 0;
}
#workspaces button {
background-color: transparent;
padding: 0 1em;
}
#workspaces button.visible {
background-color: rgba(255, 255, 255, 0.2);
box-shadow: inset 0 -1px #ffffff;
}
#workspaces button:hover {
box-shadow: inset 0 -2px #ffffff;
}
#workspaces button.urgent {
background-color: rgba(128, 0, 0, 0.5);
}
#mode {
background-color: rgba(255, 0, 0, 0.5);
box-shadow: inset 0 -2px #ffffff;
}
#load {
background-color: rgba(16, 128, 16, 0.5);
}
#memory {
background-color: rgba(255, 128, 32, 0.5);
}
#wireplumber {
background-color: rgba(255, 255, 255, 0.25);
}