34 lines
No EOL
791 B
CSS
34 lines
No EOL
791 B
CSS
@import url("./theme.css");
|
|
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: Iosevka;
|
|
font-size: 11pt;
|
|
min-height: 0;
|
|
}
|
|
window#waybar {
|
|
opacity: 0.9;
|
|
background: @background-darker;
|
|
color: @foreground;
|
|
border-bottom: 2px solid @background;
|
|
}
|
|
#workspaces button {
|
|
padding: 0 10px;
|
|
background: @background;
|
|
color: @foreground;
|
|
}
|
|
#workspaces button:hover {
|
|
box-shadow: inherit;
|
|
text-shadow: inherit;
|
|
background-image: linear-gradient(0deg, @selection, @background-darker);
|
|
}
|
|
#workspaces button.active {
|
|
background-image: linear-gradient(0deg, @purple, @selection);
|
|
}
|
|
#taskbar button.active {
|
|
background-image: linear-gradient(0deg, @selection, @background-darker);
|
|
}
|
|
#clock {
|
|
padding: 0 4px;
|
|
background: @background;
|
|
} |