Jump to content

MediaWiki:Common.css: Difference between revisions

From Kelpwing Wiki
No edit summary
Tag: Reverted
No edit summary
Tags: Manual revert Reverted
Line 65: Line 65:
/* Hide the Discussion (Talk) tab */
/* Hide the Discussion (Talk) tab */
#ca-talk {
#ca-talk {
  display: none;
}
/* Hide theme toggle UI safely */
.vector-user-links a[href*="vector-theme"],
#pt-preferences {
   display: none;
   display: none;
}
}

Revision as of 21:01, 6 February 2026

/* CSS placed here will be applied to all skins */
body {
    background: #1a1d0a;
    color: white;
    font-family: Calibri, sans-serif;
}

.infobox {
    border: 2px solid #9ccc65;
    background: #2d3315;
    font-size: 90%;
    line-height: 1.4em;
    width: 300px;
    float: right;
    clear: right;
    margin: 0 0 1em 1em;
}

.infobox th {
    background: #4a5a1f;
    color: #f0f4c3;
    padding: 0.5em;
}

.infobox td {
    background: #2d3315;
    color: #d4e157;
    padding: 0.5em;
}

h2, h3, h4, h5 {
    color: #cddc39;
    border-bottom: 2px solid #9ccc65;
}

button {
    background: #8bc34a;
    color: #1a1d0a;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
}

button:hover {
    background: #1a1d0a;
    color:#cddc39;
    cursor: pointer;
}

a {
    color: #aed581;
}

a:hover {
    color: #f0f4c3;
}

.container {
    background: #15170a;
    padding: 1em;
    border: 1px solid #9ccc65;
    border-radius: 5px;
}

/* Hide the Discussion (Talk) tab */
#ca-talk {
  display: none;
}