34 lines
674 B
CSS
34 lines
674 B
CSS
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 13px;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background: -gtk-gradient(
|
|
linear,
|
|
left bottom,
|
|
left top,
|
|
from(rgba(0, 0, 0, 0.9)),
|
|
to(rgba(0, 0, 0, 0.0))
|
|
);
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 2px 5px;
|
|
border-bottom: 2px solid transparent;
|
|
background: transparent;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
border-bottom: 2px solid white;
|
|
}
|
|
|
|
#mpd, #disk, #clock, #battery, #cpu, #memory, #network, #pulseaudio, #tray, #mode {
|
|
padding: 2px 6px;
|
|
margin: 0 3px;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|