153 lines
2.1 KiB
CSS
153 lines
2.1 KiB
CSS
* {
|
|
border: none;
|
|
border-radius: 0px;
|
|
font-family: "Iosevka Nerd Font";
|
|
font-weight: bold;
|
|
font-size: 13px;
|
|
min-height: 10px;
|
|
}
|
|
|
|
@import "themes/theme.css";
|
|
|
|
window#waybar {
|
|
border-bottom: 1px solid rgba(255,255, 255, 0.2);
|
|
border-left: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-right: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-bottom-right-radius: 10px;
|
|
border-bottom-left-radius: 10px;
|
|
background: @bar-bg;
|
|
}
|
|
|
|
tooltip {
|
|
background: @main-bg;
|
|
color: @main-fg;
|
|
border-radius: 7px;
|
|
border-width: 0px;
|
|
}
|
|
|
|
#cpu,
|
|
#battery,
|
|
#memory,
|
|
#temperature {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
background-color: @wb-act-fg;
|
|
margin: 1px 0px 1px 0px;
|
|
}
|
|
|
|
#cpu {
|
|
border-radius: 10px 0px 0px 10px;
|
|
color: @maroon;
|
|
}
|
|
|
|
#memory {
|
|
color: @peach;
|
|
}
|
|
|
|
#temperature {
|
|
color: @yellow;
|
|
}
|
|
|
|
#memory,
|
|
#temperature {
|
|
border-radius: 0px;
|
|
}
|
|
|
|
#battery {
|
|
border-radius: 0px 10px 10px 0px;
|
|
color: @green;
|
|
}
|
|
|
|
#tray {
|
|
color: @sky;
|
|
}
|
|
|
|
#pulseaudio {
|
|
color: @rosewater;
|
|
}
|
|
|
|
#mpris {
|
|
color: @rosewater;
|
|
}
|
|
|
|
#network {
|
|
color: @flamingo;
|
|
}
|
|
|
|
#bluetooth {
|
|
color: @pink;
|
|
}
|
|
|
|
#custom-wallchange,
|
|
#custom-themechange {
|
|
color: @mauve;
|
|
}
|
|
|
|
#clock {
|
|
color: @mauve;
|
|
}
|
|
|
|
#bluetooth,
|
|
#clock,
|
|
#idle_inhibitor,
|
|
#language,
|
|
#mpris,
|
|
#network,
|
|
#pulseaudio,
|
|
#taskbar,
|
|
#tray,
|
|
#window,
|
|
#custom-icon,
|
|
#workspaces {
|
|
opacity: 1;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.modules-left,
|
|
.modules-right,
|
|
.modules-center {
|
|
color: @main-fg;
|
|
background: @main-bg;
|
|
border-radius: 10px;
|
|
margin-left: 2px;
|
|
margin-right: 2px;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
#custom-icon {
|
|
color: @red;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#custom-apt-update-icon,
|
|
#custom-screenshot
|
|
{
|
|
color: @teal;
|
|
}
|
|
|
|
#workspaces {
|
|
color: @main-fg;
|
|
background: @main-bg;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding-left: 3px;
|
|
padding-right: 3px;
|
|
border-radius: 10px;
|
|
color: @main-fg;
|
|
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.682);
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background: @wb-act-fg;
|
|
color: @lavender;
|
|
margin-left: 3px;
|
|
padding-left: 12px;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
padding-right: 12px;
|
|
margin-right: 3px;
|
|
}
|