footer für alle Seiten und new Modal

This commit is contained in:
2025-07-10 11:42:30 +02:00
parent 3964f90a30
commit a2b66de0be
13 changed files with 95 additions and 11 deletions

20
CSS/Element/modal.css Normal file
View File

@@ -0,0 +1,20 @@
.modal-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.6);
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-overlay.is-visible {
display: flex;
}
.modal {
background: var(--brand-background);
padding: 1.5rem;
border-radius: 6px;
text-align: center;
max-width: 320px;
width: 90%;
}