mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
25 lines
433 B
Plaintext
25 lines
433 B
Plaintext
|
/* Confirm Dialog */
|
||
|
|
||
|
@import "colors.rasi"
|
||
|
|
||
|
* {
|
||
|
background-color: @bg;
|
||
|
text-color: @fga;
|
||
|
font: "Terminus 9";
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
width: 320px;
|
||
|
padding: 25px;
|
||
|
border: 0px 0px 2px 0px;
|
||
|
border-radius: 0px;
|
||
|
border-color: @ac;
|
||
|
location: center;
|
||
|
y-offset: -2em;
|
||
|
}
|
||
|
|
||
|
entry {
|
||
|
expand: true;
|
||
|
text-color: @ac;
|
||
|
}
|