shell-things/conf/waybar/style.css

78 lines
1.2 KiB
CSS
Raw Normal View History

/* https://github.com/jan-warchol/selenized/blob/master/other-apps/wofi/selenized-dark.css */
* {
2023-02-21 16:54:39 +01:00
border: none;
border-radius: 0;
2023-05-18 10:00:17 +02:00
font-family: Noto Sans Mono Regular, monospace;
2023-02-21 16:54:39 +01:00
font-size: 10px;
min-height: 0;
}
window#waybar {
2023-02-21 16:54:39 +01:00
background: #103c48;
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
color: white;
}
tooltip {
2023-02-21 16:54:39 +01:00
background: rgba(43, 48, 59, 0.5);
border: 1px solid rgba(100, 114, 125, 0.5);
}
tooltip label {
2023-02-21 16:54:39 +01:00
color: white;
}
#workspaces button {
2023-02-21 16:54:39 +01:00
padding: 0 5px;
background: #103c48;
color: white;
border-bottom: 3px solid #103c48;
}
#workspaces button.focused {
2023-02-21 16:54:39 +01:00
background: #64727d;
border-bottom: 3px solid white;
}
2023-02-21 16:54:39 +01:00
#mode,
#clock,
#battery {
padding: 0 10px;
}
#mode {
2023-02-21 16:54:39 +01:00
background: #103c48;
border-bottom: 3px solid white;
}
#clock {
2023-02-21 16:54:39 +01:00
background-color: #103c48;
}
#battery {
2023-02-21 16:54:39 +01:00
background-color: #103c48;
color: white;
}
#battery.charging {
2023-02-21 16:54:39 +01:00
color: white;
background-color: #103c48;
}
@keyframes blink {
2023-02-21 16:54:39 +01:00
to {
background-color: #103c48;
color: white;
}
}
#battery.warning:not(.charging) {
2023-02-21 16:54:39 +01:00
background: #f53c3c;
color: white;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}