75 lines
986 B
CSS
Raw Normal View History

2024-02-29 21:11:08 +00:00
* {
border: none;
font-family: "Ubuntu Nerd Font";
2024-03-05 12:28:48 +00:00
font-size: 12px;
2024-03-02 16:06:30 +00:00
padding: 0;
margin: 0;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#waybar {
background: transparent;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#waybar.hidden {
2024-02-29 21:11:08 +00:00
opacity: 0.2;
}
2024-03-05 12:28:48 +00:00
#waybar #window {
opacity: 1;
transition: opacity 200ms ease;
}
#waybar.empty #window {
opacity: 0;
}
2024-02-29 21:11:08 +00:00
#clock,
#cpu,
#disk,
#memory,
#mpris,
#network,
2024-03-05 12:28:48 +00:00
#window,
2024-02-29 21:11:08 +00:00
#wireplumber,
2024-03-02 16:06:30 +00:00
#workspaces,
2024-03-02 22:49:00 +00:00
#custom-os,
2024-03-05 12:28:48 +00:00
#custom-gpu,
#custom-updates {
background: rgb(38, 41, 44);
border-radius: 10px;
padding: 4px 8px;
margin: 0px 4px;
margin-bottom: 4px;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#custom-updates.disabled {
opacity: 0;
}
2024-03-03 18:59:08 +00:00
2024-03-02 16:06:30 +00:00
#workspaces button {
padding: 0px 5px;
2024-03-05 12:28:48 +00:00
opacity: 0.8;
2024-03-02 22:49:00 +00:00
background: transparent;
text-shadow: none;
2024-03-03 18:59:08 +00:00
border-radius: 0;
}
#workspaces button.empty {
2024-03-05 12:28:48 +00:00
opacity: 0.2;
2024-02-29 21:11:08 +00:00
}
2024-03-05 12:28:48 +00:00
#workspaces button.active {
opacity: 1.0;
}
2024-03-03 18:59:08 +00:00
#workspaces button.visible {}
#workspaces button.urgent {}
#workspaces button.persistent {}
#workspaces button.hidden {}
2024-02-29 21:11:08 +00:00
2024-03-02 16:06:30 +00:00
#custom-os {
2024-03-05 12:28:48 +00:00
font-size: 150%;
2024-03-02 22:49:00 +00:00
color: rgb(137, 220, 235);
2024-03-05 12:28:48 +00:00
background: transparent;
2024-02-29 21:11:08 +00:00
}