85 lines
1.3 KiB
CSS
85 lines
1.3 KiB
CSS
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: "Ubuntu Nerd Font";
|
|
font-size: 13px;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
color: white;
|
|
}
|
|
|
|
#window {
|
|
font-weight: bold;
|
|
font-family: "Ubuntu";
|
|
}
|
|
/*
|
|
#workspaces {
|
|
padding: 0 5px;
|
|
}
|
|
*/
|
|
|
|
#workspaces button {
|
|
padding: 0 5px;
|
|
background: transparent;
|
|
color: white;
|
|
border-top: 2px solid transparent;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #f88;
|
|
border: 1px solid #f88;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#mode {
|
|
background: #64727D;
|
|
border-bottom: 3px solid white;
|
|
}
|
|
|
|
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode, #custom-VPN, #custom-bandwidth {
|
|
padding: 0 3px;
|
|
margin: 0 2px;
|
|
border-left: 1px solid #777;
|
|
}
|
|
|
|
#clock {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#battery icon {
|
|
color: red;
|
|
}
|
|
|
|
#battery.charging {
|
|
color: orange;
|
|
}
|
|
|
|
@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;
|
|
}
|
|
|
|
#custom-VPN {
|
|
/*padding: 5px 10px;*/
|
|
}
|
|
|
|
#custom-VPN.down, #network.disconnected {
|
|
border-radius: 5px;
|
|
background-color: #f33;
|
|
}
|
|
|