mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-24 09:12:09 +00:00
52 lines
909 B
CSS
52 lines
909 B
CSS
* {
|
|
/* `otf-font-awesome` is required to be installed for icons */
|
|
font-family: Iosevka, FontAwesome, Roboto, Helvetica, Arial, sans-serif;
|
|
border-radius: 5px;
|
|
margin: 1px 2px;
|
|
min-height: 0;
|
|
}
|
|
|
|
#waybar {
|
|
background-color: #eeffff;
|
|
color: #21294b;
|
|
transition-property: background-color;
|
|
transition-duration: .5s;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
font-family: "Cantarell", "Font Awesome 5 Pro";
|
|
/*border: 1px solid rgba(100, 114, 125, 0.5);*/
|
|
}
|
|
|
|
/* Module */
|
|
#clock,
|
|
#cpu,
|
|
#memory,
|
|
#network,
|
|
#pulseaudio,
|
|
#tray,
|
|
#mpd,
|
|
#disk,
|
|
#battery,
|
|
#backlight,
|
|
#workspaces {
|
|
padding-left: 0.7em;
|
|
padding-right: 0.7em;
|
|
/*background-color: #1c242c;*/
|
|
margin: 1px 2px;
|
|
}
|
|
|
|
#workspaces button.active:hover {
|
|
color: #141c21;
|
|
}
|
|
|
|
#network.disconnected {
|
|
color: #e06a70;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #e06a70;
|
|
}
|
|
|
|
#mpd.stopped {
|
|
color: #e06a70;
|
|
}
|