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 ── */ | ||
/* Page background */ | /* Page background with village scene */ | ||
body { | body { | ||
background-color: # | background-color: #1a2a1a; | ||
background-image: url('https:// | 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; | ||
} | } | ||
/* | /* Content area - semi-transparent dark panel */ | ||
.mw-body { | |||
background-color: rgba( | background-color: rgba(15, 20, 15, 0.93); | ||
border- | 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 | border-bottom: 1px solid #c8960c; | ||
} | } | ||
| Line 33: | Line 36: | ||
a:hover { | a:hover { | ||
color: #e8b830; | color: #e8b830; | ||
} | } | ||
/* | /* Sidebar links */ | ||
#mw-panel .portal .body a { | #mw-panel .portal .body a { | ||
color: #d4a843; | color: #d4a843; | ||
} | } | ||
/* | /* 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;
}
