add sectioned template
This commit is contained in:
parent
3008e231cb
commit
b1ddfee49c
29 changed files with 297 additions and 23 deletions
19
assets/css/src/collapsable-section.css
Normal file
19
assets/css/src/collapsable-section.css
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue