63 lines
1.1 KiB
SCSS
63 lines
1.1 KiB
SCSS
* {
|
|
all: unset; // Unsets everything so you can style everything from scratch
|
|
font-family: FontAwesome, Overpass;
|
|
}
|
|
// Global Styles
|
|
.bar {
|
|
background-color: #3a3a3a;
|
|
color: #b0b4bc;
|
|
padding: 5px 0px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
.label-ram {
|
|
font-size: large;
|
|
}
|
|
|
|
.workspaces button:hover {
|
|
color: #D35D6E;
|
|
}
|
|
.workspaces {
|
|
background-color: #B87A7A;
|
|
color: #2C2423;
|
|
border-radius: 8px;
|
|
}
|
|
.workspaces button {
|
|
background-color: red;
|
|
color: #fff;
|
|
margin: 0px 0px;
|
|
padding: 2px;
|
|
}
|
|
.workspaces button:first-child {
|
|
border-radius:8px 0px 0px 8px;
|
|
}
|
|
.workspaces button:last-child {
|
|
border-radius:0px 8px 8px 0px;
|
|
}
|
|
.workspaces button:only-child {
|
|
border-radius:8px;
|
|
}
|