75 lines
1005 B
CSS
75 lines
1005 B
CSS
@define-color lavender #b7bdf8;
|
|
@define-color base #24273a;
|
|
@define-color red #ed8796;
|
|
@define-color mauve #c6a0f6;
|
|
|
|
* {
|
|
font-family: "Inconsolata Nerd Font", monospace;
|
|
font-size: 14px;
|
|
}
|
|
|
|
window {
|
|
margin: 0;
|
|
padding: 10px;
|
|
border: 0.16em solid @lavender;
|
|
border-radius: 0.1em;
|
|
background-color: @base;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
border: none;
|
|
background-color: @base;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
border: none;
|
|
background-color: @base;
|
|
}
|
|
|
|
#scroll {
|
|
margin: o;
|
|
padding: 10px;
|
|
border none;
|
|
background-color: @base;
|
|
}
|
|
|
|
#input image {
|
|
border: none;
|
|
color: @red;
|
|
}
|
|
|
|
#input * {
|
|
outline: 4px solid @red !important;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: none;
|
|
color: @text;
|
|
}
|
|
|
|
#entry {
|
|
background-color: @base;
|
|
}
|
|
|
|
#entry array {
|
|
border: none;
|
|
color: @lavender;
|
|
}
|
|
|
|
#entry:selected {
|
|
border: 0.11em solid @lavender;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
color: @mauve;
|
|
}
|
|
|
|
#entry:drop(active) {
|
|
background-color: @lavender !important;
|
|
}
|