new project structure, faq adj, review fix

This commit is contained in:
2025-09-28 21:15:56 -04:00
parent 5d07776051
commit 6c05581493
19 changed files with 43 additions and 30 deletions
+46
View File
@@ -0,0 +1,46 @@
/** DROP DOWN MENU CSS */
.dropdown {
width: 300px;
}
.dropdown-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
border: 1px solid var(--dark-gold);
cursor: pointer;
transition: 0.5s;
}
.dropdown-header:hover {
border: 1px solid white;
}
.dropdown-arrow {
color: var(--gold);
transform: rotate(90deg);
transition: transform 0.3s ease;
}
.dropdown-arrow.open {
transform: rotate(0deg);
}
.dropdown-content {
overflow: hidden;
max-height: 0;
transition: max-height 0.3s ease;
}
.dropdown-content.open {
max-height: 300px;
}
.dropdown-body {
padding: 10px;
}