Files
df/tree/.config/eww/eww.scss
2024-05-09 12:58:52 +02:00

144 lines
2.2 KiB
SCSS

$text: #f6daa8;
$highlight1: #4e8172;
$highlight2: #679a8b;
$background: #23231b;
$lowlight1: black;
$lowlight2: #1d1f21;
$transparent: rgba(#000000, 0.0);
*{
all: unset;
font-family: "Sauce Code Pro Nerd Font Mono";
color: $text;
}
window {
background: rgba($background, 0.85);
border-radius: 15px;
}
.workspace {
font-size: 18px;
font-weight: 300;
border: solid $highlight1 1px;
background: $lowlight1;
border-radius: 30px;
padding-top: 3px;
padding-bottom: 5px;
margin: 8px;
margin-top: 3px;
margin-bottom: 3px;
box-shadow: 0 0px 5px 1px #06060b;
transition: all 1s;
}
.workspace.active {
border: solid $highlight2 2px;
}
.workspaces {
margin-top: 10px;
margin-bottom: 10px;
}
.bottom {
background-image: linear-gradient(to right, $transparent 40%, $highlight1 40%, $highlight1 60%, $transparent 60% );
margin-bottom: 2px;
}
.thingy {
border: solid $highlight1 2px;
border-top: solid $highlight1 1px;
border-bottom: solid $highlight2 3px;
//border-bottom: dotted $highlight1 6px;
color: $highlight1;
background: $lowlight1;
border-radius: 30px;
padding-top: 0.5em;
padding-bottom: 0.4em;
margin-top: 10px;
min-height: 20px;
}
scale trough {
all: unset;
background-color: #22242b;
box-shadow: 0 0px 5px 1px #06060b;
border-radius: 16px;
min-width: 16px;
min-height: 70px;
margin: 0px 0px 0px 0px;
}
.volbox {
transition: all 0.5s;
}
.volbox.active {
background-color: $lowlight2;
}
.volume {
min-height: 150px;
}
.volume trough highlight {
background-image: linear-gradient(to right, $highlight2 30%, $highlight1 50%, $highlight1 100% *50);
border-radius: 10px;
}
.vpn {
font-size: 40px;
color: $highlight1;
border-color: green;
margin: 2px;
margin-top: -10px;
transition: all 0.2s;
}
.vpn label {
margin-top: -5px;
margin-bottom: -5px;
}
.vpn:hover {
background-color: $lowlight2;
}
.vpn:active {
background-color: $highlight1;
}
.vpn.connecting {
border-color: orange;
}
.vpn.disconnected {
border-color: red;
}
.calendar {
background: $lowlight2;
}
.date {
transition: all 0.2s;
}
.date:hover {
background-color: $lowlight2;
}
.date:active {
background-color: $highlight1;
}
.clock {
font-size: 30px;
font-weight: 400;
color: $highlight1;
margin-bottom: -1px;
}
.clock label {
padding: 0;
margin-top: -11px;
}