Weitere Optionen
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
||
| Zeile 5: | Zeile 5: | ||
/* das "siteSub nicht löschen */ | /* das "siteSub nicht löschen */ | ||
.citizen-footer__siteinfo { | .citizen-footer__siteinfo { | ||
position: relative; /* Stellt sicher, dass die absolute Positionierung innerhalb dieses Containers wirkt */ | |||
display: flex; | |||
align-items: center; | align-items: center; | ||
padding: 10px 20px; | padding: 10px 20px; | ||
} | } | ||
| Zeile 17: | Zeile 18: | ||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
margin-right: 20px; | |||
} | } | ||
.footer-content { | .footer-content { | ||
flex-grow: 1; | |||
flex- | max-width: 60%; /* Begrenzung der Breite für den Textbereich */ | ||
max-width: | |||
} | } | ||
| Zeile 34: | Zeile 34: | ||
.footer-links { | .footer-links { | ||
position: absolute; | |||
right: 20px; /* Positioniert die Links 20px vom rechten Rand entfernt */ | |||
top: 50%; | |||
transform: translateY(-50%); /* Vertikal zentrieren */ | |||
text-align: right; | |||
} | } | ||
.footer-links a { | .footer-links a { | ||
display: block; /* Links untereinander anzeigen */ | |||
color: #fff; | color: #fff; | ||
text-decoration: none; | text-decoration: none; | ||
margin-bottom: 5px; | |||
} | } | ||
Version vom 26. August 2024, 17:16 Uhr
/* Das folgende CSS wird für Benutzer des Citizen-Skins geladen */
#siteSub {
display: none;
}
/* das "siteSub nicht löschen */
.citizen-footer__siteinfo {
position: relative; /* Stellt sicher, dass die absolute Positionierung innerhalb dieses Containers wirkt */
display: flex;
align-items: center;
padding: 10px 20px;
}
.footer-logo {
width: 125px;
height: 88px;
margin-right: 20px;
}
.footer-content {
flex-grow: 1;
max-width: 60%; /* Begrenzung der Breite für den Textbereich */
}
.footer-text {
font-size: 14px;
color: #ccc;
line-height: 1.5;
text-align: left; /* Text linksbündig ausrichten */
}
.footer-links {
position: absolute;
right: 20px; /* Positioniert die Links 20px vom rechten Rand entfernt */
top: 50%;
transform: translateY(-50%); /* Vertikal zentrieren */
text-align: right;
}
.footer-links a {
display: block; /* Links untereinander anzeigen */
color: #fff;
text-decoration: none;
margin-bottom: 5px;
}
.footer-links a:hover {
text-decoration: underline;
}