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: flex; | |||
padding: 10px | justify-content: space-between; /* Verteilt Platz zwischen den Elementen */ | ||
align-items: center; /* Zentriert die Inhalte vertikal */ | |||
padding: 10px 20px; | |||
flex-wrap: wrap; /* Ermöglicht das Umbrechen auf kleineren Bildschirmen */ | |||
} | } | ||
.footer-logo { | .footer-logo { | ||
width: 125px; | width: 125px; | ||
height: 88px; | height: 88px; | ||
margin-right: 20px; | margin-right: 20px; /* Abstand zwischen Logo und Text */ | ||
flex-shrink: 0; /* Verhindert, dass das Logo skaliert wird */ | |||
} | |||
.footer-content { | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
max-width: 50%; /* Begrenzung der Breite für den Text */ | |||
} | } | ||
.footer-text { | .footer-text { | ||
font-size: 14px; | font-size: 14px; | ||
color: #ccc; | color: #ccc; | ||
line-height: 1. | line-height: 1.5; /* Line-Height für bessere Lesbarkeit */ | ||
} | } | ||
.footer-links { | .footer-links { | ||
display: flex; | |||
flex-direction: column; /* Links untereinander anordnen */ | |||
margin-left: | align-items: flex-end; /* Rechts ausrichten */ | ||
margin-left: auto; /* Links nach rechts schieben */ | |||
} | } | ||
.footer-links a { | .footer-links a { | ||
color: #fff; | color: #fff; | ||
text-decoration: none; | text-decoration: none; | ||
margin-bottom: 5px; | margin-bottom: 5px; /* Abstand zwischen den Links */ | ||
} | } | ||
.footer-links a:hover { | .footer-links a:hover { | ||
text-decoration: underline; | text-decoration: underline; | ||
} | } | ||
Version vom 26. August 2024, 17:07 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 Elementen */
align-items: center; /* Zentriert die Inhalte vertikal */
padding: 10px 20px;
flex-wrap: wrap; /* Ermöglicht das Umbrechen auf kleineren Bildschirmen */
}
.footer-logo {
width: 125px;
height: 88px;
margin-right: 20px; /* Abstand zwischen Logo und Text */
flex-shrink: 0; /* Verhindert, dass das Logo skaliert wird */
}
.footer-content {
display: flex;
flex-direction: column;
justify-content: center;
max-width: 50%; /* Begrenzung der Breite für den Text */
}
.footer-text {
font-size: 14px;
color: #ccc;
line-height: 1.5; /* Line-Height für bessere Lesbarkeit */
}
.footer-links {
display: flex;
flex-direction: column; /* Links untereinander anordnen */
align-items: flex-end; /* Rechts ausrichten */
margin-left: auto; /* Links nach rechts schieben */
}
.footer-links a {
color: #fff;
text-decoration: none;
margin-bottom: 5px; /* Abstand zwischen den Links */
}
.footer-links a:hover {
text-decoration: underline;
}