1
0

style.nix 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. { pkgs, lib, ... }:
  2. {
  3. programs.wofi = {
  4. style = ''
  5. * {
  6. border: 0;
  7. font-family: "JetBrainsMono Nerd Font", "Material Symbols Rounded";
  8. font-size: 12px;
  9. font-weight: 700;
  10. }
  11. window {
  12. background-color: rgba(10,1,1,0.999);
  13. /*border-radius: 12px;*/
  14. margin: 0px;
  15. }
  16. #outer-box {
  17. margin: 0px;
  18. padding: 0px;
  19. border: none;
  20. background-color: transparent;
  21. }
  22. #input {
  23. margin: 14px;
  24. padding: 12px 16px;
  25. color: #eeeeee;
  26. font-weight: 600;
  27. background: rgb(20,2,2);
  28. border-radius: 12px;
  29. box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  30. }
  31. #scroll {
  32. margin: 0px;
  33. border: none;
  34. }
  35. #inner-box {
  36. margin: 0px 10px 10px 10px;
  37. border: none;
  38. background-color: transparent;
  39. }
  40. #entry {
  41. padding: 12px 14px;
  42. margin: 4px 0px;
  43. border-radius: 12px;
  44. background-color: transparent;
  45. transition: all 120ms ease;
  46. }
  47. #entry:selected {
  48. background: rgb(25,2,2);
  49. }
  50. #text {
  51. margin-left: 12px;
  52. color: #eaeaea;
  53. }
  54. #text:selected {
  55. color: #ffffff;
  56. }
  57. #img {
  58. margin-right: 10px;
  59. }
  60. scrollbar {
  61. opacity: 0;
  62. }
  63. '';
  64. };
  65. }