add sectioned template

This commit is contained in:
isUnknown 2024-08-18 16:56:58 +02:00
parent 3008e231cb
commit b1ddfee49c
29 changed files with 297 additions and 23 deletions

View file

@ -0,0 +1,19 @@
.collapsable-sections {
background-color: var(--color-yellow);
}
.collapsable button.toggle {
width: 100%;
display: flex;
justify-content: space-between;
}
.collapsable__content {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-in-out;
}
.collapsable__content {
max-height: 100%;
overflow: hidden;
}