mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 10:15:17 +03:00
94 lines
1.5 KiB
CSS
94 lines
1.5 KiB
CSS
* {
|
|
font-family: JetBrains Mono;
|
|
font-size: 8pt;
|
|
border: none;
|
|
font-weight: 400;
|
|
padding: 1 1px;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: #1d2021;
|
|
color: #ebdbb2;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
#workspaces button {
|
|
background-color: transparent;
|
|
border-radius: 2px;
|
|
color: #a89984;
|
|
margin: 4px 2px;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
color: #ebdbb2;
|
|
background-color: #928374;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: #ebdbb2;
|
|
background-color: #282828;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: #cc241d;
|
|
}
|
|
#language,
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#temperature,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#custom-media,
|
|
#tray,
|
|
#mode,
|
|
#idle_inhibitor,
|
|
#mpd {
|
|
padding: 0 4px;
|
|
color: #d79921;
|
|
background-color: #282828;
|
|
border-radius: 2px;
|
|
margin: 4px 2px;
|
|
}
|
|
|
|
#window {
|
|
color: #b8bb26;
|
|
}
|
|
|
|
/* If workspaces is the leftmost module, omit left margin */
|
|
.modules-left > widget:first-child > #workspaces {
|
|
margin-left: 0;
|
|
}
|
|
|
|
/* If workspaces is the rightmost module, omit right margin */
|
|
.modules-right > widget:last-child > #workspaces {
|
|
margin-right: 0;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #888888;
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
label:focus {
|
|
background-color: #000000;
|
|
}
|
|
|
|
#language {
|
|
padding: 0 4px;
|
|
min-width: 16px;
|
|
}
|
|
|