75 lines
986 B
CSS
75 lines
986 B
CSS
* {
|
|
border: none;
|
|
font-family: "Ubuntu Nerd Font";
|
|
font-size: 12px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#waybar {
|
|
background: transparent;
|
|
}
|
|
|
|
#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
#waybar #window {
|
|
opacity: 1;
|
|
transition: opacity 200ms ease;
|
|
}
|
|
|
|
#waybar.empty #window {
|
|
opacity: 0;
|
|
}
|
|
|
|
#clock,
|
|
#cpu,
|
|
#disk,
|
|
#memory,
|
|
#mpris,
|
|
#network,
|
|
#window,
|
|
#wireplumber,
|
|
#workspaces,
|
|
#custom-os,
|
|
#custom-gpu,
|
|
#custom-updates {
|
|
background: rgb(38, 41, 44);
|
|
border-radius: 10px;
|
|
padding: 4px 8px;
|
|
margin: 0px 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
#custom-updates.disabled {
|
|
opacity: 0;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0px 5px;
|
|
opacity: 0.8;
|
|
background: transparent;
|
|
text-shadow: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
#workspaces button.visible {}
|
|
#workspaces button.urgent {}
|
|
#workspaces button.persistent {}
|
|
#workspaces button.hidden {}
|
|
|
|
#custom-os {
|
|
font-size: 150%;
|
|
color: rgb(137, 220, 235);
|
|
background: transparent;
|
|
}
|