52 lines
687 B
CSS
52 lines
687 B
CSS
|
|
* {
|
||
|
|
font-family: JetBrainsMonoNerdFont;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
@define-color bg #1d1d1d;
|
||
|
|
@define-color fg #f6f5f4;
|
||
|
|
@define-color bl #1c71d8;
|
||
|
|
|
||
|
|
window {
|
||
|
|
background-color: @bg;
|
||
|
|
border: 1px solid @bg;
|
||
|
|
border-radius: 15px;
|
||
|
|
color: @fg;
|
||
|
|
}
|
||
|
|
|
||
|
|
#input {
|
||
|
|
background-color: @bg;
|
||
|
|
color: @fg;
|
||
|
|
border-radius: 12;
|
||
|
|
border: 0px solid @bg;
|
||
|
|
padding: 3px;
|
||
|
|
margin: 5 3 5 3;
|
||
|
|
padding-left: 10px;
|
||
|
|
padding-right: 10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#outer-box {
|
||
|
|
margin: 5px;
|
||
|
|
padding: 0px;
|
||
|
|
background-color: @bg;
|
||
|
|
}
|
||
|
|
|
||
|
|
#text {
|
||
|
|
padding: 3px;
|
||
|
|
color: @fg;
|
||
|
|
}
|
||
|
|
|
||
|
|
#entry:selected {
|
||
|
|
border-radius: 5px;
|
||
|
|
background-color: @bl;
|
||
|
|
font-color: @bg;
|
||
|
|
}
|
||
|
|
|
||
|
|
#text:selected {
|
||
|
|
color: @fg;
|
||
|
|
}
|
||
|
|
|
||
|
|
#input:focus {
|
||
|
|
box-shadow: 0px 0px 0px 1px @bg inset;
|
||
|
|
}
|