MediaWiki:Common.css

From FSU Fox's Lab Wiki
Revision as of 00:39, 19 May 2022 by Rtang (talk | contribs) (Undo revision 870 by Rtang (talk))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */


/********* use google font  */ 
@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 {
 /*font-family: "Times New Roman", Times, serif;*/
 font-weight: bold;
 font-size: 30px;
} 
#content h2 {
  font-family: "Noto Serif", serif;
  font-weight: bold;
}


/******** Change for List style*/
ol { margin-left: 1cm}
ol { 
	list-style-type: decimal; 
}
ol li > ol { 
	list-style-type: lower-alpha; 
}
ol li > ol li > ol { 
	list-style-type: lower-roman; 
}