MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Der Kampf um Naivara
Zeile 21: Zeile 21:
 
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
 
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
 
body {
 
body {
  font-family: "Open Sans", sans-serif;
+
font-family: 'Open Sans', sans-serif;
 
}
 
}
  
 
/* Changes the default font used for MediaWiki headings to Noto Serif: */
 
/* Changes the default font used for MediaWiki headings to Noto Serif: */
 
#content h1,  
 
#content h1,  
#content h2 {
+
#content h2  
  font-family: "Cardo", sans-serif;
+
{
 +
font-family: 'Cardo', serif;
 
}
 
}

Version vom 16. April 2021, 18:02 Uhr

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

/* Changes the background color of the bottom and left of each page, up to behind half of the logo: */
body {
  background: rgb(32, 34, 37);
font-color: white;
}

/* Changes the background color behind the top half of the logo and at top of each page: */
#mw-page-base {
  background: rgb(32, 34, 37);
}





@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');

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

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