89 lines
1.6 KiB
CSS
89 lines
1.6 KiB
CSS
/* {{{autogen}}} */
|
|
@import "~/.config/shared/Colors.css";
|
|
|
|
* {
|
|
background-color: transparent;
|
|
color: @text;
|
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
#window {
|
|
background: linear-gradient(45deg, #89b4fa, #a6e3a1);
|
|
border-radius: 28px;
|
|
padding: 2px;
|
|
}
|
|
|
|
#outer-box {
|
|
background-color: rgba(30, 30, 46, 0.98); /* almost solid */
|
|
border-radius: 26px;
|
|
padding: 12px;
|
|
}
|
|
|
|
#inner-box {
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
#input {
|
|
background-color: @surface1; /* stronger than surface0 */
|
|
color: @text;
|
|
border: 1px solid @surface2;
|
|
border-radius: 18px;
|
|
padding: 10px 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#input:focus {
|
|
border: 1px solid @blue;
|
|
background-color: @surface2;
|
|
}
|
|
|
|
#entry {
|
|
background-color: rgba(0, 0, 0, 0.35);
|
|
color: @subtext1;
|
|
border-radius: 18px;
|
|
padding: 10px 14px;
|
|
margin: 2px 0;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
|
|
#entry:hover {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
color: @text;
|
|
}
|
|
|
|
#entry:focus {
|
|
background: linear-gradient(45deg, #89b4fa, #89b4fa);
|
|
color: @lavender;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background: linear-gradient(45deg, #89b4fa, #a6e3a1);
|
|
border-radius: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#entry image {
|
|
margin-right: 10px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
#scrollbar {
|
|
background-color: @surface1;
|
|
border-radius: 20px;
|
|
width: 6px;
|
|
}
|
|
|
|
#scrollbar handle {
|
|
background: linear-gradient(45deg, #89b4fa, #a6e3a1);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
#prompt {
|
|
color: @subtext0;
|
|
margin-right: 6px;
|
|
}
|