28 lines
467 B
CSS
28 lines
467 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: 'Font Awesome 5 Free';
|
|
font-size: 25px;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.collapsible-link[aria-expanded='true']::before {
|
|
content: '\f106';
|
|
}
|