wf4/app/assets/css/spoiler.css
webfussel 0ce3ca2fe5 FIX: fixes for typos and Link Component in button
Fixes some grammar issues and bad layouting, as well as wrong link usage
2025-05-28 13:49:53 +02:00

36 lines
No EOL
662 B
CSS

.Spoiler {
background: var(--color-black);
padding: 1rem 2rem;
border-radius: 20px;
& .icon {
color: var(--color-orange);
flex: 0 0 1.5rem;
}
& summary {
font-family: 'Roboto Condensed', sans-serif;
font-size: 1.5rem;
cursor: pointer;
list-style: none;
display: flex;
align-items: center;
gap: 1rem;
font-weight: bold;
}
& > div {
margin-top: 1rem;
display: flex;
flex-direction: column;
gap: 1rem;
}
}
@media (width <= 820px) {
.Spoiler {
& summary {
font-size: 1rem;
}
}
}