Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 16: | Zeile 16: | ||
/* Footer anpassungen */ | /* Footer anpassungen */ | ||
/* ================================================================*/ | /* ================================================================*/ | ||
/* Hauptcontainer für das Footer-Layout */ | |||
.citizen-footer__siteinfo { | .citizen-footer__siteinfo { | ||
display: flex; | display: flex; | ||
justify-content: space-between; /* Platz | justify-content: space-between; /* Teilt den Platz gleichmäßig auf */ | ||
align-items: | align-items: flex-start; /* Richtet die Inhalte oben aus */ | ||
padding: 10px 20px; | padding: 10px 20px; | ||
} | } | ||
/* Stile für das Logo im Footer */ | |||
.footer-logo { | .footer-logo { | ||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
margin-right: 20px; /* Abstand zwischen | margin-right: 20px; /* Abstand zwischen Logo und Text */ | ||
flex-shrink: 0; /* Verhindert das | flex-shrink: 0; /* Verhindert, dass das Logo skaliert wird */ | ||
} | } | ||
/* Container für Text und Links im Footer */ | |||
.footer-content { | .footer-content { | ||
display: flex; | display: flex; | ||
flex-direction: | flex-direction: column; /* Ordnet Text und Links untereinander an */ | ||
align-items: | align-items: flex-start; /* Links ausrichten */ | ||
flex-grow: 1; | flex-grow: 1; /* Füllt den verfügbaren Platz aus */ | ||
} | } | ||
/* Stile für den Text im Footer */ | |||
.footer-text { | .footer-text { | ||
font-size: 14px; | font-size: 14px; | ||
color: #ccc; /* | color: #ccc; /* Textfarbe */ | ||
margin- | margin-bottom: 10px; /* Abstand zwischen Text und Links */ | ||
} | } | ||
/* Container für die Links im Footer */ | |||
.footer-links { | .footer-links { | ||
display: flex; | display: flex; | ||
flex-direction: column; /* Links untereinander anordnen */ | flex-direction: column; /* Links untereinander anordnen */ | ||
align-items: flex-end; /* Rechts | align-items: flex-end; /* Rechts ausrichten */ | ||
} | } | ||
/* Stile für die Links im Footer */ | |||
.footer-links a { | .footer-links a { | ||
color: #fff; /* | color: #fff; /* Linkfarbe */ | ||
text-decoration: none; /* Entfernt die Unterstreichung */ | text-decoration: none; /* Entfernt die Unterstreichung */ | ||
margin-bottom: 5px; /* Abstand zwischen den Links */ | margin-bottom: 5px; /* Abstand zwischen den Links */ | ||
} | } | ||
/* Hover-Effekt für die Links */ | |||
.footer-links a:hover { | .footer-links a:hover { | ||
text-decoration: underline; /* Unterstreicht die Links beim Hover */ | text-decoration: underline; /* Unterstreicht die Links beim Hover */ | ||
} | } | ||
Version vom 26. August 2024, 16:46 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; /* Teilt den Platz gleichmäßig auf */
align-items: flex-start; /* Richtet die Inhalte oben aus */
padding: 10px 20px;
}
/* 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; /* Ordnet Text und Links untereinander an */
align-items: flex-start; /* Links ausrichten */
flex-grow: 1; /* Füllt den verfügbaren Platz aus */
}
/* Stile für den Text im Footer */
.footer-text {
font-size: 14px;
color: #ccc; /* Textfarbe */
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 */
}