57 lines
870 B
CSS
57 lines
870 B
CSS
|
|
|
|
|
|
window {
|
|
|
|
background-color: rgba(26, 27, 38, 0.1);
|
|
|
|
border-radius: 15px;
|
|
|
|
/* Можно добавить рамку, чтобы скругление было лучше видно */
|
|
border: 2px solid #f5f5f5;
|
|
}
|
|
|
|
|
|
|
|
/* ---- Поле ввода ---- */
|
|
#input {
|
|
margin: 10px;
|
|
padding: 8px;
|
|
background-color: rgba(40, 42, 54, 0.9);
|
|
color: #f5f5f5;
|
|
border: none;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
background-color: transparent; /
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
#scroll {
|
|
background-color: transparent;
|
|
}
|
|
|
|
#text {
|
|
padding: 5px;
|
|
color: #f5f5f5;
|
|
}
|
|
|
|
/* ---- Выбранный элемент списка ---- */
|
|
#entry:selected {
|
|
background-color: #f5f5f5;
|
|
color: #0e0e0e;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
color: #0e0e0e;
|
|
}
|