56 lines
875 B
CSS
56 lines
875 B
CSS
/* --- Global --- */
|
|
* {
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* --- Window --- */
|
|
window {
|
|
width: 800px;
|
|
border-radius: 16px;
|
|
border: 2px solid #00ff88;
|
|
background-color: rgba(15,15,20,0.92);
|
|
}
|
|
/* --- Search Input --- */
|
|
#input {
|
|
margin: 10px;
|
|
border-radius: 12px;
|
|
padding: 12px;
|
|
background: rgba(25,25,35,0.9);
|
|
color: #d8ffe9;
|
|
border: 1px solid rgba(0,255,136,0.4);
|
|
}
|
|
|
|
/* --- Inner Box --- */
|
|
#inner-box {
|
|
margin: 5px;
|
|
border: none;
|
|
}
|
|
|
|
/* --- Scroll --- */
|
|
#scroll {
|
|
margin: 0px;
|
|
}
|
|
|
|
/* --- Entries --- */
|
|
#entry {
|
|
padding: 10px;
|
|
border-radius: 10px;
|
|
margin: 3px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background: linear-gradient(90deg,#00cc66,#009944);
|
|
color: white;
|
|
}
|
|
/* Text */
|
|
#text {
|
|
margin: 4px;
|
|
color: #d8ffe9;
|
|
}
|
|
|
|
/* Icon */
|
|
#img {
|
|
size: 32px;
|
|
margin-right: 10px;
|
|
} |