25 lines
447 B
Plaintext
25 lines
447 B
Plaintext
|
/* Confirm Dialog */
|
||
|
|
||
|
@import "colors.rasi"
|
||
|
|
||
|
* {
|
||
|
background-color: @background;
|
||
|
text-color: @foreground;
|
||
|
font: "Comfortaa 12";
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
width: 225px;
|
||
|
padding: 25px;
|
||
|
border: 0px;
|
||
|
border-radius: 0px;
|
||
|
border-color: @accent;
|
||
|
location: center;
|
||
|
y-offset: -20px;
|
||
|
}
|
||
|
|
||
|
entry {
|
||
|
expand: true;
|
||
|
text-color: @accent;
|
||
|
}
|