Spaces:
Running
Running
File size: 738 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
.collapsible {
background-color: var(--white-color);
color: var(--text-2-color);
cursor: pointer;
padding: 10px;
width: 100%;
border: 2px solid var(--border-0-color);
text-align: left;
outline: none;
border-radius: 15px;
}
.collapsible:hover {
background-color: var(--primary-color);
}
.collapsible:not(:has(+ .hidden)) {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.content {
padding: 0 18px;
overflow: hidden;
display: block;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
background-color: var(--bg-color);
}
.content.hidden {
display: none;
}
.collapsible:after {
content: "\02C5";
color: var(--text-0-color);
float: right;
margin-left: 5px;
}
|