MediaWiki:Common.css: Difference between revisions

From Renesas.info
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* https://www.mediawiki.org/wiki/Manual:Remove_Tabs */
/* https://www.mediawiki.org/wiki/Manual:Remove_Tabs */
Line 10: Line 9:


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

Revision as of 20:31, 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): */

element { font-family: "Courier New"; }

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;
}