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

@@ -1,7 +1,26 @@
body {
font-family: "Darker Grotesque", sans-serif;
/* Custom styles */
html {
scroll-behavior: smooth;
}
:root {
--bs-body-font-size: 1.5rem;
a {
text-decoration: none;
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
padding-top: 0;
padding-bottom: 0;
}
.accordion-item.active .accordion-content {
max-height: 3000px;
padding-top: 1rem;
padding-bottom: 1.5rem;
}
.accordion-item.active .accordion-chevron {
transform: rotate(180deg);
}