MediaWiki:Common.css: Difference between revisions

From Renesas.info
No edit summary
No edit summary
Line 9: Line 9:




@import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif ');
/* Changes the default font used for MediaWiki (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: "Noto Sans", sans-serif;
   font-family: "Arial", sans-serif;
}
}



Revision as of 20:27, 26 April 2021

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


/* https://www.mediawiki.org/wiki/Manual:Remove_Tabs */

#ca-talk { display: none !important; }
#ca-history { display: none !important;}
#ca-viewsource { display: none !important; }


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

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