mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
25 lines
471 B
Plaintext
25 lines
471 B
Plaintext
/* Message Dialog */
|
|
|
|
@import "styles/colors.rasi"
|
|
|
|
* {
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
font: "FantasqueSansMono Nerd Font 12";
|
|
}
|
|
|
|
window {
|
|
width: 360px;
|
|
padding: 25px;
|
|
border: 1px;
|
|
border-radius: 0px;
|
|
border-color: @border;
|
|
location: center;
|
|
y-offset: -2em;
|
|
}
|
|
|
|
entry {
|
|
expand: true;
|
|
text-color: @border;
|
|
}
|