49 lines
686 B
CSS
49 lines
686 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';
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Customization for nav tabs
|
|
*
|
|
*/
|
|
.nav-pills .nav-link {
|
|
border-radius: 0;
|
|
background: rgba(0,0,0,.03);
|
|
}
|
|
|
|
/*
|
|
*
|
|
* Customization for btn
|
|
*
|
|
*/
|
|
.btn span {
|
|
position: absolute;
|
|
left: 5px;
|
|
width: 35px;
|
|
}
|