diff options
Diffstat (limited to 'config/waybar/style.css.compact')
-rw-r--r-- | config/waybar/style.css.compact | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/config/waybar/style.css.compact b/config/waybar/style.css.compact new file mode 100644 index 0000000..a4ccfbd --- /dev/null +++ b/config/waybar/style.css.compact @@ -0,0 +1,139 @@ +* { + font-family: 'JetBrainsMono Nerd Font'; + font-size: 14px; +} + +window { + background: rgba(41, 46, 62, 0.8); + /*background-image: linear-gradient(0deg, transparent 0%, rgba(0, 0, 0, 0.5) 90%);*/ + color: white; +} + +#workspaces button { + padding: 0 10px; + color: white; + background: none; + border: none; + /*border-top: 3px solid transparent;*/ + box-shadow: none; + border-radius: 0; + text-shadow: none; +} + +#workspaces button:hover { + /*border-top: 3px solid gray;*/ + background: white; + color: rgba(41, 46, 62, 0.8); + text-shadow: none; +} + +#workspaces button.active > span { + color: rgba(41, 46, 62, 0.8); +} + +#workspaces button.active { + /*border-top: 3px solid white;*/ + background: white; + color: rgba(41, 46, 62, 0.8); + text-shadow: none; +} + +#battery.warning { + color: #b58310; +} + +#battery.critical { + color: #db330d; +} + +#window { + background: white; + text-shadow: none; + color: rgba(41, 46, 62, 0.8); + margin-top: 0; + margin-left: 0; + padding-right: 10px; + padding-left: 10px; + border-radius: 0; +} + +#battery { + background: white; + color: rgba(41, 46, 62, 0.8); + margin-top: 0; + padding-right: 12px; + padding-left: 10px; + border-radius: 0; +} + +#temperature, #memory, #cpu, #network, #backlight { + + margin-top: 0; + padding-right: 10px; + padding-left: 10px; + margin-right: 0; + border-radius: 0; +} + +#pulseaudio { + color: white; + + margin-top: 0; + margin-right: 0; + padding-right: 10px; + padding-left: 12px; + border-radius: 0; +} + +#custom-arch { + background: #4299e5; + color: white; + font-size: 1.1rem; + text-shadow: none; + margin-top: 0; + margin-left: 0; + padding-left: 20px; + padding-right: 20px; + border-radius: 0; +} + +#custom-arch.hover { + background: white; + color: #4299e5; +} + +#workspaces { + + margin-top: 0; + margin-left: 0; + border-radius: 0; +} + +#clock { + + color: white; + text-shadow: none; + margin-top: 0; + margin-right: 0; + border-radius: 0; + padding-left: 10px; + padding-right: 10px; +} + +#clock.date { + border-radius: 0; + color: rgba(41, 46, 62, 0.8); + background: white; +} + + +#tray { + + text-shadow: none; + color: white; + margin-top: 0; + margin-left: 0; + padding-right: 10px; + padding-left: 10px; + border-radius: 0; +} |