100 lines
1.9 KiB
SCSS
100 lines
1.9 KiB
SCSS
* {
|
|
all: unset; // Unsets everything so you can style everything from scratch
|
|
font-family: FontAwesome, Overpass;
|
|
}
|
|
|
|
@import "./style/colors.scss";
|
|
// Global Styles
|
|
.bar {
|
|
// background-color: #3a3a3a;
|
|
// color: #b0b4bc;
|
|
padding: 5px 0px;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
circular-progress {
|
|
color: $color1;
|
|
background-color: $color2;
|
|
}
|
|
.revealer-on-hover {
|
|
background-color: $color9;
|
|
border: 2px solid $color1;
|
|
color: #2C2423;
|
|
border-radius: 8px;
|
|
margin: 0px 2px;
|
|
}
|
|
.revealer-on-hover>widget>box>box,
|
|
.reveal_children>box,
|
|
.rightgroup>label,
|
|
.systray {
|
|
color: $color0;
|
|
margin: 0px 0px;
|
|
padding: 2px;
|
|
}
|
|
.rightgroup>label,
|
|
.systray {
|
|
border-radius: 8px;
|
|
margin: 0px 2px;
|
|
}
|
|
label {
|
|
margin-top: 2px;
|
|
}
|
|
.workspaces {
|
|
background-color: #B87A7A;
|
|
color: #2C2423;
|
|
border-radius: 8px;
|
|
}
|
|
.workspaces button {
|
|
background-color: $color9;
|
|
border: 2px solid $color1;
|
|
color: $color0;
|
|
margin: 0px 0px;
|
|
padding: 2px;
|
|
}
|
|
.workspaces button:hover {
|
|
background-color: $color1;
|
|
transition-property: background-color;
|
|
transition-duration: .25s;
|
|
}
|
|
.workspaces .focused {
|
|
background-color: $color1;
|
|
}
|
|
.workspaces button:first-child {
|
|
border-radius:8px 0px 0px 8px;
|
|
}
|
|
.workspaces button:last-child,
|
|
.revealer-on-hover>widget>box>box:last-child,
|
|
.reveal_children>box:last-child {
|
|
border-radius:0px 8px 8px 0px;
|
|
}
|
|
.workspaces button:only-child,
|
|
.revealer-on-hover>widget>box>box:only-child,
|
|
.reveal_children>box:only-child {
|
|
border-radius:8px;
|
|
}
|