Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 5: | Zeile 5: | ||
/* das "siteSub nicht löschen */ | /* das "siteSub nicht löschen */ | ||
.citizen-footer__siteinfo { | .citizen-footer__siteinfo { | ||
display: | display: grid; | ||
grid-template-columns: 125px 1fr auto; /* Logo, Text, und Links in Spalten aufteilen */ | |||
align-items: center; /* Zentriert die Inhalte vertikal */ | align-items: center; /* Zentriert die Inhalte vertikal */ | ||
padding: 10px 20px; | padding: 10px 20px; | ||
column-gap: 20px; /* Abstand zwischen den Spalten */ | |||
} | } | ||
Zeile 19: | Zeile 18: | ||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
} | } | ||
Zeile 32: | Zeile 23: | ||
font-size: 14px; | font-size: 14px; | ||
color: #ccc; | color: #ccc; | ||
line-height: 1.5; /* | line-height: 1.5; | ||
text-align: left; /* Text linksbündig ausrichten */ | |||
} | } | ||
.footer-links { | .footer-links { | ||
text-align: right; /* Links rechtsbündig ausrichten */ | |||
display: flex; | |||
flex-direction: column; /* Links untereinander anordnen */ | |||
gap: 5px; /* Abstand zwischen den Links */ | |||
} | } | ||
.footer-links a { | .footer-links a { | ||
color: #fff; | color: #fff; | ||
text-decoration: none; | text-decoration: none; | ||
} | } | ||
Version vom 26. August 2024, 17:11 Uhr
/* Das folgende CSS wird für Benutzer des Citizen-Skins geladen */ #siteSub { display: none; } /* das "siteSub nicht löschen */ .citizen-footer__siteinfo { display: grid; grid-template-columns: 125px 1fr auto; /* Logo, Text, und Links in Spalten aufteilen */ align-items: center; /* Zentriert die Inhalte vertikal */ padding: 10px 20px; column-gap: 20px; /* Abstand zwischen den Spalten */ } .footer-logo { width: 125px; height: 88px; } .footer-text { font-size: 14px; color: #ccc; line-height: 1.5; text-align: left; /* Text linksbündig ausrichten */ } .footer-links { text-align: right; /* Links rechtsbündig ausrichten */ display: flex; flex-direction: column; /* Links untereinander anordnen */ gap: 5px; /* Abstand zwischen den Links */ } .footer-links a { color: #fff; text-decoration: none; } .footer-links a:hover { text-decoration: underline; }