48 lines
740 B
CSS
48 lines
740 B
CSS
window {
|
|
margin: 0px;
|
|
border: 2px solid rgba(255, 255, 255, 0.10);
|
|
border-radius: 18px;
|
|
background-color: rgba(17, 17, 17, 0.92);
|
|
font-family: "Inter", "Cantarell", sans-serif;
|
|
font-size: 15px;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 18px;
|
|
padding: 12px;
|
|
}
|
|
|
|
#input {
|
|
margin-bottom: 14px;
|
|
padding: 12px 16px;
|
|
border: none;
|
|
border-radius: 12px;
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
color: #f5f5f5;
|
|
}
|
|
|
|
#scroll {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
#entry {
|
|
padding: 10px;
|
|
margin: 8px;
|
|
border-radius: 14px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
#img {
|
|
min-width: 260px;
|
|
min-height: 150px;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
#text {
|
|
margin-top: 8px;
|
|
color: #eaeaea;
|
|
}
|