Menü aufrufen
Spenden Seite Aufrufen
Persönliches Menü aufrufen
Nicht angemeldet
Ihre IP-Adresse wird öffentlich sichtbar sein, wenn Sie Änderungen vornehmen.

MediaWiki:Common.css: Unterschied zwischen den Versionen

MediaWiki-Schnittstellenseite
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 15: Zeile 15:
/* ================================================================*/
/* ================================================================*/
/* Footer anpassungen */
/* Footer anpassungen */
/* ================================================================*/
/* ================================================================*/.citizen-footer__siteinfo {
/* Hauptcontainer für das Footer-Layout */
     display: grid;
.citizen-footer__siteinfo {
     grid-template-columns: 125px 1fr auto; /* Logo, Text und Links in Spalten */
     display: flex;
    gap: 20px; /* Abstand zwischen den Spalten */
     justify-content: space-between; /* Platz zwischen den Hauptgruppen aufteilen */
     align-items: start; /* Vertikale Ausrichtung am oberen Rand */
     align-items: flex-start; /* Inhalte oben ausrichten */
     padding: 10px 20px;
     padding: 10px 20px;
    flex-wrap: wrap; /* Inhalte umbrechen, wenn der Platz nicht ausreicht */
}
}


/* Stile für das Logo im Footer */
.footer-logo {
.footer-logo {
     width: 125px;
     width: 125px;
     height: 88px;
     height: 88px;
    margin-right: 20px; /* Abstand zwischen Logo und Text */
    flex-shrink: 0; /* Verhindert, dass das Logo skaliert wird */
}
}


/* Container für Text und Links im Footer */
.footer-content {
.footer-content {
     display: flex;
     display: flex;
     flex-direction: column; /* Text und Links untereinander anordnen */
     flex-direction: column; /* Text und Links untereinander anordnen */
    flex-grow: 1; /* Füllt den verfügbaren Platz aus */
}
}


/* Stile für den Text im Footer */
.footer-text {
.footer-text {
     font-size: 14px;
     font-size: 14px;
     color: #ccc;
     color: #ccc;
     margin-bottom: 10px; /* Abstand zwischen Text und Links */
     margin-bottom: 10px;
}
}


/* Container für die Links im Footer */
.footer-links {
.footer-links {
     display: flex;
     display: flex;
     flex-direction: column; /* Links untereinander anordnen */
     flex-direction: column; /* Links untereinander anordnen */
     align-items: flex-end; /* Rechts ausrichten */
     align-items: flex-end;
}
}


/* Stile für die Links im Footer */
.footer-links a {
.footer-links a {
     color: #fff; /* Linkfarbe */
     color: #fff;
     text-decoration: none; /* Entfernt die Unterstreichung */
     text-decoration: none;
     margin-bottom: 5px; /* Abstand zwischen den Links */
     margin-bottom: 5px;
}
}


/* Hover-Effekt für die Links */
.footer-links a:hover {
.footer-links a:hover {
     text-decoration: underline; /* Unterstreicht die Links beim Hover */
     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;
}