saving works

This commit is contained in:
2025-06-17 10:37:46 +02:00
parent 811abbf1e0
commit 82efbd491a
10 changed files with 935 additions and 244 deletions

View File

@@ -0,0 +1,21 @@
html {
scroll-behavior: smooth;
}
a {
text-decoration: none;
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
padding-top: 0; /* Ensures this is the initial state for vertical padding */
padding-bottom: 0; /* Ensures this is the initial state for vertical padding */
}
.accordion-item.active .accordion-content {
max-height: 3000px; /* Increased max-height for potentially long content */
padding-top: 1rem; /* Applied when active */
padding-bottom: 1.5rem; /* Applied when active */
}
.accordion-item.active .accordion-chevron {
transform: rotate(180deg);
}