diff options
Diffstat (limited to 'dot-config/waybar/style.css')
| -rw-r--r-- | dot-config/waybar/style.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/dot-config/waybar/style.css b/dot-config/waybar/style.css new file mode 100644 index 0000000..3901ff9 --- /dev/null +++ b/dot-config/waybar/style.css @@ -0,0 +1,58 @@ +* { + border: none; + border-radius: 0; + /*font-family: "PragmataPro Liga";*/ + font-family: "Input"; + font-size: 13px; + min-height: 0; +} + +window#waybar { + background: rgba(43, 48, 59, 0.5); + color: white; +} + +window#waybar > box { + padding: 0 8px 0 0; +} + +#hardware * { + margin: 4px; +} + +tooltip { + background: rgba(43, 48, 59, 0.5); + border: 1px solid rgba(100, 114, 125, 0.5); +} +tooltip label { + color: white; +} + +#workspaces button { + padding: 0 3px; + background: transparent; + color: white; +} + +#workspaces button.focused { + background: #64727D; +} + +#mode { + background: #64727D; + border-bottom: 3px solid white; +} + +@keyframes blink { + to { + color: red; + } +} + +#battery.warning:not(.charging) { + animation-name: blink; + animation-duration: 0.5s; + animation-timing-function: steps(12); + animation-iteration-count: infinite; + animation-direction: alternate; +} |
