Toggle menu
20
62
5
836
Irontide Fantasy Roleplay
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css

MediaWiki interface page
Revision as of 23:55, 14 November 2025 by Admin (talk | contribs)

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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Body and general theme */
body {
    background-color: #1b1814;
    color: #f3e8d0;
    font-family: 'MedievalSharp', 'UnifrakturCook', Georgia, serif;
}

/* Sidebar and headers */
#mw-panel, #mw-head {
    background-color: #2b241e;
    color: #f3e8d0;
}

/* Links */
a {
    color: #c72c41;
}
a:hover {
    color: #d4a017;
}

/* Top buttons */
.top-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.top-buttons a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #2b241e;
    color: #d4a017;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #a67c00;
    border-radius: 5px;
    font-family: 'UnifrakturCook', serif;
    transition: all 0.2s;
}

.top-buttons a:hover {
    background-color: #d4a017;
    color: #2b241e;
    transform: translateY(-2px);
}

.top-buttons a img {
    height: 20px;
    width: 20px;
    margin-right: 8px;
}

/* Content boxes */
#content {
    border: 2px solid #a67c00;
    padding: 20px;
    background-color: #2b241e;
    border-radius: 8px;
}

/* Tables */
table {
    border: 2px solid #a67c00;
    background-color: #2b241e;
    color: #f3e8d0;
}
th {
    background-color: #3b2b1f;
}