Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 15: | Zeile 15: | ||
/* ================================================================*/ | /* ================================================================*/ | ||
/* Footer anpassungen */ | /* Footer anpassungen */ | ||
/* ================================================================*/.citizen-footer__siteinfo { | /* ================================================================*/ | ||
.citizen-footer__siteinfo { | |||
overflow: hidden; /* Behebt das Problem, dass Container nicht richtig gefloatet werden */ | |||
padding: 10px 20px; | padding: 10px 20px; | ||
} | } | ||
.footer-logo { | .footer-logo { | ||
float: left; | |||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
margin-right: 20px; | |||
} | } | ||
.footer-content { | .footer-content { | ||
float: left; | |||
width: calc(100% - 165px); /* Platz für Logo und Abstand lassen */ | |||
margin-right: 20px; | |||
} | } | ||
| Zeile 40: | Zeile 41: | ||
.footer-links { | .footer-links { | ||
float: right; | |||
text-align: right; /* Text der Links rechtsbündig ausrichten */ | |||
} | } | ||
.footer-links a { | .footer-links a { | ||
display: block; /* Links untereinander anordnen */ | |||
color: #fff; | color: #fff; | ||
text-decoration: none; | text-decoration: none; | ||
Version vom 26. August 2024, 16:51 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 */
/* ================================================================*/
.citizen-footer__siteinfo {
overflow: hidden; /* Behebt das Problem, dass Container nicht richtig gefloatet werden */
padding: 10px 20px;
}
.footer-logo {
float: left;
width: 125px;
height: 88px;
margin-right: 20px;
}
.footer-content {
float: left;
width: calc(100% - 165px); /* Platz für Logo und Abstand lassen */
margin-right: 20px;
}
.footer-text {
font-size: 14px;
color: #ccc;
margin-bottom: 10px;
}
.footer-links {
float: right;
text-align: right; /* Text der Links rechtsbündig ausrichten */
}
.footer-links a {
display: block; /* Links untereinander anordnen */
color: #fff;
text-decoration: none;
margin-bottom: 5px;
}
.footer-links a:hover {
text-decoration: underline;
}