MediaWiki:Common.css

From The Nine Astral Doors Wiki
Revision as of 04:35, 19 May 2025 by Zoadra (talk | contribs) (Created page with "CSS placed here will be applied to all skins: Custom styles for Nine Astral Doors Wiki: Make side panels transparent/translucent: .color-right, .color-middle, .color-left { background-color: rgba(13, 31, 45, 0.2) !important; 80% transparent blue: } Ensure content area has proper contrast: #mw-content { background-color: rgba(10, 10, 26, 0.85) !important; } Ensure text remains readable in semi-transparent areas: .sidebar-chunk { back...")
(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 */
/* Custom styles for Nine Astral Doors Wiki */

/* Make side panels transparent/translucent */
.color-right,
.color-middle,
.color-left {
  background-color: rgba(13, 31, 45, 0.2) !important; /* 80% transparent blue */
}

/* Ensure content area has proper contrast */
#mw-content {
  background-color: rgba(10, 10, 26, 0.85) !important;
}

/* Ensure text remains readable in semi-transparent areas */
.sidebar-chunk {
  background-color: rgba(10, 10, 26, 0.7);
  margin: 1em 0.5em;
  padding: 0.5em;
  border-radius: 3px;
}