Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 19: | Zeile 19: | ||
.citizen-footer__siteinfo { | .citizen-footer__siteinfo { | ||
display: flex; | display: flex; | ||
justify-content: space-between; /* | justify-content: space-between; /* Platz zwischen den Hauptgruppen aufteilen */ | ||
align-items: flex-start; /* | align-items: flex-start; /* Inhalte oben ausrichten */ | ||
padding: 10px 20px; | padding: 10px 20px; | ||
flex-wrap: wrap; /* Inhalte umbrechen, wenn der Platz nicht ausreicht */ | |||
} | } | ||
| Zeile 35: | Zeile 36: | ||
.footer-content { | .footer-content { | ||
display: flex; | display: flex; | ||
flex-direction: column; /* | flex-direction: column; /* Text und Links untereinander anordnen */ | ||
flex-grow: 1; /* Füllt den verfügbaren Platz aus */ | flex-grow: 1; /* Füllt den verfügbaren Platz aus */ | ||
} | } | ||
| Zeile 43: | Zeile 43: | ||
.footer-text { | .footer-text { | ||
font-size: 14px; | font-size: 14px; | ||
color: #ccc; | color: #ccc; | ||
margin-bottom: 10px; /* Abstand zwischen Text und Links */ | margin-bottom: 10px; /* Abstand zwischen Text und Links */ | ||
} | } | ||
Version vom 26. August 2024, 16:49 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.citizen-page-header__subtitle {
display: none;
}
/* Versteckt die Bearbeitungs-Tools für nicht angemeldete Benutzer */
.mw-editsection,
#ca-edit {
display: none;
}
/* Versteckt den Abschnitt "Zuletzt geändert" am Ende der Seite */
.footer-info-lastmod {
display: none;
/* ================================================================*/
/* Footer anpassungen */
/* ================================================================*/
/* Hauptcontainer für das Footer-Layout */
.citizen-footer__siteinfo {
display: flex;
justify-content: space-between; /* Platz zwischen den Hauptgruppen aufteilen */
align-items: flex-start; /* Inhalte oben ausrichten */
padding: 10px 20px;
flex-wrap: wrap; /* Inhalte umbrechen, wenn der Platz nicht ausreicht */
}
/* Stile für das Logo im Footer */
.footer-logo {
width: 125px;
height: 88px;
margin-right: 20px; /* Abstand zwischen Logo und Text */
flex-shrink: 0; /* Verhindert, dass das Logo skaliert wird */
}
/* Container für Text und Links im Footer */
.footer-content {
display: flex;
flex-direction: column; /* Text und Links untereinander anordnen */
flex-grow: 1; /* Füllt den verfügbaren Platz aus */
}
/* Stile für den Text im Footer */
.footer-text {
font-size: 14px;
color: #ccc;
margin-bottom: 10px; /* Abstand zwischen Text und Links */
}
/* Container für die Links im Footer */
.footer-links {
display: flex;
flex-direction: column; /* Links untereinander anordnen */
align-items: flex-end; /* Rechts ausrichten */
}
/* Stile für die Links im Footer */
.footer-links a {
color: #fff; /* Linkfarbe */
text-decoration: none; /* Entfernt die Unterstreichung */
margin-bottom: 5px; /* Abstand zwischen den Links */
}
/* Hover-Effekt für die Links */
.footer-links a:hover {
text-decoration: underline; /* Unterstreicht die Links beim Hover */
}