Enable configuration of an Imprint.

This commit is contained in:
2025-07-06 17:49:14 +02:00
parent 5b857a9a33
commit b08ae5feca
6 changed files with 315 additions and 12 deletions

View File

@@ -563,6 +563,51 @@ footer {
transition: margin-left 0.3s ease;
}
.site-footer {
border-top: 1px solid #e0e0e0;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-info {
font-size: 0.875rem;
color: #666;
}
.footer-info p {
margin: 0;
}
.footer-links {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.875rem;
}
.footer-links a {
color: #666;
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--primary-color);
}
.footer-separator {
color: #999;
margin: 0 0.5rem;
}
/* Full width footer when no user (no sidebar) */
body:not(.has-user) footer {
margin-left: 0;
@@ -1280,6 +1325,11 @@ input[type="time"]::-webkit-datetime-edit {
footer {
margin-left: 0;
}
.footer-content {
flex-direction: column;
text-align: center;
}
.mobile-overlay.active {
display: block;