Jump to content

MediaWiki:Minerva.css: Difference between revisions

From Climbopedia
mNo edit summary
mNo edit summary
Line 1: Line 1:
/* All CSS here will be loaded for users of the MinervaNeue skin */
/* All CSS here will be loaded for users of the MinervaNeue skin */


html, body {
html,
     background: url("https://www.tradgear.nl/images/d/de/Pivot.jpg") no-repeat center center fixed;
body {
     background-size: cover;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
     background: url("https://www.tradgear.nl/images/d/de/Pivot.jpg") no-repeat center center fixed !important;
     background-size: cover !important;
}
}


/* Ensure Minerva wrapper doesn’t override it */
/* Remove Minerva’s own background overrides */
.minerva {
.minerva,
.page,
.content,
.body,
.mw-body {
     background: transparent !important;
     background: transparent !important;
}
/* Make article content readable */
.content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1em;
    border-radius: 8px;
}
}

Revision as of 18:48, 20 September 2025

/* All CSS here will be loaded for users of the MinervaNeue skin */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: url("https://www.tradgear.nl/images/d/de/Pivot.jpg") no-repeat center center fixed !important;
    background-size: cover !important;
}

/* Remove Minerva’s own background overrides */
.minerva,
.page,
.content,
.body,
.mw-body {
    background: transparent !important;
}