MediaWiki:Common.css

From Wizards & Warlords Wiki
Revision as of 02:14, 19 March 2026 by Aurelian (talk | contribs) (Created page with "CSS placed here will be applied to all skins: .wiz-grid { outline: 5px solid red !important; } .wiz-grid-item { width: 100%; } .wiz-grid-item img { display: block; width: 100%; height: auto; border: 0; background: transparent; box-shadow: none; } .wiz-grid-text { margin-top: 8px; } @media (max-width: 1100px) { .wiz-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } } @media (max-width: 700px) { .wiz-grid { grid-template-colu...")
(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 */


.wiz-grid {
	outline: 5px solid red !important;
}

.wiz-grid-item {
	width: 100%;
}

.wiz-grid-item img {
	display: block;
	width: 100%;
	height: auto;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.wiz-grid-text {
	margin-top: 8px;
}

@media (max-width: 1100px) {
	.wiz-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 700px) {
	.wiz-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}