Weitere Optionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 4: | Zeile 4: | ||
} | } | ||
/* das "siteSub nicht löschen */ | /* das "siteSub nicht löschen */.citizen-footer__siteinfo { | ||
.citizen-footer__siteinfo { | |||
display: flex; | display: flex; | ||
justify-content: space-between; /* Verteilt Platz zwischen den | justify-content: space-between; /* Verteilt Platz zwischen den Hauptgruppen */ | ||
align-items: center; /* Zentriert die Inhalte vertikal */ | align-items: center; /* Zentriert die Inhalte vertikal */ | ||
padding: 10px 20px; | padding: 10px 20px; | ||
text-align: left; /* Sorgt dafür, dass der Text linksbündig bleibt */ | |||
} | } | ||
Zeile 16: | Zeile 15: | ||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
margin-right: 20px; | margin-right: 20px; | ||
flex-shrink: 0; | flex-shrink: 0; | ||
} | } | ||
.footer-content { | .footer-content { | ||
flex-grow: 1; | |||
flex- | max-width: 60%; /* Breitenbegrenzung für den Text, um mehr Platz für die Links zu schaffen */ | ||
max-width: | |||
} | } | ||
Zeile 30: | Zeile 27: | ||
font-size: 14px; | font-size: 14px; | ||
color: #ccc; | color: #ccc; | ||
line-height: 1.5; /* | line-height: 1.5; /* Verbesserung der Lesbarkeit */ | ||
} | } | ||
.footer-links { | .footer-links { | ||
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; | ||
margin-bottom: 5px; | margin-bottom: 5px; | ||
} | } | ||
Version vom 26. August 2024, 17:08 Uhr
/* Das folgende CSS wird für Benutzer des Citizen-Skins geladen */ #siteSub { display: none; } /* das "siteSub nicht löschen */.citizen-footer__siteinfo { display: flex; justify-content: space-between; /* Verteilt Platz zwischen den Hauptgruppen */ align-items: center; /* Zentriert die Inhalte vertikal */ padding: 10px 20px; text-align: left; /* Sorgt dafür, dass der Text linksbündig bleibt */ } .footer-logo { width: 125px; height: 88px; margin-right: 20px; flex-shrink: 0; } .footer-content { flex-grow: 1; max-width: 60%; /* Breitenbegrenzung für den Text, um mehr Platz für die Links zu schaffen */ } .footer-text { font-size: 14px; color: #ccc; line-height: 1.5; /* Verbesserung der Lesbarkeit */ } .footer-links { 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; }