rl-restore / frontend /src /components /result /teach-note.css
parhamkhoshsolat's picture
Add generative Enhance & Upscale 4x finisher + image-first redesign
9171a06 verified
Raw
History Blame Contribute Delete
859 Bytes
.teach {
margin-top: var(--s-3);
border: 1px solid var(--hairline);
border-radius: var(--r-control);
background: var(--panel);
}
.teach > summary {
cursor: pointer;
padding: 10px 14px;
color: var(--text-dim);
font-size: 0.9rem;
list-style: none;
display: flex;
align-items: center;
gap: 8px;
}
.teach > summary::-webkit-details-marker {
display: none;
}
.teach > summary::before {
content: '?';
display: inline-grid;
place-items: center;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--accent-gradient);
color: #fff;
font-size: 11px;
font-weight: 700;
flex: none;
}
.teach[open] > summary {
color: var(--text);
}
.teach__body {
padding: 0 14px 14px 40px;
color: var(--text-dim);
font-size: 0.9rem;
line-height: 1.6;
}
.teach__body strong {
color: var(--text);
font-weight: 600;
}