diff options
Diffstat (limited to 'dot-config/waybar/style.css')
| -rw-r--r-- | dot-config/waybar/style.css | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/dot-config/waybar/style.css b/dot-config/waybar/style.css new file mode 100644 index 0000000..49ca5af --- /dev/null +++ b/dot-config/waybar/style.css @@ -0,0 +1,61 @@ +* { + font-family: "Hack Nerd Font", "Hack", monospace; + font-size: 12px; + box-shadow: none; +} + +window#waybar { + background-color: #000; + border-bottom: 1px solid #444; + color: #eee; + transition-property: background-color; + transition-duration: .5s; +} + +/* WORKSPACES */ +#workspaces button { + padding: 0 8px; + background-color: transparent; + color: #aaa; + border: 1px solid black; + border-radius: 5px; + margin: 1px 0; +} + +#workspaces button:hover { + background: #fff; + color: #000; + border: 1px solid black; +} + +#workspaces button.focused { + border: 1px solid white; + box-shadow: none; + color: #fff; +} + +#workspaces button.urgent { + background-color: #eb4d4b; +} + + +/* PULSEAUDIO SLIDER */ +#pulseaudio-slider slider { + min-height: 0px; + min-width: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} +#pulseaudio-slider trough { + min-height: 10px; + min-width: 80px; + border-radius: 5px; + background-color: black; +} +#pulseaudio-slider highlight { + min-width: 10px; + border-radius: 5px; + background-color: green; +} |
