103 lines
1.8 KiB
CSS
103 lines
1.8 KiB
CSS
* {
|
|
border-radius: 0;
|
|
/* `otf-font-awesome` is required to be installed for icons */
|
|
font-family: 'Anka/Coder';/*Roboto, Helvetica, Arial, sans-serif; */
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: transparent;
|
|
/* background-color: #002b36; */
|
|
color: #a6baba;
|
|
transition-property: background-color;
|
|
transition-duration: .5s;
|
|
}
|
|
|
|
window#waybar.hidden {
|
|
opacity: 0.2;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 1px 5px 0px;
|
|
background-color: transparent;
|
|
color: #a6baba;
|
|
border-top: 2px solid transparent;
|
|
}
|
|
|
|
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
|
|
#workspaces button:hover {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
box-shadow: inherit;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
background-color: #073642; /*#64727D;*/
|
|
border-top: 2px solid #839496;
|
|
padding: 1px 5px 0px;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: #eb4d4b;
|
|
}
|
|
|
|
#mode {
|
|
padding: 1px 5px 0px;
|
|
background-color: #073642;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#tray,
|
|
#idle_inhibitor,
|
|
#mpd {
|
|
padding: 0 1px 0;
|
|
margin: 0 4px 0;
|
|
color: #a6baba;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#clock {
|
|
padding: 0 0 0;
|
|
}
|
|
|
|
#clock.time {
|
|
min-width: 60px;
|
|
}
|
|
|
|
#battery.charging {
|
|
color: #26A65B;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
}
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
background-color: #f53c3c;
|
|
color: #ffffff;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
|
|
#network.disconnected {
|
|
color: #f53c3c;
|
|
}
|
|
|
|
#temperature.critical {
|
|
background-color: #eb4d4b;
|
|
}
|