65 lines
1.1 KiB
CSS
65 lines
1.1 KiB
CSS
@import url('/home/mark/.cache/wal/colors-waybar.css');
|
|
|
|
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
font-family: Font Awesome, "Ubuntu", "Droid", "MesloLGL Nerd Font", Roboto, sans-serif;
|
|
}
|
|
|
|
window#waybar {
|
|
color: @foreground;
|
|
background: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
.modules-right,
|
|
.modules-left {
|
|
margin: 0;
|
|
padding: 2px 10px;
|
|
background-color: alpha(@background, 0.7);
|
|
}
|
|
.modules-right {
|
|
border-radius: 0 0 0 10px;
|
|
}
|
|
.modules-left {
|
|
border-radius: 0 0 10px 0;
|
|
}
|
|
|
|
#workspaces button {
|
|
border-radius: 2px;
|
|
}
|
|
#workspaces button:hover {
|
|
color: @color1;
|
|
animation-duration: 0.5s;
|
|
/* animation-name: blink; */
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
#workspaces button.focused {
|
|
color: @color2;
|
|
}
|
|
#workspaces button.urgent {
|
|
animation-duration: 0.5s;
|
|
/* animation-name: blink; */
|
|
background-color: @color15;
|
|
animation-iteration-count: infinite;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#network,
|
|
#pulseaudio,
|
|
#tray,
|
|
#mode {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
padding-bottom: 3px;
|
|
}
|
|
}
|