Jump to content

MediaWiki:Common.css

From MineMania Wiki
Revision as of 16:59, 4 June 2026 by Computerwhz (talk | contribs) (Created page with "CSS placed here will be applied to all skins: .cw-messagebox { border: 1px solid #72777d; background: #f8f9fa; color: #202122; margin: 1em 0; padding: 0.75em 1em; display: flex; align-items: center; gap: 0.9em; box-sizing: border-box; } .cw-messagebox a { color: #36c; } .cw-messagebox-icon { width: 32px; min-width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1; text-align: center...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 */
.cw-messagebox {
	border: 1px solid #72777d;
	background: #f8f9fa;
	color: #202122;
	margin: 1em 0;
	padding: 0.75em 1em;
	display: flex;
	align-items: center;
	gap: 0.9em;
	box-sizing: border-box;
}

.cw-messagebox a {
	color: #36c;
}

.cw-messagebox-icon {
	width: 32px;
	min-width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
	text-align: center;
	color: inherit;
}

.cw-messagebox-icon img {
	max-width: 32px;
	max-height: 32px;
}

.cw-messagebox-content {
	flex: 1;
	color: inherit;
}

/* Vector 2022 / MediaWiki dark mode */
html.skin-theme-clientpref-night .cw-messagebox,
html.skin-theme-clientpref-os .cw-messagebox {
	background: #202122;
	color: #f8f9fa;
	border-color: #54595d;
}

html.skin-theme-clientpref-night .cw-messagebox a,
html.skin-theme-clientpref-os .cw-messagebox a {
	color: #6bace6;
}