49 lines
766 B
SCSS
49 lines
766 B
SCSS
* {
|
|
all: unset; // Unsets everything so you can style everything from scratch
|
|
}
|
|
|
|
// Global Styles
|
|
.bar {
|
|
background-color: #1e1e2e;
|
|
color: #cdd6f4;
|
|
padding: 5px;
|
|
font-size: large;
|
|
}
|
|
|
|
// Styles on classes (see eww.yuck for more information)
|
|
|
|
.sidestuff slider {
|
|
all: unset;
|
|
color: #f5c2e7;
|
|
}
|
|
|
|
.metric scale trough highlight {
|
|
all: unset;
|
|
background-color: #f5c2e7;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.metric scale trough {
|
|
all: unset;
|
|
background-color: #585b70;
|
|
border-radius: 50px;
|
|
min-height: 3px;
|
|
min-width: 50px;
|
|
margin-left: 10px;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
tooltip.background {
|
|
background-color: #1e1e2e;
|
|
font-size: large;
|
|
border: 2px solid #f5c2e7;
|
|
}
|
|
|
|
.label-ram {
|
|
font-size: large;
|
|
}
|
|
|
|
.workspaces button:hover {
|
|
color: #f5c2e7;
|
|
}
|