Difference between revisions of "MediaWiki:Common.css"

From NeuroRehab.wiki

Tag: Reverted
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<!DOCTYPE html>
<html>
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2115506814747739"
    crossorigin="anonymous"></script>
<style>
/* 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=Zen+Maru+Gothic&display=swap');
@import url( 'https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
Line 20: Line 14:
   font-family: "Zen Maru Gothic", sans-serif;
   font-family: "Zen Maru Gothic", sans-serif;
}
}
</style>
 
</head>
/* Changes the default lists to produce the usual system of numbered lists (1, 2, 3; then a, b, c; then i, ii, iii): */
<body>
ol {
</body>
list-style-type: decimal;
</html>
}
ol li > ol {
list-style-type: upper-alpha;
}
ol li > ol li > ol {
list-style-type: lower-alpha;
}
ol li > ol li > ol li > ol {
list-style-type: lower-roman;
}

Latest revision as of 10:19, 9 March 2023

/* CSS placed here will be applied to all skins */
@import url( 'https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

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

/* Changes the default font used for MediaWiki headings to Zen Maru Gothic: */
#content h1, 
#content h2 {
  color: #79589f;
  font-family: "Zen Maru Gothic", sans-serif;
}

/* Changes the default lists to produce the usual system of numbered lists (1, 2, 3; then a, b, c; then i, ii, iii): */
ol { 
	list-style-type: decimal; 
}
ol li > ol { 
	list-style-type: upper-alpha; 
}
ol li > ol li > ol { 
	list-style-type: lower-alpha; 
}
ol li > ol li > ol li > ol { 
	list-style-type: lower-roman; 
}