MediaWiki:Common.css: Difference between revisions

From Legendary Hardcore Wiki
Jump to navigation Jump to search
No edit summary
Tag: Manual revert
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
body {
    background-image:
        url("/resources/assets/background_top.png"),
        url("/resources/assets/background_bottom.png");
    background-repeat:
        no-repeat,
        repeat-y;
    background-position:
        center top,
        center top;
    background-size:
        auto,
        auto;
}

Revision as of 08:15, 28 January 2026

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

body {
    background-image:
        url("/resources/assets/background_top.png"),
        url("/resources/assets/background_bottom.png");

    background-repeat:
        no-repeat,
        repeat-y;

    background-position:
        center top,
        center top;

    background-size:
        auto,
        auto;
}