92 lines
1.2 KiB
CSS
92 lines
1.2 KiB
CSS
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: Hack Nerd Font;
|
|
font-size: 15px;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
color: white;
|
|
}
|
|
|
|
#window {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 5px 0 10px;
|
|
background: transparent;
|
|
color: white;
|
|
border-top: 2px solid transparent;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: #00ff00;
|
|
border-top: 2px solid #00ff00;
|
|
}
|
|
|
|
#mode {
|
|
background: #64727D;
|
|
border-bottom: 3px solid white;
|
|
padding: 0 3px;
|
|
}
|
|
|
|
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #window {
|
|
padding: 0 3px;
|
|
margin: 0 2px;
|
|
}
|
|
|
|
#clock {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#battery {
|
|
}
|
|
|
|
#battery icon {
|
|
color: red;
|
|
}
|
|
|
|
#battery.charging {
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #ffffff;
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
#battery.warning:not(.charging) {
|
|
color: white;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#cpu {
|
|
}
|
|
|
|
#memory {
|
|
}
|
|
|
|
#network {
|
|
}
|
|
|
|
#network.disconnected {
|
|
background: #f53c3c;
|
|
}
|
|
|
|
#pulseaudio {
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
}
|
|
|
|
#tray {
|
|
}
|
|
|