49 lines
614 B
CSS
49 lines
614 B
CSS
|
|
/* All things related to the bar itself */
|
|
* {
|
|
font-family: "FiraCode Nerd Font";
|
|
font-size: 14px;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
border: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#waybar {
|
|
background-color: rgba(0,0,0,0);
|
|
transition-property: background-color;
|
|
transition-duration: 0.7s;
|
|
}
|
|
|
|
|
|
#waybar.hidden {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
#window,
|
|
#clock,
|
|
#tray,
|
|
#tags {
|
|
border-radius: 21px;
|
|
padding: 7px 7px;
|
|
margin: 7px 3px 7px;
|
|
background-color: #1e1e2e;
|
|
color: #181825;
|
|
}
|
|
|
|
#tags button {
|
|
border-radius: 21px;
|
|
|
|
}
|
|
|
|
#tags button.focused {
|
|
background-color: #4e4e6e;
|
|
}
|
|
|
|
#window {
|
|
color: #656565;
|
|
}
|
|
|
|
|
|
|