124 lines
2.3 KiB
CSS
124 lines
2.3 KiB
CSS
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
|
@import "~/.config/shared/Colors.css";
|
|
|
|
/*
|
|
@define-color green #a6e3a1;
|
|
@define-color blue #89b4fa;
|
|
*/
|
|
|
|
|
|
/* =========================
|
|
GLOBAL
|
|
========================= */
|
|
* {
|
|
background-color: transparent;
|
|
color: @text;
|
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
/* =========================
|
|
OUTER BORDER (GRADIENT)
|
|
========================= */
|
|
|
|
#window {
|
|
background: linear-gradient(45deg, @blue, @green);
|
|
border-radius: 28px;
|
|
|
|
padding: 2px; /* <- THIS becomes the border thickness */
|
|
}
|
|
|
|
/* inner panel sits inside border */
|
|
#outer-box {
|
|
background-color: rgba(30, 30, 46, 0.98);
|
|
border-radius: 26px;
|
|
|
|
padding: 12px;
|
|
width: 400px;
|
|
}
|
|
|
|
/* INNER PANEL */
|
|
#inner-box {
|
|
background: rgba(30, 30, 46, 0.98);
|
|
border-radius: 24px;
|
|
|
|
padding: 12px;
|
|
width: 400px;
|
|
|
|
box-shadow:
|
|
0 0 25px rgba(0,0,0,0.6),
|
|
0 0 0 1px rgba(255,255,255,0.04);
|
|
}
|
|
|
|
/* =========================
|
|
INPUT
|
|
========================= */
|
|
#input {
|
|
background-color: @surface0;
|
|
color: @text;
|
|
border: 1px solid @surface1;
|
|
border-radius: 18px;
|
|
padding: 8px 14px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#input:focus {
|
|
border: 1px solid @blue;
|
|
}
|
|
|
|
/* =========================
|
|
ENTRIES
|
|
========================= */
|
|
#entry {
|
|
background-color: transparent;
|
|
color: @subtext1;
|
|
border-radius: 18px;
|
|
padding: 8px 14px;
|
|
margin: 2px 0;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
#entry:focus {
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
color: @lavender;
|
|
}
|
|
|
|
/* =========================
|
|
SELECTED (GRADIENT)
|
|
========================= */
|
|
#entry:selected {
|
|
background: linear-gradient(45deg, @blue, @green);
|
|
color: @base;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* =========================
|
|
ICONS
|
|
========================= */
|
|
#entry image {
|
|
margin-right: 10px;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
/* =========================
|
|
SCROLLBAR
|
|
========================= */
|
|
#scrollbar {
|
|
background-color: @surface0;
|
|
border-radius: 20px;
|
|
width: 6px;
|
|
}
|
|
|
|
#scrollbar handle {
|
|
background: linear-gradient(45deg, @blue, @green);
|
|
border-radius: 20px;
|
|
}
|
|
|
|
/* =========================
|
|
PROMPT
|
|
========================= */
|
|
#prompt {
|
|
color: @subtext0;
|
|
margin-right: 6px;
|
|
}
|