34 lines
632 B
CSS
34 lines
632 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.6))
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#workspaces button {
|
||
|
padding: 0 5px;
|
||
|
border-bottom: 2px solid transparent;
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
#workspaces button.focused {
|
||
|
border-bottom: 2px solid white;
|
||
|
}
|
||
|
|
||
|
#clock, #battery, #cpu, #memory, #network, #pulseaudio, #custom-spotify, #tray, #mode {
|
||
|
padding: 0 3px;
|
||
|
margin: 0 2px;
|
||
|
}
|
||
|
|