MediaWiki:Common.css: Difference between revisions

From Delve Wiki
Jump to navigation Jump to search
Created page with "CSS placed here will be applied to all skins: :root { --body-background-image: url(/images/background.jpg); --body-background-color: #cbab62; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', sans-serif; }"
 
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 */
:root {
:root {
     --body-background-image: url(/images/background.jpg);
     --body-background-image: url(wiki/images/background.png);
     --body-background-color: #cbab62;
     --body-background-color: #cbab62;
}
}

Revision as of 22:42, 5 March 2025

/* CSS placed here will be applied to all skins */
:root {
    --body-background-image: url(wiki/images/background.png);
    --body-background-color: #cbab62;
}

body {
    background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat;
    font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', sans-serif;
}