83 lines
2.1 KiB
CSS
83 lines
2.1 KiB
CSS
* {
|
|
font-family: "JetBrainsMono Nerd Font", monospace;
|
|
padding: 3px;
|
|
}
|
|
|
|
/* Main window - Frosted glass */
|
|
window {
|
|
margin: 5px;
|
|
background-color: rgba(240, 240, 240, 0.85);
|
|
backdrop-filter: blur(12px); /* Glass effect */
|
|
border: 1px solid rgba(200, 200, 200, 0.6);
|
|
border-radius: 8px;
|
|
box-shadow:
|
|
0 2px 5px rgba(0, 0, 0, 0.2),
|
|
inset 0 1px 1px rgba(255, 255, 255, 0.4); /* Inner glow */
|
|
}
|
|
|
|
/* Input bar - Aero search box */
|
|
#input {
|
|
margin: 8px;
|
|
padding: 8px 12px;
|
|
background: linear-gradient(to bottom, #ffffff, #e6e6e6);
|
|
color: #000000;
|
|
border-radius: 6px;
|
|
border: 1px solid #aaaaaa;
|
|
font-size: 14px;
|
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Emoji grid - Bubbly items */
|
|
#entry {
|
|
padding: 8px 12px;
|
|
margin: 4px;
|
|
border-radius: 6px;
|
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(230, 240, 255, 0.5));
|
|
border: 1px solid rgba(180, 180, 180, 0.3);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
/* Selected emoji - Luminous highlight */
|
|
#entry:selected {
|
|
background: linear-gradient(to bottom, #bb86fc, #9a67ea); /* Purple gradient */
|
|
box-shadow: 0 0 8px rgba(187, 134, 252, 0.4); /* Glow */
|
|
color: #000;
|
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* Hover effect - Subtle pop */
|
|
#entry:hover {
|
|
background: linear-gradient(to bottom, rgba(210, 220, 255, 0.8), rgba(180, 200, 255, 0.6));
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
/* Container boxes - Transparent */
|
|
#outer-box {
|
|
margin: 5px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
/* Emoji items (fallback for older Wofi) */
|
|
item {
|
|
padding: 8px 12px;
|
|
margin: 4px;
|
|
border-radius: 6px;
|
|
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(230, 240, 255, 0.5));
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
item.selected {
|
|
background: linear-gradient(to bottom, #bb86fc, #9a67ea);
|
|
box-shadow: 0 0 8px rgba(187, 134, 252, 0.4);
|
|
}
|
|
|
|
item:hover {
|
|
background: linear-gradient(to bottom, rgba(210, 220, 255, 0.8), rgba(180, 200, 255, 0.6));
|
|
}
|