Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 78: Zeile 78:


#custom-langbar {
#custom-langbar {
   background: #f8f9fa;
   background: none;             /* Hintergrund weg */
   padding: 4px 8px;
   padding: 0;                   /* Kein Extra-Padding */
   text-align: center;
   text-align: center;
   border-bottom: 1px solid #ddd;
   border-bottom: none;           /* Keine Linie unten */
}
}
#custom-langbar a {
#custom-langbar a {
   margin: 0 10px;
   margin: 0 10px;
   text-decoration: none;
   text-decoration: none;
   color: #202122;
   color: #0645ad;                 /* Wiki-Link-Blau */
   opacity: 0.7;
   opacity: 1;                     /* Volle Deckkraft */
}
}
#custom-langbar a:hover { opacity: 1; }
 
#custom-langbar a:hover {
  text-decoration: underline;     /* Hover wie Wiki-Links */
}
 
#custom-langbar a.active-lang {
#custom-langbar a.active-lang {
   font-weight: 600;
   font-weight: 600;
   text-decoration: underline; /* oder ersetze das durch einen echten _ Prefix */
   text-decoration: underline;     /* Unterstreichung für aktive Sprache */
}
}

Version vom 8. August 2025, 09:54 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Basis – alles auf Poppins setzen */
body,
body.skin-vector,
body.skin-minerva,
#content,
#mw-content-text,
.mw-body,
.mw-body-content,
.mw-parser-output,
p,
li,
a,
table,
td,
th,
.navbox,
.toc,
#p-navigation,
.vector-menu,
.minerva-navigation-drawer,
#footer,
#catlinks,
#mw-panel,
div,
span,
ul,
ol,
input,
textarea,
select,
button,
label,
caption {
  font-family: 'Poppins', sans-serif !important;
}

/* Alle Überschriften */
h1, h2, h3, h4, h5, h6,
.mw-headline,
.firstHeading,
.page-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
}

/* Optional: Gewicht für Fließtext leichter */
p, li, td, th {
  font-weight: 300 !important;
}

/* Inhaltsverzeichnis */
.toc, .tocnumber, .toctext {
  font-family: 'Poppins', sans-serif !important;
}

h1.firstHeading {
    display: none;
}

/* Einheitlicher Hintergrund für ALLE Bilder */
img {
  background-color: rgb(220, 220, 220) !important;
  padding: 2px;
  border-radius: 4px;
}

/* Hintergrund für Bilder in Galerieansicht */
.gallerybox .thumb,
.gallerybox .thumb img,
.thumbinner,
.thumbinner img {
  background-color: rgb(220, 220, 220) !important;
}

#custom-langbar {
  background: none;              /* Hintergrund weg */
  padding: 0;                    /* Kein Extra-Padding */
  text-align: center;
  border-bottom: none;           /* Keine Linie unten */
}

#custom-langbar a {
  margin: 0 10px;
  text-decoration: none;
  color: #0645ad;                 /* Wiki-Link-Blau */
  opacity: 1;                     /* Volle Deckkraft */
}

#custom-langbar a:hover {
  text-decoration: underline;     /* Hover wie Wiki-Links */
}

#custom-langbar a.active-lang {
  font-weight: 600;
  text-decoration: underline;     /* Unterstreichung für aktive Sprache */
}