dotfiles/private_dot_config/waybar/style.css
array-in-a-matrix 1b321f5dfa update
2023-01-24 16:50:50 -05:00

82 lines
1.5 KiB
CSS

@import "../../.cache/wal/colors-waybar.css";
/*
@foreground
@background
@cursor
@color[0-15]
*/
* {
border: none;
border-radius: 4px;
font-family: Hack, Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
margin: 1px 4px;
}
window#waybar {
background-color: @background;
border-bottom: 3px solid @foreground;
color: @color7;
transition-property: background-color;
transition-duration: .5s;
border-radius: 0;
}
window#waybar.hidden {
opacity: 0.2;
}
button {
background-color: transparent;
color: @color7;
box-shadow: inset 0 -3px transparent;
}
button:hover {
background: @color11;
box-shadow: inset 0 -3px @color7;
}
button.focused {
background-color: @color1;
box-shadow: inset 0 -3px @color7;
}
#idle_inhibitor, #network, #pulseaudio, #battery, #clock {
background-color: @color1;
box-shadow: inset 0 -3px @color7;
padding: 0.3em 0.7em;
margin-bottom: 3px;
}
#mode {
background-color: @color11;
box-shadow: inset 0 -3px @color7;
padding: 0.3em 0.7em;
margin-bottom: 3px;
}
@keyframes blink {
to {
background-color: @color7;
color: @color10;
}
}
*.urgent, *.critical:not(.charging) {
background-color: @color14;
color: @color7;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#custom-notification {
font-family: "NotoSansMono Nerd Font";
}