The official discord link if you wish to join the discord: https://discord.gg/j5RKwCvAFu

The background art comes from Cherylann1960.

MediaWiki:Evelution.css: Difference between revisions

From The Codex
Speedster
Speedster (talk | contribs) (Created page with "→‎All CSS here will be loaded for users of the Evelution skin: body { background-image: url('/mnt/volume_nyc1_03/Codex_Test/images/e/eb/360_F_529765067_jP9YYB40okQi8tUHb20UT0ijFtyvnQIA.jpg') !important; background-size: cover !important; background-position: center !important; background-attachment: fixed !important; background-repeat: no-repeat !important; } →‎Ensure the background doesn't interfere with content: #mw-wrapper { background:...")
 
Speedster
Speedster (talk | contribs) (Protected "MediaWiki:Evelution.css" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))
m
(No difference)

Revision as of 03:04, 29 June 2024

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

body {
    background-image: url('/mnt/volume_nyc1_03/Codex_Test/images/e/eb/360_F_529765067_jP9YYB40okQi8tUHb20UT0ijFtyvnQIA.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
}

/* Ensure the background doesn't interfere with content */
#mw-wrapper {
    background: transparent !important;
}

/* Optional: Add an overlay to improve text readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);  /* Adjust color and opacity as needed */
    z-index: -1;
    pointer-events: none;
}