Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

103 řádky
1.8 KiB

  1. * {
  2. border: none;
  3. border-radius: 0;
  4. font-family: "Fantasque Sans Mono", sans-serif;
  5. font-size: 13px;
  6. min-height: 0px;
  7. }
  8. window#waybar {
  9. background: rgba(43, 48, 59, 0.5);
  10. border-bottom: 3px solid rgba(100, 114, 125, 0.5);
  11. color: white;
  12. }
  13. #workspaces button {
  14. padding: 0 5px;
  15. background: transparent;
  16. color: white;
  17. border-bottom: 3px solid transparent;
  18. }
  19. #workspaces button.focused {
  20. background: #64727D;
  21. border-bottom: 3px solid white;
  22. }
  23. #mode {
  24. background: #64727D;
  25. border-bottom: 3px solid white;
  26. }
  27. #clock, #battery, #cpu, #memory, #network, #pulseaudio, #tray, #mode {
  28. padding: 0 8px;
  29. margin: 0 4px;
  30. }
  31. #clock {
  32. background: rgba(100, 114, 125, 0.5);
  33. }
  34. #battery {
  35. background: rgba(255, 255, 255, 0.5);
  36. color: black;
  37. }
  38. #battery.charging {
  39. color: white;
  40. background: rgba(38, 166, 91, 0.5)
  41. }
  42. @keyframes blink {
  43. to {
  44. background: rgba(255, 255, 255, 0.5);
  45. color: black;
  46. }
  47. }
  48. #battery.warning:not(.charging) {
  49. background: rgba(245, 166, 60, 0.5);
  50. color: white;
  51. }
  52. #battery.critical:not(.charging) {
  53. background: rgba(245, 60, 60, 0.5);
  54. color: white;
  55. animation-name: blink;
  56. animation-duration: 0.5s;
  57. animation-timing-function: linear;
  58. animation-iteration-count: infinite;
  59. animation-direction: alternate;
  60. }
  61. #cpu {
  62. background: rgba(46, 204, 113, 0.5);
  63. /*color: black;*/
  64. }
  65. #memory {
  66. background: rgba(115, 89, 182, 0.5);
  67. }
  68. #network {
  69. background: rgba(41, 128, 185, 0.5);
  70. }
  71. #network.disconnected {
  72. background: rgba(245, 60, 60, 0.5);
  73. }
  74. #pulseaudio {
  75. background: rgba(241, 196, 15, 0.5);
  76. /*color: black;*/
  77. }
  78. #pulseaudio.muted {
  79. background: rgba(144, 177, 177, 0.5);
  80. color: #2a5c45;
  81. }
  82. #tray {
  83. background: transparent;
  84. }