Difference between revisions of "MediaWiki:Common.css"

From arguably.io
Jump to navigation Jump to search
Tag: Replaced
 
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:wght@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;
}
/* Bring the text to 14px */
#mw-content-text {
  font-size: 13px;
}

Latest revision as of 21:06, 18 January 2022

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