136 lines
2.1 KiB
CSS
136 lines
2.1 KiB
CSS
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 16px;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background: rgba(44,44,44,0.15);
|
|
color: white;
|
|
}
|
|
|
|
#window {
|
|
font-weight: bold;
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
padding: 4px 10px;
|
|
}
|
|
/*
|
|
#workspaces {
|
|
padding: 0 5px;
|
|
}
|
|
*/
|
|
|
|
#workspaces button {
|
|
padding: 0 5px;
|
|
margin-left: 2px;
|
|
margin-right: 2px;
|
|
background: transparent;
|
|
color: white;
|
|
border-top: 2px solid transparent;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #c9545d;
|
|
border-top: 2px solid #c9545d;
|
|
}
|
|
|
|
#mode {
|
|
background: #64727D;
|
|
border-bottom: 3px solid white;
|
|
}
|
|
|
|
/* #clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode {
|
|
padding: 4px 10px;
|
|
margin: 0 4px;
|
|
} */
|
|
|
|
#clock {
|
|
font-weight: bold;
|
|
padding: 2px 10px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
#battery {
|
|
padding: 4px 8px;
|
|
margin-right: 2px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
#battery icon {
|
|
color: red;
|
|
}
|
|
|
|
#battery.charging {
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #ffffff;
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
#battery.warning:not(.charging) {
|
|
color: white;
|
|
animation-name: blink;
|
|
animation-duration: 0.2s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#cpu {
|
|
padding: 4px 10px;
|
|
color: #8be9fd;
|
|
}
|
|
|
|
#memory {
|
|
padding: 4px 10px;
|
|
color: #ffb86c;
|
|
}
|
|
|
|
#network {
|
|
padding: 4px 10px;
|
|
/* margin: 0 4px; */
|
|
color: #d4d4d3;
|
|
}
|
|
|
|
#network.disconnected {
|
|
background: #f53c3c;
|
|
}
|
|
|
|
#pulseaudio {
|
|
padding: 4px 10px;
|
|
/* margin: 0 2px; */
|
|
color: #bd93f9;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
}
|
|
|
|
#custom-spotify {
|
|
color: rgb(102, 220, 105);
|
|
}
|
|
|
|
#tray {
|
|
padding: 2px 5px;
|
|
}
|
|
|
|
#custom-notification {
|
|
font-family: "NotoSansMono Nerd Font";
|
|
}
|
|
/* -----------------------------------------------------
|
|
* Tooltips
|
|
* ----------------------------------------------------- */
|
|
tooltip {
|
|
background: #282a36;
|
|
border: 1px solid #bd93f9;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
tooltip label {
|
|
color: #f8f8f2;
|
|
}
|
|
|