dotfiles/de/home/.config/eww/eww.scss
2025-03-04 16:00:03 -08:00

107 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 {
padding: 5px 0px;
}
.music {
margin: 10px;
}
.tray_children {
margin: 0px 10px;
}
.leftgroup {
margin-left: 10px;
}
.rightgroup {
margin-right: 10px;
}
.leftgroup>*,
.rightgroup>* {
margin: 10px 0px 10px 5px;
min-width: 25px;
}
scale trough {
background-color: $color1;
min-width: 100px;
min-height: 10px;
border-radius: 4px;
}
scale trough highlight {
background-color: $color2;
border-radius: 4px;
}
circular-progress {
color: $color1;
background-color: $color2;
}
.revealer-on-hover {
background-color: $color9;
border: 2px solid $color1;
color: #2C2423;
border-radius: 8px;
// margin: 10px 0px;
}
.revealer-on-hover>widget>box>box>*,
.reveal_children>* {
padding: 5px;
min-width: 25px;
}
.reveal_children>box,
.reveal_children>button {
border-left: 2px solid $color1;
}
.rightgroup>label,
.rightgroup>button,
.music,
.profile,
.active_window {
background-color: $color9;
border: 2px solid $color1;
color: $color0;
padding: 2px;
border-radius: 8px;
// margin: 10px 0px;
padding: 5px;
}
label {
margin-top: 2px;
// background-color: blue;
}
.workspaces {
background-color: #B87A7A;
color: #2C2423;
border-radius: 8px;
}
.workspaces button {
background-color: $color9;
border: 2px solid $color1;
color: $color0;
// margin: 10px 0px;
padding: 5px;
min-width: 25px;
}
.workspaces button:hover {
background-color: $color1;
transition-property: background-color;
transition-duration: .25s;
}
.workspaces .focused,
button.active {
background-color: $color1;
}
.workspaces button:first-child {
border-radius:8px 0px 0px 8px;
}
.workspaces button:last-child,
.reveal_children>box:last-child {
border-radius:0px 8px 8px 0px;
}
.workspaces button:only-child,
.reveal_children>box:only-child {
border-radius:8px;
}