mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
* {
|
|
font-family: JetBrains Mono;
|
|
font-size: 11px;
|
|
border: none;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: #002a35;
|
|
color: #839496;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 5px;
|
|
background-color: transparent;
|
|
border: none;
|
|
border-radius: 0;
|
|
color: #839496;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
color: #cb4b16;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: #b58900;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: #eb4d4b;
|
|
}
|
|
#mode {
|
|
background-color: #888888;
|
|
}
|
|
#language,
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#temperature,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#custom-media,
|
|
#tray,
|
|
#mode,
|
|
#idle_inhibitor,
|
|
#mpd {
|
|
padding: 0 10px;
|
|
color: #839496;
|
|
background-color: #002a35;
|
|
}
|
|
|
|
|
|
/* 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 5px;
|
|
margin: 0 0px;
|
|
min-width: 16px;
|
|
}
|
|
|