57 lines
754 B
CSS
57 lines
754 B
CSS
window {
|
|
margin: 5px;
|
|
border: 2px solid #cc241d;
|
|
border-radius: 10px;
|
|
background-color: #282828;
|
|
font-family: mononoki Nerd Font;
|
|
font-size: 16px;
|
|
}
|
|
|
|
#input {
|
|
margin: 10px;
|
|
margin-bottom: 1px;
|
|
border: 5px solid #3c3836;
|
|
color: #ebdbb2;
|
|
background-color: #3c3836;
|
|
}
|
|
|
|
#input > image.left {
|
|
-gtk-icon-transform:scaleX(0);
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 15px;
|
|
margin-top: 15px;
|
|
border: none;
|
|
background-color: #282828;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 10px;
|
|
border: none;
|
|
background-color: #282828;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
border: none;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: none;
|
|
color: #ebdbb2;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #cc241d;
|
|
color: #3c3836;
|
|
font-weight: normal;
|
|
}
|
|
|
|
#text:selected {
|
|
background-color: #cc241d;
|
|
color: #fbf1c7;
|
|
font-weight: bold;
|
|
}
|
|
|