Änderung 180 von Beeventionmanual (Diskussion) rückgängig gemacht.
Keine Bearbeitungszusammenfassung
Zeile 78: Zeile 78:


#custom-langbar {
#custom-langbar {
    background: #f8f9fa;
  background: #f8f9fa;
    padding: 4px 8px;
  padding: 4px 8px;
    text-align: center;
  text-align: center;
    border-bottom: 1px solid #ccc;
  border-bottom: 1px solid #ddd;
}
}
#custom-langbar a {
#custom-langbar a {
    margin: 0 8px;
  margin: 0 10px;
    text-decoration: none;
  text-decoration: none;
    color: #0645ad;
  color: #202122;
    font-weight: normal;
  opacity: 0.7;
}
}
#custom-langbar a:hover { opacity: 1; }
#custom-langbar a.active-lang {
#custom-langbar a.active-lang {
    font-weight: bold;
  font-weight: 600;
    text-decoration: underline;
  text-decoration: underline; /* oder ersetze das durch einen echten _ Prefix */
}
}

Version vom 8. August 2025, 09:52 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: #f8f9fa;
  padding: 4px 8px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
#custom-langbar a {
  margin: 0 10px;
  text-decoration: none;
  color: #202122;
  opacity: 0.7;
}
#custom-langbar a:hover { opacity: 1; }
#custom-langbar a.active-lang {
  font-weight: 600;
  text-decoration: underline; /* oder ersetze das durch einen echten _ Prefix */
}