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

MediaWiki:Common.css

From Jiggywikki, a Banjo-Kazooie wiki
Revision as of 21:07, November 10, 2018 by Toomai (talk | contribs)
Jump to navigationJump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* 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:1px solid #7f5f00;
}
table.wikitable > tr:nth-child(odd) > td, table.wikitable > * > tr:nth-child(odd) > td {
    background:#ffefbf;
    border:1px solid #7f5f00;
}
table.wikitable > tr:nth-child(even) > td:nth-child(even), table.wikitable > * > tr:nth-child(even) > td {
    background:#ffe79f;
    border:1px solid #7f5f00;
}