64 lines
1.2 KiB
CSS
64 lines
1.2 KiB
CSS
.accordion collapse {
|
|
border: 0;
|
|
}
|
|
|
|
.accordion-button:focus {
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
.accordion-button:not(.collapsed) {
|
|
background: none;
|
|
color: #ff9800;
|
|
box-shadow: none;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.accordion-button::after {
|
|
width: auto;
|
|
height: auto;
|
|
content: "+";
|
|
font-size: 40px;
|
|
background-image: none;
|
|
font-weight: 100;
|
|
color: #1b6ce5;
|
|
transform: translateY(-4px);
|
|
}
|
|
|
|
.accordion-button:not(.collapsed)::after {
|
|
width: auto;
|
|
height: auto;
|
|
background-image: none;
|
|
content: "-";
|
|
font-size: 48px;
|
|
transform: translate(-5px, -4px);
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
@media (max-width: 991px) {
|
|
#navcol-1 {
|
|
margin-top: 12px;
|
|
background: #2d2c38;
|
|
border-radius: 10px;
|
|
max-width: 992px;
|
|
backdrop-filter: opacity(1);
|
|
-webkit-backdrop-filter: opacity(1);
|
|
border-top-color: var(--bs-emphasis-color);
|
|
border-bottom-color: var(--bs-emphasis-color);
|
|
overflow: visible;
|
|
background: #01002a;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
#navcol-1 {
|
|
margin-top: 29px;
|
|
box-shadow: 0px 0px;
|
|
background: rgba(45,44,56,0);
|
|
backdrop-filter: opacity(0);
|
|
-webkit-backdrop-filter: opacity(0);
|
|
background: rgba(45,44,56,0);
|
|
}
|
|
}
|
|
|