.dotfiles/configs/waybar/style.css

102 lines
1.5 KiB
CSS
Raw Normal View History

2021-11-02 12:19:04 +01:00
* {
2022-06-09 19:29:23 +02:00
border: none;
font-family: Font Awesome, Hack Nerd Font Mono;
2022-04-08 15:47:38 +02:00
font-weight: 600;
2022-06-09 19:29:23 +02:00
font-size: 13px;
2021-11-02 18:26:26 +01:00
}
window#waybar {
2021-11-08 01:29:28 +01:00
background: transparent;
2021-11-02 18:26:26 +01:00
}
window > box {
2022-06-09 19:29:23 +02:00
margin: 6px;
margin-bottom: 0px;
2022-04-23 03:41:04 +02:00
background: #2b303b;
2022-06-09 19:29:23 +02:00
background: @theme_bg_color;
2022-04-06 23:34:14 +02:00
border-radius: 4px;
2022-11-19 18:38:42 +01:00
padding: 7px;
padding-left: 4px;
2022-12-04 15:29:31 +01:00
padding-right: 10px;
2021-11-02 12:19:04 +01:00
}
#workspaces button {
2022-11-19 18:38:42 +01:00
padding: 0px 8px;
2022-06-09 19:29:23 +02:00
color: @theme_fg_color;
background: transparent;
2022-04-06 23:34:14 +02:00
border-radius: 2px;
2021-11-02 12:19:04 +01:00
}
2021-11-02 18:26:26 +01:00
#workspaces button:hover{
2022-06-09 19:29:23 +02:00
background: rgba(255, 255, 255, 0.1);
2021-11-02 12:19:04 +01:00
}
2022-06-20 19:57:01 +02:00
#workspaces button.active,
2022-11-19 18:38:42 +01:00
#workspaces button.focused {
2022-06-09 19:29:23 +02:00
background-color: @theme_fg_color;
color: @theme_bg_color;
2021-11-02 12:19:04 +01:00
}
#clock {
2022-11-19 18:38:42 +01:00
margin: 0px 10px 0px 10px;
2021-11-02 12:19:04 +01:00
}
2021-11-02 18:26:26 +01:00
2021-11-02 12:19:04 +01:00
#custom-power {
color: #cc241d;
}
#battery {
2021-11-08 01:29:28 +01:00
color: #689d6a;
2021-11-02 12:19:04 +01:00
}
#battery.critical {
color: #fb4934;
}
#battery.good {
color: #689d6a;
}
#battery.charging {
color: #b8bb26;
}
#network.wifi {
color: #689d6a;
}
#network.disconnected {
color: #fe8019;
}
2022-11-19 18:38:42 +01:00
#custom-power-consumption,
#custom-power-profile,
#custom-dpi,
#custom-theme,
#pulseaudio,
#battery,
#network {
/* margin: 0px 5px; */
/* padding: 0px 5px; */
padding-right: 10px;
padding-left: 7px;
/* margin-left: 2px; */
border-right: 1px solid rgba(255, 255, 255, 0.2);
/* background: rgba(255, 255, 255, 1); */
/* border-radius: 2px; */
}
#battery {
/* padding-left: 5px; */
border-right: none;
padding-right: 5px;
2021-11-02 12:19:04 +01:00
}
2022-11-19 18:38:42 +01:00
widget:hover {
background-color: red;
2022-03-28 14:12:36 +02:00
}