55 lines
912 B
CSS
55 lines
912 B
CSS
@import "./colors/custom/gruvbox-dark.css";
|
|
|
|
* {
|
|
all: unset;
|
|
font-family:
|
|
"Rubik", "JetBrainsMono Nerd Front Propo", "Noto Sans CJK JP",
|
|
"Noto Sans CJK KR";
|
|
}
|
|
|
|
.tooltip {
|
|
background-color: @bg1;
|
|
color: @fg;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.modules-center {
|
|
background-color: @bg1;
|
|
color: @fg;
|
|
padding: 2px 8px;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
#clock {
|
|
font-weight: 500;
|
|
}
|
|
|
|
#workspaces {
|
|
background-color: @bg2;
|
|
padding: 2px 4px;
|
|
margin: 2px 0;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
#workspaces button {
|
|
background-color: @bg3;
|
|
padding: 2px 4px;
|
|
border-radius: 99px;
|
|
margin: 0 2px;
|
|
transition: all 300ms ease-in-out;
|
|
min-width: 7px;
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
color: @grey0;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background-color: @bg1;
|
|
min-width: 1.5rem;
|
|
font-weight: 500;
|
|
transition: none;
|
|
}
|