MediaWiki:Common.css: Difference between revisions

From Aether Kingdoms Wiki
Basic CSS. First version
 
Another test for CSS
Line 1: Line 1:
   /* ── AetherKingdoms Theme ── */
   /* ── AetherKingdoms Theme ── */
  :root {
      --color-primary: #c8960c;
      --color-primary-light: #e8b830;
  }


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


   /* Sidebar and content panels */
   /* Content area - semi-transparent dark panel */
   #mw-panel, #contentSub, .mw-body {
   .mw-body {
       background-color: rgba(20, 15, 10, 0.92);
      background-color: rgba(15, 20, 15, 0.93);
       border-color: #c8960c;
      border: 1px solid #4a6a3a;
      color: #e8dcc8;
  }
 
  /* Sidebar */
  #mw-panel {
       background-color: rgba(12, 18, 12, 0.93);
       border-right: 1px solid #4a6a3a;
   }
   }


Line 24: Line 27:
       color: #e8b830;
       color: #e8b830;
       font-family: 'Georgia', 'Times New Roman', serif;
       font-family: 'Georgia', 'Times New Roman', serif;
       border-bottom-color: #c8960c;
       border-bottom: 1px solid #c8960c;
   }
   }


Line 33: Line 36:
   a:hover {
   a:hover {
       color: #e8b830;
       color: #e8b830;
      text-decoration: underline;
   }
   }


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


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

Revision as of 22:09, 6 April 2026

  /* ── 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;
  }