nix-config/home-manager/dotfiles/waybar/style.css

37 lines
652 B
CSS
Raw Normal View History

2025-01-25 13:18:45 +01:00
:root {
--primary-color: #7b002c;
}
2024-10-22 10:54:12 +02:00
* {
font-family: "CodeNewRoman Nerd Font";
font-weight: bold;
2024-12-08 10:11:34 +01:00
font-size: 12px;
2025-01-19 18:30:54 +01:00
color: #000;
2024-10-22 10:54:12 +02:00
}
window#waybar {
2025-01-25 13:18:45 +01:00
margin: 12px 24px;
2025-01-19 18:30:54 +01:00
background-color: #fff;
2025-01-25 13:18:45 +01:00
border: solid 2px var(--primary-color);
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;
2024-10-22 10:54:12 +02:00
}
2025-01-25 13:18:45 +01:00
#clock,
#battery,
#cpu,
#wireplumber,
#bluetooth {
2024-10-22 10:54:12 +02:00
padding: 0 12px;
}
#workspaces button.focused {
2025-01-25 13:18:45 +01:00
border-bottom: solid 2px var(--primary-color);
border-radius: 0;
2024-10-22 10:54:12 +02:00
}
2024-12-08 10:11:34 +01:00
#workspaces {
padding: 4px 0;
}