mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-31 03:19:37 +01:00
33 lines
576 B
CSS
33 lines
576 B
CSS
@define-color primary rgba(123, 0, 44, 1);
|
|
|
|
* {
|
|
font-family: "CodeNewRoman Nerd Font";
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
color: #000;
|
|
}
|
|
|
|
window#waybar {
|
|
margin: 12px 24px;
|
|
background-color: #fff;
|
|
border: solid 2px @primary;
|
|
min-height: 14px; /* set waybar's height to 14px */
|
|
font-size: 14px; /* set only the font size to be bigger, which in turn will adjust the height of other elements */
|
|
border-radius: 12px;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#wireplumber,
|
|
#bluetooth {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
}
|
|
|
|
#workspaces {
|
|
padding: 4px 0;
|
|
}
|