You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
601 B
39 lines
601 B
// Accordions
|
|
.accordion {
|
|
input:checked ~,
|
|
&[open] {
|
|
& .accordion-header {
|
|
.icon {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
|
|
& .accordion-body {
|
|
max-height: 50rem;
|
|
}
|
|
}
|
|
|
|
.accordion-header {
|
|
display: block;
|
|
padding: $unit-1 $unit-2;
|
|
|
|
.icon {
|
|
transition: all .2s ease;
|
|
}
|
|
}
|
|
|
|
.accordion-body {
|
|
margin-bottom: $layout-spacing;
|
|
max-height: 0;
|
|
overflow: hidden;
|
|
transition: max-height .2s ease;
|
|
}
|
|
}
|
|
|
|
// Remove default details marker in Webkit
|
|
summary.accordion-header {
|
|
&::-webkit-details-marker {
|
|
display: none;
|
|
}
|
|
}
|