1
1
mirror of https://github.com/rywng/dotfiles.git synced 2024-11-24 20:01:49 +08:00
dotfiles/.config/waybar/style.css
2022-02-10 11:04:11 +08:00

75 lines
1.1 KiB
CSS

* {
border: none;
border-radius: 0;
font-size: 14px;
min-height: 0;
color: #c6c8d1;
}
window#waybar {
background: rgba(30, 33, 50, 0.9);
}
#workspaces {
margin: 5px 10px;
}
#workspaces button {
padding: 0 12px;
border-radius: 0;
}
#workspaces button.focused {
background: rgba(160, 147, 199, 0.5);
border-radius: 2px;
}
#workspaces button:hover {
background-color: rgba(173, 160, 211, 0.2);
border-radius: 2px;
}
#workspaces button.urgent {
background-color: #e27878;
border-radius: 2px;
}
#clock,
#battery,
#network,
/* #custom-weather, */
#custom-player {
background-color: #161821;
padding: 0px 10px;
margin: 5px 0px;
}
#clock {
border-radius: 0px 2px 2px 0px;
margin-right: 10px;
}
@keyframes blink {
to {
background-color: #d2d4de;
color: #161821;
}
}
#battery.charging {
color: #b4be82;
}
#battery.critical:not(.charging) {
background-color: #e98989;
animation-name: blink;
animation-duration: 1.0s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#custom-player {
border-radius: 2px 0px 0px 2px;
margin-left: 10px;
}