Jump to content

MediaWiki:Common.css: Difference between revisions

From Kelpwing Wiki
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
     font-family: 'Carlito', Sans-Serif;
     font-family: 'Carlito', Sans-Serif;
}
}
body.page-Main_Page h1.firstHeading { display: none !important; }


.infobox {
.infobox {

Latest revision as of 11:58, 21 April 2026

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

@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

body {
    background: #1a1d0a;
    color: white;
    font-family: 'Carlito', 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;
}

.mw-heading {
    color: #cddc39;
    --border-color-base: #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;
}