MediaWiki:Common.css: Difference between revisions

From Purrpedia
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: body { background-color: #101418; color: #e0e0e0; } #content, .mw-body { background-color: #1a1a1a; color: #e0e0e0; border-color: #333; } #mw-panel, .mw-portlet { background-color: #101418; color: #cfcfcf; } a { color: #7ab8ff; } a.new { color: #d67b7b; } .infobox { background-color: #202020; color: #e0e0e0; border: 1px solid #444; } .infobox th { background-color..."
 
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
body {
body {
     background-color: #101418;
     background-color: #101418;
Line 11: Line 10:
}
}


#mw-panel, .mw-portlet {
#mw-panel, .mw-portlet, .portal {
     background-color: #101418;
     background-color: #101418;
     color: #cfcfcf;
}
 
#mw-panel .body ul li a,
#p-logo a,
.mw-portlet .body li a {
    color: #a8c7e8 !important;
}
 
#p-personal a,
#p-personal ul li a {
     color: #a8c7e8 !important;
}
}


Line 22: Line 31:
a.new {
a.new {
     color: #d67b7b;
     color: #d67b7b;
}
h1, h2, h3, h4, h5 {
    color: #f0f0f0 !important;
    border-color: #444 !important;
    background-color: transparent !important;
}
.mw-editsection a {
    color: #7ab8ff !important;
}
.toc, .toccolours, #toc {
    background-color: #202020 !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
}
.toc a, #toc a {
    color: #7ab8ff !important;
}
}


Line 32: Line 61:
.infobox th {
.infobox th {
     background-color: #2b2b2b;
     background-color: #2b2b2b;
    color: #f0f0f0;
}
}


input, textarea {
input, textarea, select {
     background-color: #1e1e1e;
     background-color: #1e1e1e;
     color: #e0e0e0;
     color: #e0e0e0;
Line 46: Line 76:
}
}


h1, h2, h3, h4 {
#footer, #footer-info, #footer-places {
     color: #f0f0f0;
     background-color: #101418 !important;
     border-color: #444;
     color: #999 !important;
}
 
#footer a {
    color: #7ab8ff !important;
}
}

Revision as of 21:41, 5 July 2026

body {
    background-color: #101418;
    color: #e0e0e0;
}

#content, .mw-body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-color: #333;
}

#mw-panel, .mw-portlet, .portal {
    background-color: #101418;
}

#mw-panel .body ul li a,
#p-logo a,
.mw-portlet .body li a {
    color: #a8c7e8 !important;
}

#p-personal a,
#p-personal ul li a {
    color: #a8c7e8 !important;
}

a {
    color: #7ab8ff;
}

a.new {
    color: #d67b7b;
}

h1, h2, h3, h4, h5 {
    color: #f0f0f0 !important;
    border-color: #444 !important;
    background-color: transparent !important;
}

.mw-editsection a {
    color: #7ab8ff !important;
}

.toc, .toccolours, #toc {
    background-color: #202020 !important;
    color: #e0e0e0 !important;
    border: 1px solid #444 !important;
}

.toc a, #toc a {
    color: #7ab8ff !important;
}

.infobox {
    background-color: #202020;
    color: #e0e0e0;
    border: 1px solid #444;
}

.infobox th {
    background-color: #2b2b2b;
    color: #f0f0f0;
}

input, textarea, select {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #444;
}

.cdx-button {
    background-color: #2b2b2b;
    color: #e0e0e0;
    border: 1px solid #555;
}

#footer, #footer-info, #footer-places {
    background-color: #101418 !important;
    color: #999 !important;
}

#footer a {
    color: #7ab8ff !important;
}