MediaWiki:Common.css

From Aether Kingdoms Wiki
Revision as of 22:09, 6 April 2026 by Ower (talk | contribs) (Another test for CSS)

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.
  /* ── AetherKingdoms Theme ── */

  /* Page background with village scene */
  body {
      background-color: #1a2a1a;
      background-image: url('https://aetherkingdoms.com/assets/backgrounds/bg_village_lowsat.png');
      background-size: cover;
      background-position: center top;
      background-attachment: fixed;
  }

  /* Content area - semi-transparent dark panel */
  .mw-body {
      background-color: rgba(15, 20, 15, 0.93);
      border: 1px solid #4a6a3a;
      color: #e8dcc8;
  }

  /* Sidebar */
  #mw-panel {
      background-color: rgba(12, 18, 12, 0.93);
      border-right: 1px solid #4a6a3a;
  }

  /* Headings */
  h1, h2, h3, h4, #firstHeading {
      color: #e8b830;
      font-family: 'Georgia', 'Times New Roman', serif;
      border-bottom: 1px solid #c8960c;
  }

  /* Links */
  a, a:visited {
      color: #c8960c;
  }
  a:hover {
      color: #e8b830;
  }

  /* Sidebar links */
  #mw-panel .portal .body a {
      color: #d4a843;
  }

  /* Body text */
  .mw-body-content {
      color: #e8dcc8;
  }

  /* Top bar */
  #mw-head {
      background-color: rgba(12, 18, 12, 0.95);
      border-bottom: 1px solid #4a6a3a;
  }