111 lines
1.3 KiB
CSS
111 lines
1.3 KiB
CSS
@import "mocha.css";
|
|
|
|
* {
|
|
font-family: "FantasqueSansMono Nerd Font", monospace;
|
|
font-size: 15px;
|
|
min-height: 0;
|
|
}
|
|
|
|
#waybar {
|
|
background: @base;
|
|
color: @text;
|
|
border-radius: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#workspaces,
|
|
#workspaces button,
|
|
#custom-haskell,
|
|
#custom-music,
|
|
#tray,
|
|
#backlight,
|
|
#clock,
|
|
#battery,
|
|
#pulseaudio,
|
|
#custom-lock,
|
|
#custom-power {
|
|
border-radius: 0;
|
|
padding: 4px 8px;
|
|
margin: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
#custom-haskell {
|
|
color: @mauve;
|
|
font-size: 16px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
#workspaces {
|
|
background: transparent;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: @overlay1;
|
|
box-shadow: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #eb3489;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
color: @text;
|
|
font-weight: bold;
|
|
box-shadow: none;
|
|
border: none;
|
|
background: transparent;
|
|
}
|
|
|
|
#clock {
|
|
color: @blue;
|
|
}
|
|
|
|
#battery {
|
|
color: @green;
|
|
}
|
|
|
|
#battery.charging {
|
|
color: @green;
|
|
}
|
|
|
|
#battery.warning:not(.charging) {
|
|
color: @red;
|
|
}
|
|
|
|
#backlight {
|
|
color: @yellow;
|
|
}
|
|
|
|
#pulseaudio {
|
|
color: @maroon;
|
|
}
|
|
|
|
#custom-music {
|
|
color: @mauve;
|
|
}
|
|
|
|
#custom-lock {
|
|
color: @lavender;
|
|
}
|
|
|
|
#custom-power {
|
|
color: @red;
|
|
}
|
|
|
|
#custom-haskell:hover,
|
|
#custom-music:hover,
|
|
#tray:hover,
|
|
#backlight:hover,
|
|
#clock:hover,
|
|
#battery:hover,
|
|
#pulseaudio:hover,
|
|
#custom-lock:hover,
|
|
#custom-power:hover {
|
|
font-weight: bold;
|
|
}
|