Weitere Optionen
Die Seite wurde neu angelegt: „→Das folgende CSS wird für Benutzer des Citizen-Skins geladen: .citizen-page-header__title { display: none; } .citizen-page-header__subtitle { display: none; }“ |
Keine Bearbeitungszusammenfassung |
||
| (26 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
#siteSub { | |||
display: none; | display: none; | ||
} | |||
.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; | |||
} | } | ||
Aktuelle Version vom 26. August 2024, 17:35 Uhr
#siteSub {
display: none;
}
.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;
}