style.css 894 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import url("./colors.css");
  2. * {
  3. border: none;
  4. border-radius: 0;
  5. font-family: Iosevka;
  6. font-size: 11pt;
  7. min-height: 0;
  8. }
  9. window#waybar {
  10. opacity: 0.9;
  11. background: @background-darker;
  12. color: @foreground;
  13. border-bottom: 2px solid @background;
  14. }
  15. #workspaces button {
  16. padding: 0 10px;
  17. background: @background;
  18. color: @foreground;
  19. }
  20. #workspaces button:hover {
  21. box-shadow: inherit;
  22. text-shadow: inherit;
  23. background-image: linear-gradient(0deg, @selection, @background-darker);
  24. }
  25. #workspaces button.active {
  26. background-image: linear-gradient(0deg, @purple, @selection);
  27. }
  28. #workspaces button.urgent {
  29. background-image: linear-gradient(0deg, @red, @background-darker);
  30. }
  31. #taskbar button.active {
  32. background-image: linear-gradient(0deg, @selection, @background-darker);
  33. }
  34. #clock {
  35. padding: 0 4px;
  36. background: @background;
  37. }