MediaWiki:Common.css

From MiWiki
Revision as of 18:34, 16 October 2025 by Miwikibeam (talk | contribs) (blockquote)

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* CSS placed here will be applied to all skins */

.mw-body-content {
	font-family: Times New Roman;	
}

[lang="ja"] {
	/*from https://stackoverflow.com/a/14573813*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

em {
	font-style: inherit;
	font-variant: small-caps;
}

blockquote {
	width: fit-content;
	position: relative;
}
blockquote::after {
	content: "”";
	position: absolute;
	right: -0.5em;
	font-size: 2em;
	bottom: -0.5em;
}
blockquote::before {
	content: "“";
	position: absolute;
	left: -0.5em;
	font-size: 2em;
	top: -0.25em;
}