MediaWiki:Common.css

From PsychoactiveWiki
Revision as of 06:02, 26 November 2025 by Arzachel (talk | contribs) (aesthetic)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */


/* Full-page psychedelic background */
body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
    font-size: 1em;
    background: linear-gradient(270deg, #ff0055, #00ffcc, #ffff00, #ff00ff);
    background-size: 800% 800%;
    animation: psychedelicBG 20s ease infinite;
}

/* Smooth gradient animation */
@keyframes psychedelicBG {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* Optional content container to keep text readable */
#content {
    position: relative;
    background: rgba(255, 255, 255, 0.85); /* semi-transparent */
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    z-index: 1;
}