|
- * {
- border: none;
- border-radius: 0;
- font-family: "Fantasque Sans Mono", sans-serif;
- font-size: 13px;
- min-height: 0px;
- }
-
- window#waybar {
- background: rgba(43, 48, 59, 0.5);
- border-bottom: 3px solid rgba(100, 114, 125, 0.5);
- color: white;
- }
-
- #workspaces button {
- padding: 0 5px;
- background: transparent;
- color: white;
- border-bottom: 3px solid transparent;
- }
-
- #workspaces button.focused {
- background: #64727D;
- border-bottom: 3px solid white;
- }
-
- #mode {
- background: #64727D;
- border-bottom: 3px solid white;
- }
-
- #clock, #battery, #cpu, #memory, #network, #pulseaudio, #tray, #mode {
- padding: 0 8px;
- margin: 0 4px;
- }
-
- #clock {
- background: rgba(100, 114, 125, 0.5);
- }
-
- #battery {
- background: rgba(255, 255, 255, 0.5);
- color: black;
- }
-
- #battery.charging {
- color: white;
- background: rgba(38, 166, 91, 0.5)
- }
-
- @keyframes blink {
- to {
- background: rgba(255, 255, 255, 0.5);
- color: black;
- }
- }
-
- #battery.warning:not(.charging) {
- background: rgba(245, 166, 60, 0.5);
- color: white;
- }
-
- #battery.critical:not(.charging) {
- background: rgba(245, 60, 60, 0.5);
- color: white;
- animation-name: blink;
- animation-duration: 0.5s;
- animation-timing-function: linear;
- animation-iteration-count: infinite;
- animation-direction: alternate;
- }
-
- #cpu {
- background: rgba(46, 204, 113, 0.5);
- /*color: black;*/
- }
-
- #memory {
- background: rgba(115, 89, 182, 0.5);
- }
-
- #network {
- background: rgba(41, 128, 185, 0.5);
- }
-
- #network.disconnected {
- background: rgba(245, 60, 60, 0.5);
- }
-
- #pulseaudio {
- background: rgba(241, 196, 15, 0.5);
- /*color: black;*/
- }
-
- #pulseaudio.muted {
- background: rgba(144, 177, 177, 0.5);
- color: #2a5c45;
- }
-
- #tray {
- background: transparent;
- }
|