EaglerArchive/archive_stylesheet.css

41 lines
727 B
CSS

.accordion {
width: 100%;
border-radius: 20px;
background-color: #333;
}
.accordion-item {
margin: 10px;
}
.accordion-item input {
display: none;
}
.accordion-item label {
display: block;
padding: 10px;
cursor: pointer;
}
.accordion-item .accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease;
background-color: #222;
padding: 0 10px;
}
.accordion-item input:checked ~ .accordion-content {
max-height: 100%; /* You can adjust this value depending on your content */
}
.accordion-item input:checked > .accordion-title img:first-child {
transform: rotate(90deg);
}
.accordion-title {
display: flex;
align-items: center;
}