MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(aesthetic) |
(No difference)
|
Revision as of 06:02, 26 November 2025
/* 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;
}