MediaWiki:Common.css: Difference between revisions

From Ethene
Content deleted Content added
m Remove h3.
m Oops, copy/paste issue. Had a trailing double quote on the sans-serif font-family.
Line 5: Line 5:
/* Changes the default font used for MediaWiki to Varela Round (does not include headings or monospaced text): */
/* Changes the default font used for MediaWiki to Varela Round (does not include headings or monospaced text): */
body {
body {
font-family: "Varela Round", sans-serif;"
font-family: "Varela Round", sans-serif;
}
}


Line 11: Line 11:
#content h1,
#content h1,
#content h2 {
#content h2 {
font-family: "Varela Round", sans-serif;"
font-family: "Varela Round", sans-serif;
}
}

Revision as of 05:10, 29 October 2023

/* CSS placed here will be applied to all skins */

@import url( 'https://fonts.googleapis.com/css2?family=Varela+Round');

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

/* Changes the default font used for MediaWiki headings to Varela Round: */
#content h1, 
#content h2 {
  font-family: "Varela Round", sans-serif;
}