Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 22:54, 24 May 2025 by Dweller (talk | contribs) (Created page with "CSS placed here will be applied to all skins: .carousel-container { overflow-x: auto; white-space: nowrap; padding: 10px; } .card { display: inline-block; vertical-align: top; width: 200px; margin-right: 12px; border: 1px solid #ccc; border-radius: 8px; padding: 8px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .card-image { text-align: center; margin-bottom: 8px; } .card-title { font-weight: bold; font-size: 1.1em;...")
(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 */

.carousel-container {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
}

.card {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  margin-right: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-image {
  text-align: center;
  margin-bottom: 8px;
}

.card-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 4px;
  text-align: center;
}

.card-snippet {
  font-size: 0.9em;
  color: #444;
}