Difference between revisions of "MediaWiki:Common.css"

From arguably.io
Jump to navigation Jump to search
(Created page with "→‎CSS placed here will be applied to all skins: @import url('https://fonts.googleapis.com/css2?family=Arimo&display=swap'); /* Changes the default font used for MediaWiki...")
 
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Arimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500&display=swap');


/* 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): */

Revision as of 19:14, 18 January 2022

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500&display=swap');

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

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