MediaWiki:Common.css: Difference between revisions

From UO Dark Ages Player Guide
Jump to navigation Jump to search
(Created page with "→‎── Body & Background ──: body { font-family: Georgia, serif; background: #050505; color: #d7d2c8; } →‎── Content Area ──: #content, .mw-body { background: rgba(10,8,5,0.92); color: #d7d2c8; border: 1px solid #7a5827; } →‎── Links ──: a, a:visited { color: #D4A843; } a:hover { color: #f0c060; } →‎── Headings ──: h1, h2, h3, h4, h5, h6, .mw-body h1, .mw-body h2 { font-family: Georgia, serif; c...")
 
No edit summary
Line 1: Line 1:
/* ── Body & Background ── */
/* Dark Theme */
body {
body { background-color: #0d0b08; color: #c9c0b0; }
    font-family: Georgia, serif;
    background: #050505;
    color: #d7d2c8;
}


/* ── Content Area ── */
#content, .mw-body {
#content, .mw-body {
     background: rgba(10,8,5,0.92);
     background-color: #1a1612;
     color: #d7d2c8;
     color: #c9c0b0;
     border: 1px solid #7a5827;
     border-color: #3a3020;
}
}


/* ── Links ── */
a, a:visited { color: #D4A843; }
a, a:visited { color: #D4A843; }
a:hover { color: #f0c060; }
a:hover { color: #f0c060; }


/* ── Headings ── */
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6,
.mw-body h1, .mw-body h2 {
    font-family: Georgia, serif;
     color: #D4A843;
     color: #D4A843;
     border-bottom-color: #7a5827;
     border-color: #3a3020;
}
}


/* ── Sidebar/Nav ── */
#mw-panel, .mw-sidebar {
#mw-panel, .mw-sidebar {
     background: linear-gradient(to bottom, rgba(20,20,20,0.98), rgba(5,5,5,0.98));
     background-color: #111008;
    border-right: 1px solid #7a5827;
}
}


#mw-panel a, .mw-sidebar a { color: #D4A843; }
#mw-panel a:hover { color: #f0c060; }
/* ── Top bar ── */
#mw-head {
#mw-head {
     background: linear-gradient(to bottom, rgba(20,20,20,0.98), rgba(5,5,5,0.98));
     background-color: #111008;
    border-bottom: 2px solid #7a5827;
}
}


/* ── Tables ── */
.wikitable {
table, .wikitable {
     background: rgba(15,12,8,0.9);
     background: rgba(15,12,8,0.9);
     border-color: #7a5827;
     border-color: #7a5827;
     color: #d7d2c8;
     color: #d7d2c8;
}
}
.wikitable th {
.wikitable th {
     background: rgba(122,88,39,0.3);
     background: rgba(122,88,39,0.3);
Line 51: Line 35:
     border-color: #7a5827;
     border-color: #7a5827;
}
}
.wikitable td { border-color: #7a5827; }
.wikitable td { border-color: #7a5827; }


/* ── Search box ── */
#searchInput {
    background: #1a1612;
    color: #d7d2c8;
    border: 1px solid #7a5827;
}
/* ── Footer ── */
#footer {
#footer {
     background: rgba(5,5,5,0.98);
     background: rgba(5,5,5,0.98);

Revision as of 21:07, 1 April 2026

/* Dark Theme */
body { background-color: #0d0b08; color: #c9c0b0; }

#content, .mw-body {
    background-color: #1a1612;
    color: #c9c0b0;
    border-color: #3a3020;
}

a, a:visited { color: #D4A843; }
a:hover { color: #f0c060; }

h1, h2, h3, h4, h5, h6 {
    color: #D4A843;
    border-color: #3a3020;
}

#mw-panel, .mw-sidebar {
    background-color: #111008;
}

#mw-head {
    background-color: #111008;
}

.wikitable {
    background: rgba(15,12,8,0.9);
    border-color: #7a5827;
    color: #d7d2c8;
}

.wikitable th {
    background: rgba(122,88,39,0.3);
    color: #D4A843;
    border-color: #7a5827;
}

.wikitable td { border-color: #7a5827; }

#footer {
    background: rgba(5,5,5,0.98);
    border-top: 1px solid #7a5827;
    color: #6a6050;
}