Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 15: | Zeile 15: | ||
/* ================================================================*/ | /* ================================================================*/ | ||
/* Footer anpassungen */ | /* Footer anpassungen */ | ||
/* ================================================================*/ | /* ================================================================*/.citizen-footer__siteinfo { | ||
display: grid; | |||
.citizen-footer__siteinfo { | grid-template-columns: 125px 1fr auto; /* Logo, Text und Links in Spalten */ | ||
display: | gap: 20px; /* Abstand zwischen den Spalten */ | ||
align-items: start; /* Vertikale Ausrichtung am oberen Rand */ | |||
align-items: | |||
padding: 10px 20px; | padding: 10px 20px; | ||
} | } | ||
.footer-logo { | .footer-logo { | ||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
} | } | ||
.footer-content { | .footer-content { | ||
display: flex; | display: flex; | ||
flex-direction: column; /* Text und Links untereinander anordnen */ | flex-direction: column; /* Text und Links untereinander anordnen */ | ||
} | } | ||
.footer-text { | .footer-text { | ||
font-size: 14px; | font-size: 14px; | ||
color: #ccc; | color: #ccc; | ||
margin-bottom: 10px; | margin-bottom: 10px; | ||
} | } | ||
.footer-links { | .footer-links { | ||
display: flex; | display: flex; | ||
flex-direction: column; /* Links untereinander anordnen */ | flex-direction: column; /* Links untereinander anordnen */ | ||
align-items: flex-end; | align-items: flex-end; | ||
} | } | ||
.footer-links a { | .footer-links a { | ||
color: #fff; | color: #fff; | ||
text-decoration: none; | text-decoration: none; | ||
margin-bottom: 5px; | margin-bottom: 5px; | ||
} | } | ||
.footer-links a:hover { | .footer-links a:hover { | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } |
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 { display: grid; grid-template-columns: 125px 1fr auto; /* Logo, Text und Links in Spalten */ gap: 20px; /* Abstand zwischen den Spalten */ align-items: start; /* Vertikale Ausrichtung am oberen Rand */ padding: 10px 20px; } .footer-logo { width: 125px; height: 88px; } .footer-content { display: flex; flex-direction: column; /* Text und Links untereinander anordnen */ } .footer-text { font-size: 14px; color: #ccc; margin-bottom: 10px; } .footer-links { display: flex; flex-direction: column; /* Links untereinander anordnen */ align-items: flex-end; } .footer-links a { color: #fff; text-decoration: none; margin-bottom: 5px; } .footer-links a:hover { text-decoration: underline; }