Be sure to read our policy on citing sources before editing!

Difference between revisions of "MediaWiki:Common.css"

From Jiggywikki, a Banjo-Kazooie wiki
Jump to navigationJump to search
Line 44: Line 44:
table.wikitable > tr > th, table.wikitable > * > tr > th {
table.wikitable > tr > th, table.wikitable > * > tr > th {
     background:#ffcf3f;
     background:#ffcf3f;
    border:inherit;
}
table.wikitable > tr > td, table.wikitable > * > tr > td {
    background:#ffefbf;
    border:inherit;
}
}

Revision as of 20:59, November 10, 2018

/* CSS placed here will be applied to all skins */

/* links */
a {
    color:#1f2fff;
}
a:hover {
    color:#3f7fff;
}
a:visited {
    color:#4f1f9f;
}
a.new {
    color:#bf0000;
}
a.new:hover {
    color:#df3f3f;
}
a.new:visited {
    color:#9f2f2f;
}

/* background tiles */
body.mediawiki {
    background:#f6f6f6 url(/w/images/2/26/Background.png) repeat;
}

/* page background */
div#content.mw-body {
    background:#fff7df;
    border:1px solid #7f5f00;
}

/* tables */
table.wikitable {
    background:#ffdf7f;
    border:1px solid #7f5f00;
}
table.wikitable > caption {
    background:#ffdf7f;
    border-top-left-radius:1em;
    border-top-right-radius:1em;
}
table.wikitable > tr > th, table.wikitable > * > tr > th {
    background:#ffcf3f;
    border:inherit;
}
table.wikitable > tr > td, table.wikitable > * > tr > td {
    background:#ffefbf;
    border:inherit;
}