80 lines
1.3 KiB
SCSS
80 lines
1.3 KiB
SCSS
|
|
* {
|
||
|
|
all: unset; //Unsets everything so you can style everything from scratch
|
||
|
|
}
|
||
|
|
|
||
|
|
//Global Styles
|
||
|
|
.bar {
|
||
|
|
background-color: #1a1a1a;
|
||
|
|
color: #b0b4bc;
|
||
|
|
padding: 2px;
|
||
|
|
font-family: DaddyTimeMono Nerd Font;
|
||
|
|
font-size: 13;
|
||
|
|
opacity: 1.0;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Styles on classes (see eww.yuck for more information)
|
||
|
|
|
||
|
|
.sidestuff slider {
|
||
|
|
all: unset;
|
||
|
|
color: #ffd5cd;
|
||
|
|
}
|
||
|
|
|
||
|
|
.metric scale trough highlight {
|
||
|
|
all: unset;
|
||
|
|
background-color: #D35D6E;
|
||
|
|
color: #000000;
|
||
|
|
border-radius: 10px;
|
||
|
|
}
|
||
|
|
.metric scale trough {
|
||
|
|
all: unset;
|
||
|
|
background-color: #4e4e4e;
|
||
|
|
border-radius: 50px;
|
||
|
|
min-height: 3px;
|
||
|
|
min-width: 50px;
|
||
|
|
margin-left: 10px;
|
||
|
|
margin-right: 20px;
|
||
|
|
}
|
||
|
|
.metric scale trough highlight {
|
||
|
|
all: unset;
|
||
|
|
background-color: #D35D6E;
|
||
|
|
color: #000000;
|
||
|
|
border-radius: 2px;
|
||
|
|
}
|
||
|
|
.metric scale trough {
|
||
|
|
all: unset;
|
||
|
|
background-color: #4e4e4e;
|
||
|
|
border-radius: 2px;
|
||
|
|
min-height: 9px;
|
||
|
|
min-width: 50px;
|
||
|
|
margin-left: 4px;
|
||
|
|
margin-right: 4px;
|
||
|
|
}
|
||
|
|
.label-ram {
|
||
|
|
font-size: large;
|
||
|
|
}
|
||
|
|
|
||
|
|
.workspaces button {
|
||
|
|
padding: 2px;
|
||
|
|
}
|
||
|
|
.workspaces button:hover {
|
||
|
|
color: #D35D6E;
|
||
|
|
}
|
||
|
|
.ws-button-mine {
|
||
|
|
color: #4e4e4e;
|
||
|
|
background-color: #ffd5ca;
|
||
|
|
}
|
||
|
|
.ws-button-visible {
|
||
|
|
color: #D35D6E;
|
||
|
|
background-color: #4e4e4e;
|
||
|
|
}
|
||
|
|
.ws-button-urgent {
|
||
|
|
color: #ffd5ca;
|
||
|
|
background-color: #D35D6E;
|
||
|
|
}
|
||
|
|
.ws-button-busy {
|
||
|
|
color: #D35D6E;
|
||
|
|
}
|
||
|
|
.ws-button {
|
||
|
|
color: #b0b4bc;
|
||
|
|
}
|