Jump to content

MediaWiki:Minerva.css: Difference between revisions

From Climbopedia
proof-of-concept - background image
 
m testing - formatting - chatgpt
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 */
body::before { content: ""; background: url(https://www.tradgear.nl/images/d/de/Pivot.jpg); }
 
body {
    background: url("https://example.com/your-background.jpg") no-repeat center center fixed;
    background-size: cover;
}
 
.mw-body {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1em;
    border-radius: 8px;
}

Revision as of 18:34, 20 September 2025

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

body {
    background: url("https://example.com/your-background.jpg") no-repeat center center fixed;
    background-size: cover;
}

.mw-body {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1em;
    border-radius: 8px;
}