2021-08-16 22:21:31 +08:00
|
|
|
* {
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
2022-03-29 18:02:47 +08:00
|
|
|
font-size: 13px;
|
2021-08-16 22:21:31 +08:00
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
@import "serenade.css";
|
|
|
|
|
2021-08-16 22:21:31 +08:00
|
|
|
window#waybar {
|
2022-03-29 18:02:47 +08:00
|
|
|
background: @background;
|
2022-03-29 18:07:55 +08:00
|
|
|
border-bottom: 2px solid @aqua;
|
2022-03-29 18:02:47 +08:00
|
|
|
color: @white_b;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces {
|
2021-09-04 15:36:57 +08:00
|
|
|
margin: 5px 10px;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
2022-03-29 18:02:47 +08:00
|
|
|
|
2021-08-16 22:21:31 +08:00
|
|
|
#workspaces button {
|
2022-03-29 18:02:47 +08:00
|
|
|
padding: 0 5px;
|
|
|
|
background: transparent;
|
|
|
|
color: @foreground;
|
|
|
|
border-bottom: 2px solid transparent;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.focused {
|
2022-03-29 18:02:47 +08:00
|
|
|
background: @foreground;
|
|
|
|
color: @selection_background;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces button.urgent {
|
2022-03-29 18:02:47 +08:00
|
|
|
background-color: @magenta;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
#mode,
|
2021-08-16 22:21:31 +08:00
|
|
|
#clock,
|
2022-03-29 18:02:47 +08:00
|
|
|
#battery {
|
|
|
|
padding: 0 10px;
|
|
|
|
margin: 0 5px;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
|
2021-08-16 22:21:31 +08:00
|
|
|
#clock {
|
2022-04-28 19:17:03 +08:00
|
|
|
background-color: @blue;
|
2022-03-29 18:02:47 +08:00
|
|
|
color: @background;
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery {
|
2022-04-28 19:17:03 +08:00
|
|
|
background-color: @aqua;
|
2022-03-29 18:02:47 +08:00
|
|
|
color: @background;
|
|
|
|
}
|
|
|
|
|
|
|
|
#battery.charging {
|
|
|
|
color: @background;
|
|
|
|
background-color: @green;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
to {
|
2022-03-29 18:02:47 +08:00
|
|
|
background-color: @white_b;
|
|
|
|
color: @background;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 19:17:03 +08:00
|
|
|
#battery.warning:not(.charging) {
|
|
|
|
background: @red;
|
|
|
|
color: @white_b;
|
|
|
|
animation-name: blink;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
animation-timing-function: linear;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
|
|
|
}
|
2022-03-29 18:02:47 +08:00
|
|
|
|
|
|
|
#clock,
|
|
|
|
#battery,
|
|
|
|
#network,
|
|
|
|
#custom-notification,
|
2022-04-28 19:17:03 +08:00
|
|
|
#tray,
|
2022-03-29 18:02:47 +08:00
|
|
|
#custom-player {
|
|
|
|
padding: 0px 10px;
|
|
|
|
margin: 0px 5px;
|
2021-08-16 22:21:31 +08:00
|
|
|
}
|
|
|
|
|
2022-03-29 18:02:47 +08:00
|
|
|
#clock {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|