MediaWiki:Common.css: Difference between revisions

From Practices and Politics of Representation
Jump to navigation Jump to search
Created page with "Set dark background and light text: body, #content, .mw-body, .mw-page-container { background-color: #121212 !important; color: #e0e0e0 !important; } Style links: a, a:link, a:visited { color: #80cbc4 !important; } a:hover { color: #b2dfdb !important; } Side panel, top navigation bar, and footer: #mw-panel, #mw-head, #footer { background-color: #1e1e1e !important; color: #ccc !important; } Headings (page titles etc.): h1, h..."
 
No edit summary
Line 1: Line 1:
/* Set dark background and light text */
/* Base layout - flat, dark background */
body, #content, .mw-body, .mw-page-container {
body, .mw-body, .mw-page-container {
     background-color: #121212 !important;
     background-color: #121212 !important;
     color: #e0e0e0 !important;
     color: #e0e0e0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
}


/* Style links */
/* Links - soft color, no underline */
a, a:link, a:visited {
a, a:link, a:visited {
     color: #80cbc4 !important;
     color: #80cbc4 !important;
    text-decoration: none !important;
}
}


a:hover {
a:hover {
     color: #b2dfdb !important;
     color: #b2dfdb !important;
    text-decoration: underline !important;
}
}


/* Side panel, top navigation bar, and footer */
/* Panels - no gradients, no borders */
#mw-panel, #mw-head, #footer {
#mw-panel, #mw-head, #footer {
     background-color: #1e1e1e !important;
     background-color: #1c1c1c !important;
     color: #ccc !important;
     color: #cccccc !important;
    box-shadow: none !important;
    border: none !important;
}
}


/* Headings (page titles etc.) */
/* Headings - bold and clean */
h1, h2, h3, h4, h5 {
h1, h2, h3, h4, h5 {
     color: #ffffff !important;
     color: #ffffff !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #2c2c2c !important;
    padding-bottom: 4px;
}
}


/* Input fields and text areas */
/* Inputs and buttons - flat and dark */
input, textarea, select {
input, textarea, select, button {
     background-color: #1e1e1e !important;
     background-color: #1e1e1e !important;
     color: #eee !important;
     color: #eeeeee !important;
     border: 1px solid #444 !important;
     border: 1px solid #444 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 6px 8px !important;
}
input:focus, textarea:focus, select:focus {
    border-color: #80cbc4 !important;
    outline: none !important;
}
}


/* Message boxes and alerts */
/* Message boxes - flat background */
.mw-message-box, .mw-warning, .successbox {
.mw-message-box, .mw-warning, .successbox {
     background-color: #333 !important;
     background-color: #2a2a2a !important;
     border-color: #555 !important;
     border: 1px solid #444 !important;
     color: #eee !important;
    color: #dddddd !important;
     border-radius: 0 !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
}
 
/* Hide logo and any rounded/3D borders */
#p-logo, .mw-wiki-logo {
    display: none !important;
}
}


/* Sidebar section titles */
/* Sidebar section titles - flat */
.portal h3 {
.portal h3 {
     color: #eee !important;
     color: #bbbbbb !important;
    border-bottom: 1px solid #333 !important;
    margin-bottom: 6px;
    font-weight: 500 !important;
}
}

Revision as of 13:57, 30 June 2025

/* Base layout - flat, dark background */
body, .mw-body, .mw-page-container {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Links - soft color, no underline */
a, a:link, a:visited {
    color: #80cbc4 !important;
    text-decoration: none !important;
}

a:hover {
    color: #b2dfdb !important;
    text-decoration: underline !important;
}

/* Panels - no gradients, no borders */
#mw-panel, #mw-head, #footer {
    background-color: #1c1c1c !important;
    color: #cccccc !important;
    box-shadow: none !important;
    border: none !important;
}

/* Headings - bold and clean */
h1, h2, h3, h4, h5 {
    color: #ffffff !important;
    font-weight: 600 !important;
    border-bottom: 1px solid #2c2c2c !important;
    padding-bottom: 4px;
}

/* Inputs and buttons - flat and dark */
input, textarea, select, button {
    background-color: #1e1e1e !important;
    color: #eeeeee !important;
    border: 1px solid #444 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 6px 8px !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #80cbc4 !important;
    outline: none !important;
}

/* Message boxes - flat background */
.mw-message-box, .mw-warning, .successbox {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #dddddd !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 8px 12px !important;
}

/* Hide logo and any rounded/3D borders */
#p-logo, .mw-wiki-logo {
    display: none !important;
}

/* Sidebar section titles - flat */
.portal h3 {
    color: #bbbbbb !important;
    border-bottom: 1px solid #333 !important;
    margin-bottom: 6px;
    font-weight: 500 !important;
}