dotfiles/waybar/style.css

95 lines
1.3 KiB
CSS
Raw Normal View History

2024-03-15 16:00:51 -05:00
@import "latte.css";
2024-01-16 18:33:53 -06:00
* {
border: none;
border-radius: 0px;
min-height: 0;
2024-02-27 11:32:33 -06:00
font-weight: bold;
2024-01-16 22:40:16 -06:00
font-size: 14px;
2024-01-16 18:33:53 -06:00
font-family: "Hack Nerd Font";
}
window#waybar {
2024-03-15 16:00:51 -05:00
background: transparent;
color: @peach;
/*border-bottom: 4px solid @crust;*/
2024-02-27 11:32:33 -06:00
border-radius: 0px;
padding: 4px;
}
window#waybar.hidden {
opacity: 0.2;
2024-01-16 18:33:53 -06:00
}
2024-01-16 22:40:16 -06:00
#workspaces {
margin: 4px 0;
border-radius: 5px;
background: transparent;
2024-01-16 18:33:53 -06:00
}
#workspaces button {
2024-01-16 22:40:16 -06:00
color: @overlay0;
background: transparent;
transition: all 0.1s ease;
2024-01-16 18:33:53 -06:00
}
2024-01-16 22:40:16 -06:00
#workspaces button.active {
2024-03-15 16:00:51 -05:00
color: @peach;
border-top: 2px solid @peach;
2024-01-16 22:40:16 -06:00
transition: all 0.1s ease;
2024-01-16 18:33:53 -06:00
}
2024-02-27 11:32:33 -06:00
.modules-left,
.modules-center,
.modules-right {
2024-03-15 16:00:51 -05:00
padding: 4px;
2024-02-27 11:32:33 -06:00
}
2024-03-15 16:00:51 -05:00
#battery,
2024-01-16 18:33:53 -06:00
#clock,
#cpu,
#disk,
#memory,
#network,
#temperature,
#tray,
2024-01-16 22:40:16 -06:00
#pulseaudio,
2024-01-16 18:33:53 -06:00
#custom-poweroff,
2024-01-16 22:40:16 -06:00
#custom-weather {
2024-02-27 11:32:33 -06:00
background-color: @base;
border-radius: 6px;
margin-left: 6px;
margin-right: 6px;
2024-01-16 18:33:53 -06:00
padding: 0 10px;
}
2024-03-15 16:00:51 -05:00
/*
2024-01-16 22:40:16 -06:00
#pulseaudio {
2024-01-16 18:33:53 -06:00
color: @sapphire;
}
#disk {
color: @peach;
}
#memory {
color: @teal;
}
#cpu {
color: @lavender;
}
#temperature {
color: @sky;
}
2024-03-15 16:00:51 -05:00
*/
2024-02-27 11:32:33 -06:00
#workspaces button.active {
background-color: alpha(@peach, 0.2);
border-radius: 2px;
margin-bottom: 2px;
transition: all 0.1s ease;
}