132 lines
2.0 KiB
SCSS
132 lines
2.0 KiB
SCSS
$text: #f6daa8;
|
|
$highlight1: #4e8172;
|
|
$highlight2: #679a8b;
|
|
$background: #23231b;
|
|
$lowlight1: black;
|
|
$lowlight2: #1d1f21;
|
|
|
|
*{
|
|
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;
|
|
}
|
|
|
|
.boxed {
|
|
border: solid $highlight1 2px;
|
|
border-top: solid $highlight1 1px;
|
|
border-bottom: dotted $highlight1 6px;
|
|
color: $highlight1;
|
|
background: $lowlight1;
|
|
border-radius: 30px;
|
|
padding-top: 0.5em;
|
|
padding-bottom: 0.3em;
|
|
margin-top: 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;
|
|
}
|
|
|
|
.battery {
|
|
margin-top: 20px;
|
|
padding-bottom: 0.6em;
|
|
}
|
|
|
|
.vpn {
|
|
font-size: 40px;
|
|
color: $highlight1;
|
|
border-color: green;
|
|
margin: 2px;
|
|
margin-top: 20px;
|
|
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;
|
|
}
|
|
|
|
.clock {
|
|
font-size: 30px;
|
|
font-weight: 400;
|
|
color: $highlight1;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.clock label {
|
|
padding: 0;
|
|
margin-top: -11px;
|
|
}
|