Files
2026-04-30 02:11:36 +03:00

125 lines
2.1 KiB
CSS

* {
font-family: Google Sans Flex;
font-size: 16px;
padding: 0px 2px 0px 2px;
}
window#waybar {
background-color: rgba(00, 00, 00, 0.4);
color: white;
border-radius: 0px;
margin: 0px;
padding: 0px;
}
#workspaces button {
color: white;
border-radius: 24px;
}
#workspaces button.active {
transition: all 0.2s ease-in-out;
color: white;
border-radius: 24px;
}
#workspaces button:hover {
color: black;
}
#backlight:hover,
#pulseaudio:hover {
background-color: #5962ff;
transition: all 0.2s ease-in-out;
}
tooltip {
border-radius: 32px;
transition: all 0.2s ease-in-out;
}
tooltip label {
color: white;
transition: all 0.2s ease-in-out;
padding: 12px 20px 12px 20px;
}
#workspaces,
#temperature,
#temperature.warning,
#temperature.critical,
#battery.critical:not(.charging),
#battery.warning:not(.charging),
#battery.charging,
/*#custom-battery,*/
#battery.plugged,
#battery.full,
#custom-logo,
#custom-power,
#custom-mpris,
#pulseaudio.muted,
#pulseaudio,
#network,
#network.disconnected,
#backlight,
#battery,
#network.disconnected,
#cpu,
#memory,
#disk,
#clock {
background-color: rgba(255, 255, 255, 0.1);
transition: all 0.2s ease-in-out;
color: white;
border-radius: 32px;
padding: 1px 12px 0px 12px;
margin: 4px 0px 4px 0px;
}
#workspaces {
padding: 0px 4px 0px 4px;
}
#battery.charging,
#battery.plugged
/*#custom-battery.charging*/ {
background-color: /*#27D301*/#00aa01;
}
@keyframes blink {
to {
background-color: rgba(255, 255, 255, 0.1);
color: white;
}
}
#battery.critical:not(.charging),
#temperature.critical
/*#custom-battery.critical*/ {
background-color: #FF0000;
animation-name: blink;
animation-duration: 1.0s;
animation-timing-function: steps(20);
animation-iteration-count: infinite;
animation-direction: alternate;
}
#battery.warning:not(.charging),
#temperature.warning
/*#custom-battery.warning*/ {
background-color: #FF7300;
}
#battery.full {
background-color: #5962ff;
}
#custom-power {
padding: 1px 16px 0px 12px;
}
#network.disconnected,
#pulseaudio.muted {
background-color: #f2000e;
}