27 lines
439 B
CSS
27 lines
439 B
CSS
/*
|
|
*
|
|
* Customization for accordion
|
|
*
|
|
*/
|
|
.collapsible-link {
|
|
width: 100%;
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
|
|
.collapsible-link::before {
|
|
content: '\f107';
|
|
position: absolute;
|
|
top: 50%;
|
|
// right: 0.8rem;
|
|
left: 0rem;
|
|
transform: translateY(-50%);
|
|
display: block;
|
|
font-family: 'FontAwesome';
|
|
font-size: 1.8rem;
|
|
}
|
|
|
|
.collapsible-link[aria-expanded='true']::before {
|
|
content: '\f106';
|
|
}
|