32 lines
589 B
SCSS
32 lines
589 B
SCSS
section.accordian-content {
|
|
padding: 4rem 0;
|
|
|
|
.accordian-item {
|
|
margin: 3rem 0;
|
|
box-shadow: 0 0 20px rgba($c-black, 0.1);
|
|
padding: 1rem;
|
|
|
|
svg {
|
|
transition: transform $transition-time ease;
|
|
}
|
|
|
|
&.expanded {
|
|
svg {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
@extend .montserrat;
|
|
color: $c-brightRed;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
}
|