92 lines
1.8 KiB
CSS
92 lines
1.8 KiB
CSS
* {
|
|
/* smoother corners everywhere */
|
|
border-radius: 12px;
|
|
font-weight: 450;
|
|
}
|
|
|
|
/* Window container */
|
|
window {
|
|
margin: 0px;
|
|
padding: 6px;
|
|
border: 1px solid rgba(127, 90, 240, 0.35); /* accent tint */
|
|
background-color: rgba(12, 14, 20, 0.55); /* translucent */
|
|
color: #E6E7EB;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
|
|
backg
|
|
}
|
|
|
|
/* Input field */
|
|
#input {
|
|
margin: 8px;
|
|
padding: 10px 12px;
|
|
border: 1px solid rgba(127, 90, 240, 0.25);
|
|
background-color: rgba(34, 38, 48, 0.70);
|
|
color: #E6E7EB;
|
|
outline: none;
|
|
}
|
|
|
|
/* Lists/boxes */
|
|
#outer-box, #inner-box {
|
|
margin: 6px;
|
|
border: none;
|
|
background-color: rgba(24, 28, 36, 0.60);
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
border: none;
|
|
}
|
|
|
|
/* Entry text */
|
|
#text, #entry > * {
|
|
margin: 6px 10px;
|
|
color: #E6E7EB;
|
|
}
|
|
|
|
/* Rows (entries) */
|
|
#entry {
|
|
margin: 4px 6px;
|
|
padding: 8px 6px;
|
|
border: 1px solid transparent;
|
|
background-color: transparent;
|
|
transition: background-color 120ms ease, border-color 120ms ease;
|
|
}
|
|
|
|
/* Hover — soft highlight */
|
|
#entry:hover {
|
|
background-color: rgba(127, 90, 240, 0.10);
|
|
border-color: rgba(127, 90, 240, 0.25);
|
|
}
|
|
|
|
/* Selected row — stronger surface and bold text */
|
|
#entry:selected {
|
|
background-color: rgba(127, 90, 240, 0.18);
|
|
border-color: rgba(127, 90, 240, 0.40);
|
|
}
|
|
|
|
#entry:selected #text {
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Activatable (e.g., currently typed match) — invert text for contrast */
|
|
#entry.activatable #text {
|
|
color: rgba(12, 14, 20, 0.92);
|
|
}
|
|
|
|
/* Muted secondary text, if present */
|
|
#entry .secondary, #entry .desc {
|
|
color: #AAB0BC;
|
|
}
|
|
|
|
/* Optional: focus ring for keyboard nav */
|
|
#entry:focus {
|
|
border-color: rgba(127, 90, 240, 0.55);
|
|
background-color: rgba(127, 90, 240, 0.12);
|
|
}
|
|
|
|
/* Optional: thin separators using subtle overlay lines */
|
|
separator, .separator {
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
min-height: 1px;
|
|
}
|