Advertisement
icon_bishop

wofi style.css

Dec 10th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. /* Imported from colors-rofi-dark.rasi */
  2. @import '~/.cache/wal/colors.css';
  3.  
  4. /* General styles */
  5. * {
  6. font-family: Orbitron ;
  7. font-size: 17px;
  8. /* box-size: border-box;*/
  9. margin: 0;
  10. padding: 0;
  11. }
  12.  
  13. /* Window styles */
  14. window {
  15. margin: 0;
  16. border: 5px solid ${color0};
  17. background-color: ${color0};
  18. border-radius: 15px;
  19. }
  20.  
  21. /* Input styles */
  22. #input {
  23. padding: 4px;
  24. margin: 10px 4px 2px;
  25. padding-left: 20px;
  26. border: none;
  27. color: ${color10};
  28. font-weight: bold;
  29. background-color: ${color0};
  30. border-radius: 15px;
  31. outline: none;
  32. }
  33.  
  34. #input:focus {
  35. border: 0;
  36. margin-bottom: 0;
  37. }
  38.  
  39. /* Inner box styles */
  40. #inner-box {
  41. margin: 4px;
  42. border: 10px solid #1e1e2e;
  43. color: ${color0};
  44. font-weight: bold;
  45. background-color: ${color0};
  46. border-radius: 15px;
  47. }
  48.  
  49. /* Outer box styles */
  50. #outer-box {
  51. margin: 0;
  52. border: none;
  53. border-radius: 15px;
  54. background-color: ${color0};
  55. }
  56.  
  57. /* Scroll styles */
  58. #scroll {
  59. margin: 5px 0;
  60. border: none;
  61. border-radius: 15px;
  62. }
  63.  
  64. /* Selected image styles */
  65. #img:selected {
  66. background-color: ${color7};
  67. border-radius: 15px;
  68. }
  69.  
  70. /* Selected text styles */
  71. #text:selected {
  72. color: ${color3};
  73. margin: 0;
  74. border: none;
  75. border-radius: 0px;
  76. background-color: ${color5};
  77. }
  78.  
  79. /* Entry styles */
  80. #entry {
  81. margin: 0;
  82. border: none;
  83. border-radius: 0px;
  84. box-sizing: border-box;
  85. background-color: transparent;
  86. }
  87.  
  88. #entry:selected {
  89. margin: 0;
  90. border: ${color5};
  91. border-radius: 15px;
  92. background-color: ${color13};
  93. outline: none;
  94. }
  95.  
Tags: wofi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement