quicklinks.rasi 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. show-icons: false;
  11. font: "Comfortaa 14";
  12. disable-history: false;
  13. sidebar-mode: false;
  14. }
  15. @import "../../../styles/colors.rasi"
  16. * {
  17. background-color: @background;
  18. text-color: @foreground;
  19. }
  20. window {
  21. transparency: "real";
  22. border-radius: 0px;
  23. location: center;
  24. width: 950px;
  25. x-offset: 0px;
  26. y-offset: 0px;
  27. }
  28. prompt {
  29. enabled: true;
  30. padding: 10px;
  31. background-color: @background-light;
  32. text-color: @accent;
  33. border: 2px 2px 2px 2px;
  34. border-radius: 0px;
  35. border-color: @accent;
  36. }
  37. textbox-prompt-colon {
  38. expand: false;
  39. str: " Quick Links ";
  40. background-color: @accent;
  41. text-color: @background;
  42. padding: 12px 10px 0px 10px;
  43. }
  44. inputbar {
  45. children: [ textbox-prompt-colon, prompt ];
  46. spacing: 0px;
  47. background-color: @background;
  48. text-color: @foreground;
  49. expand: false;
  50. border: 0px;
  51. border-radius: 0px;
  52. border-color: @accent;
  53. margin: 0px 0px 0px 0px;
  54. padding: 0px;
  55. position: center;
  56. }
  57. listview {
  58. columns: 6;
  59. lines: 1;
  60. spacing: 15px;
  61. cycle: true;
  62. dynamic: true;
  63. layout: vertical;
  64. }
  65. mainbox {
  66. background-color: @background;
  67. children: [ inputbar, listview ];
  68. spacing: 15px;
  69. margin: 40px;
  70. }
  71. element {
  72. background-color: @background-light;
  73. text-color: @foreground;
  74. orientation: vertical;
  75. border-radius: 0px;
  76. }
  77. element-text {
  78. background-color: inherit;
  79. text-color: inherit;
  80. font: "feather 32";
  81. expand: true;
  82. horizontal-align: 0.5;
  83. vertical-align: 0.5;
  84. margin: 40px 0px 40px 0px;
  85. }
  86. element normal.urgent,
  87. element alternate.urgent {
  88. background-color: @off;
  89. text-color: @background;
  90. border-radius: 0px;
  91. }
  92. element normal.active,
  93. element alternate.active {
  94. background-color: @on;
  95. text-color: @background;
  96. }
  97. element selected {
  98. background-color: @accent;
  99. text-color: @background;
  100. border: 0px;
  101. border-radius: 0px;
  102. border-color: @border;
  103. }
  104. element selected.urgent {
  105. background-color: @on;
  106. text-color: @background;
  107. }
  108. element selected.active {
  109. background-color: @off;
  110. color: @background;
  111. }