MediaWiki:Common.css: verschil tussen versies

Uit ewmagazinewiki.nl
Naar navigatie springen Naar zoeken springen
(Nieuwe pagina aangemaakt met '→‎* CSS die hier wordt geplaatst heeft invloed op alle skins: .light-background .caption p, h3 { color: #fff; }')
 
 
(2 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
 
/** CSS die hier wordt geplaatst heeft invloed op alle skins */
 
/** CSS die hier wordt geplaatst heeft invloed op alle skins */
 
.light-background .caption p, h3 {
 
.light-background .caption p, h3 {
     color: #fff;
+
     color: #000;
 +
}
 +
@import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif ');
 +
 
 +
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
 +
body {
 +
  font-family: "Noto Sans", sans-serif;
 +
}
 +
 
 +
/* Changes the default font used for MediaWiki headings to Noto Serif: */
 +
#content h1,
 +
#content h2 {
 +
  font-family: "Noto Serif", serif;
 +
  font-weight: 700;
 
}
 
}

Huidige versie van 20 feb 2021 om 15:34

/** CSS die hier wordt geplaatst heeft invloed op alle skins */
.light-background .caption p, h3 {
    color: #000;
}
@import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif ');

/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
body {
  font-family: "Noto Sans", sans-serif;
}

/* Changes the default font used for MediaWiki headings to Noto Serif: */
#content h1, 
#content h2 {
  font-family: "Noto Serif", serif;
  font-weight: 700;
}