Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
432 B

  1. /* Confirm Dialog */
  2. @import "colors.rasi"
  3. * {
  4. background-color: @bg;
  5. text-color: @fg;
  6. font: "Fantasque Sans Mono 10";
  7. }
  8. window {
  9. width: 225px;
  10. padding: 25px;
  11. border: 1px;
  12. border-radius: 0px;
  13. border-color: @ac;
  14. location: center;
  15. y-offset: -2em;
  16. }
  17. entry {
  18. expand: true;
  19. text-color: @ac;
  20. }