48 lines
1.0 KiB
CSS
48 lines
1.0 KiB
CSS
/* Das Hauptfenster */
|
|
window {
|
|
margin: 0px;
|
|
border: 2px solid #ff7b3b; /* Sonnen-Orange */
|
|
background-color: rgba(25, 16, 36, 0.95); /* Tiefes Dunkellila, fast blickdicht */
|
|
border-radius: 12px;
|
|
font-family: "Fira Code", monospace;
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* Das Suchfeld oben */
|
|
#input {
|
|
margin: 10px;
|
|
border: 2px solid #e0274a; /* Pink-Rot für das Suchfeld */
|
|
border-radius: 8px;
|
|
background-color: #3b1d3d; /* Dunkles Magenta */
|
|
color: #fce8e1;
|
|
}
|
|
|
|
/* Die Liste der Apps */
|
|
#inner-box {
|
|
margin: 10px;
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/* Einzelne Einträge */
|
|
#entry {
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* Der ausgewählte Eintrag (Hover/Focus) */
|
|
#entry:selected {
|
|
background-color: #e0274a; /* Kräftiges Pink/Rot aus den Wolken beim Auswählen */
|
|
outline: none;
|
|
}
|
|
|
|
/* Textfarben */
|
|
#text {
|
|
margin: 5px;
|
|
color: #fce8e1;
|
|
}
|
|
|
|
#text:selected {
|
|
color: #ffffff; /* Strahlendes Weiß für den ausgewählten Text */
|
|
font-weight: bold;
|
|
} |