173 lines
2.5 KiB
SCSS
173 lines
2.5 KiB
SCSS
@mixin border {
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
border-radius: 10px;
|
|
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
@mixin border-left {
|
|
padding-left: 10px;
|
|
margin-right: 4px;
|
|
padding-right: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
@mixin border-right {
|
|
margin-left: 4px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
* {
|
|
font-family: "DejaVuSansMNerdFont-Regular";
|
|
border: none;
|
|
opacity: 50;
|
|
border-radius: 10px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
#window {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
border-radius: 10px;
|
|
transition: none;
|
|
color: transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
.modules-center {
|
|
margin: 3px 0 0 0;
|
|
}
|
|
|
|
.modules-right {
|
|
margin: 3px 8px 0 0;
|
|
}
|
|
|
|
.modules-left {
|
|
margin: 3px 0 0 8px;
|
|
}
|
|
|
|
#workspaces {
|
|
background-color: rgba(13, 214, 250, 0.4);
|
|
|
|
button {
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: rgba(159, 255, 255, 0.9);
|
|
}
|
|
|
|
button.focused {
|
|
background-color: rgba(50, 194, 219, 0.7);
|
|
}
|
|
}
|
|
|
|
#network {
|
|
@include border();
|
|
color: #161320;
|
|
background: #bd93f9;
|
|
}
|
|
|
|
#pulseaudio {
|
|
@include border();
|
|
min-width: 23px;
|
|
color: #1a1826;
|
|
background: #fae3b0;
|
|
}
|
|
|
|
#backlight {
|
|
@include border();
|
|
color: #161320;
|
|
background: #f8bd96;
|
|
}
|
|
|
|
#clock {
|
|
@include border();
|
|
color: #161320;
|
|
background: #abe9b3;
|
|
}
|
|
|
|
#memory {
|
|
@include border();
|
|
color: #161320;
|
|
background: #ddb6f2;
|
|
}
|
|
|
|
#privacy {
|
|
@include border();
|
|
color: #161320;
|
|
background: #ddb6f2;
|
|
}
|
|
|
|
#cpu {
|
|
@include border();
|
|
color: #161320;
|
|
background: #96cdfb;
|
|
}
|
|
|
|
#tray {
|
|
@include border-left();
|
|
color: #b5e8e0;
|
|
background: #161320;
|
|
}
|
|
|
|
#idle_inhibitor {
|
|
@include border();
|
|
font-size: 20px;
|
|
color: #161320;
|
|
background: #f28fad;
|
|
}
|
|
|
|
#group-power {
|
|
@include border();
|
|
font-size: 20px;
|
|
transition: none;
|
|
color: #161320;
|
|
background: #f28fad;
|
|
}
|
|
|
|
#custom-notification {
|
|
@include border-right();
|
|
color: #161320;
|
|
background: #f2cdcd;
|
|
font-family: "NotoSansMono Nerd Font";
|
|
}
|
|
|
|
#mode {
|
|
@include border();
|
|
color: #161320;
|
|
background: #ddb6f2;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #bf616a;
|
|
color: #b5e8e0;
|
|
}
|
|
}
|
|
|
|
#battery {
|
|
@include border();
|
|
color: #161320;
|
|
background: #b5e8e0;
|
|
|
|
.critical:not(.charging) {
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
}
|