33 lines
726 B
CSS
33 lines
726 B
CSS
|
@import url('file:///home/viyurz/.config/gtk-3.0/colors-gtk.css');
|
||
|
|
||
|
window {
|
||
|
color: @foreground;
|
||
|
font-family: 'JetBrainsMono Nerd Font';
|
||
|
background-image: linear-gradient(160deg, @background1, @background2), linear-gradient(160deg, @accent1, @accent2);
|
||
|
background-clip: padding-box, border-box;
|
||
|
background-origin: border-box;
|
||
|
border: 2px solid transparent;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
#scroll {
|
||
|
margin: 5px 7px;
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
background: none;
|
||
|
}
|
||
|
|
||
|
#input {
|
||
|
margin: 2px;
|
||
|
box-shadow: none;
|
||
|
border-radius: 4px 4px 0 0;
|
||
|
background-color: @hovered;
|
||
|
}
|
||
|
|
||
|
#entry:selected {
|
||
|
outline: none;
|
||
|
padding-left: 8px;
|
||
|
border-radius: 2px;
|
||
|
background-color: @selected;
|
||
|
}
|