Guest User

style.css

a guest
Apr 29th, 2025
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. * {
  2. border: none;
  3. border-radius: 0;
  4. font-family: Tahoma;
  5. font-size: 13px;
  6. font-weight: 500;
  7. }
  8.  
  9.  
  10. window#waybar {
  11. background-image: linear-gradient(180deg, rgba(29,93,221,1) 60%, rgba(57,129,232,1) 85%, rgba(53,125,225,0.9) 90%),
  12. linear-gradient(90deg, rgba(29,93,221,1) 0%, rgba(57,129,232,1) 25%, rgba(28,91,192,1) 50%);
  13. box-shadow:
  14. 1px -1px 2px 1px rgba(255,255,255,0.3) inset;
  15. border-bottom: solid 1px rgba(29,93,221,0.1);
  16. color: #f5f5dc;
  17. }
  18.  
  19. window#waybar.hidden {
  20. opacity: 0.2;
  21. }
  22.  
  23. #workspaces button {
  24. font-style: italic;
  25. font-weight: bold;
  26. padding: 0px 0px;
  27. margin: 0px 0px;
  28. color: #f5f5dc;
  29. border-radius: 2px;
  30. }
  31.  
  32. .modules-right > widget > *:not(#tray):hover, #tray > *:hover {
  33. transition: none;
  34. background: inherit;
  35. box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.25) inset;
  36. border-radius: 2px;
  37. }
  38.  
  39. #workspaces button.active {
  40. background: radial-gradient(circle, rgba(23,139,23,1) 0%, rgba(23,139,23,1) 91%, rgba(77,217,77,0.5592437658657212) 100%);
  41. color: #f5f5dc;
  42. box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.5) inset;
  43. }
  44.  
  45. #workspaces button:hover {
  46. transition: none;
  47. background: inherit;
  48. box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.25) inset;
  49. }
  50.  
  51. #workspaces {
  52. border-bottom: solid 1px rgba(29,93,221,0.1);
  53. background: radial-gradient(circle, rgba(69,171,70,1) 70%, rgba(70,175,65,1) 100%);
  54. margin: 0;
  55. padding: 0px 7px 0px 5px;
  56. border-radius: 0px 9px 9px 00px;
  57. box-shadow:
  58. -7px 0px 7px 0px rgba(0,0,0,0.3) inset,
  59. 2px 3px 3px 3px rgba(132,186,131,1) inset,
  60. -2px 0px 7px 0px rgba(0,0,0,0.5) inset,
  61. 0px 0px 20px 3px rgba(0,0,0,0.25);
  62. font-size: 13px;
  63. text-shadow: rgba(0,0,0,0.5) 0.5px 0.5px 1px;
  64. }
  65.  
  66. #workspaces button.urgent {
  67. background-color: #cc241d;
  68. }
  69.  
  70. widget > * {
  71. margin-top: 3px;
  72. margin-bottom: 3px;
  73. }
  74.  
  75.  
  76.  
  77. .modules-left > widget > * {
  78. margin-left: 12px;
  79. margin-right: 12px;
  80. }
  81.  
  82. .modules-left > widget:first-child > * {
  83. margin-left: 6px;
  84.  
  85. }
  86.  
  87. .modules-left > widget:last-child > * {
  88. margin-right: 18px;
  89. }
  90.  
  91. .modules-right {
  92. background-image: linear-gradient(180deg, rgba(20,142,224,1) 60%, rgba(57,129,232,1) 85%, rgba(53,125,225,0.9) 90%);
  93. box-shadow: 1px -1px 2px 1px rgba(255,255,255,0.5) inset;
  94. border-left: solid 2px rgba(0,0,0,0.2);
  95. border-bottom: solid 1px rgba(255,255,255,0.25);
  96.  
  97.  
  98. text-shadow: rgba(0,0,0,0.5) 0.5px 0.5px 1px;
  99. }
  100.  
  101. .modules-right > widget > * {
  102. margin-top: 0;
  103. margin-bottom: 0;
  104. padding: 0 8px;
  105. margin-left: 0;
  106. margin-right: 0;
  107. color: #f5f5dc;
  108. }
  109.  
  110. .modules-right > widget:first-child > * {
  111. padding-left: 20px;
  112. }
  113.  
  114. #mode {
  115. background: transparent;
  116. color: #fb4934;
  117. }
  118.  
  119. @keyframes blink {
  120. to {
  121. color: #ebdbb2;
  122. }
  123. }
  124.  
  125. #battery.critical:not(.charging) {
  126. animation-name: blink;
  127. animation-duration: 1s;
  128. animation-timing-function: linear;
  129. animation-iteration-count: infinite;
  130. animation-direction: alternate;
  131. }
  132.  
  133. label:focus {
  134. background-color: #282828;
  135. }
  136.  
  137. tooltip {
  138. border-radius: 5px;
  139. background: #504945;
  140. }
  141.  
  142. tooltip label {
  143. color: #ebdbb2;
  144. }
Advertisement
Add Comment
Please, Sign In to add comment