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: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 1: Line 1:
/* Body and general theme */
body {
body {
     background-color: #1b1814;
     background-color: #0d0d0d;
     color: #f3e8d0;
     background-image: url("/images/war_texture.png");
     font-family: 'MedievalSharp', 'UnifrakturCook', Georgia, serif;
     background-repeat: repeat;
    color: #f5e6c4;
}
}


/* 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 {
#content {
     border: 2px solid #a67c00;
     border: 2px solid #a67c00;
     padding: 20px;
     padding: 20px;
     background-color: #2b241e;
     background-color: #2a0000;
     border-radius: 8px;
     border-radius: 8px;
}
     box-shadow: 0 0 10px black inset;
 
/* Tables */
table {
     border: 2px solid #a67c00;
    background-color: #2b241e;
    color: #f3e8d0;
}
th {
    background-color: #3b2b1f;
}
}

Revision as of 23:57, 14 November 2025

body {
    background-color: #0d0d0d;
    background-image: url("/images/war_texture.png");
    background-repeat: repeat;
    color: #f5e6c4;
}

#content {
    border: 2px solid #a67c00;
    padding: 20px;
    background-color: #2a0000;
    border-radius: 8px;
    box-shadow: 0 0 10px black inset;
}