arch-setup/files/Code - OSS/User/History/-341627b0/DZom.css

111 lines
1.9 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Globale Schrift schlicht, fett, Sans */
* {
font-family: "Cantarell", "DejaVu Sans", "Symbols Nerd Font", sans-serif;
font-size: 13px;
font-weight: bold;
}
/* Bar: dunkel, leicht transparent, dünn */
window#waybar {
background-color: rgba(0, 0, 0, 0.85); /* fast schwarz, leicht durchsichtig */
color: #e5e5e5;
border: none;
transition-property: background-color;
transition-duration: 0.3s;
}
/* Versteckt-Status */
window#waybar.hidden {
opacity: 0.2;
}
/* Buttons allgemein etwas schlichter */
button {
border: none;
border-radius: 0;
box-shadow: none;
background: transparent;
}
/* Keine komischen Hover-Effekte */
button:hover {
background: rgba(255, 255, 255, 0.06);
box-shadow: none;
}
/* Workspaces links, GNOME-artig schlicht */
#workspaces {
margin: 0 6px;
}
#workspaces button {
padding: 0 8px;
background-color: transparent;
color: #e5e5e5;
}
#workspaces button.focused {
background-color: rgba(255, 255, 255, 0.10);
}
#workspaces button:hover {
background-color: rgba(255, 255, 255, 0.06);
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
/* Generelles Padding der Module eher dünn */
#clock,
#battery,
#network,
#pulseaudio {
padding: 4px 10px;
}
/* Uhr mittig, etwas größer */
#clock {
font-size: 14px;
color: #ffffff;
}
/* Akku-Styles, inkl. Warnung/Kritisch */
#battery {
color: #e5e5e5;
}
#battery.warning:not(.charging) {
color: #ffa07a;
}
#battery.critical:not(.charging) {
color: #ff6347;
}
/* Netzwerk */
#network {
color: #e5e5e5;
}
#network.disconnected {
color: #ff6347;
}
/* Lautstärke */
#pulseaudio {
color: #e5e5e5;
}
#pulseaudio.muted {
color: #888888;
}
/* Tray (falls du ihn später aktivierst) */
#tray {
background-color: transparent;
}
window#waybar.solo {
background-color: rgba(0, 0, 0, 0.95);
}