49 lines
630 B
CSS
Raw Normal View History

2024-02-29 21:11:08 +00:00
* {
border: none;
font-family: "Ubuntu Nerd Font";
2024-03-02 16:06:30 +00:00
font-size: 14px;
padding: 0;
margin: 0;
2024-02-29 21:11:08 +00:00
}
window#waybar {
background: transparent;
}
window#waybar.hidden {
opacity: 0.2;
}
#clock,
#cpu,
#disk,
#memory,
#mpris,
#network,
#wireplumber,
2024-03-02 16:06:30 +00:00
#workspaces,
2024-03-02 22:49:00 +00:00
#custom-os,
#custom-gpu {
2024-03-02 16:06:30 +00:00
color: @fg;
background: @bg;
2024-03-02 22:49:00 +00:00
margin: 0 8px;
2024-02-29 21:11:08 +00:00
transition: none;
}
2024-03-02 16:06:30 +00:00
#workspaces button {
padding: 0px 5px;
color: rgba(255, 255, 255, 0.5);
2024-03-02 22:49:00 +00:00
background: transparent;
text-shadow: none;
2024-02-29 21:11:08 +00:00
}
2024-03-02 22:49:00 +00:00
#workspaces button:hover,
2024-03-02 16:06:30 +00:00
#workspaces button.active {
color: rgba(255, 255, 255, 1.0);
2024-02-29 21:11:08 +00:00
}
2024-03-02 16:06:30 +00:00
#custom-os {
2024-02-29 21:11:08 +00:00
font-size: 24px;
2024-03-02 22:49:00 +00:00
color: rgb(137, 220, 235);
2024-02-29 21:11:08 +00:00
}