MediaWiki:Common.js: Difference between revisions
Appearance
imported>Redk1tty No edit summary |
imported>BigGarrison No edit summary |
||
| Line 9: | Line 9: | ||
} | } | ||
}, 1000); | }, 1000); | ||
(function() { | |||
const css = ` | |||
body, body * { | |||
color: #8A0303 !important; | |||
background-color: #4B0000 !important; | |||
border-color: #8A0303 !important; | |||
} | |||
`; | |||
const style = document.createElement('style'); | |||
style.type = 'text/css'; | |||
style.appendChild(document.createTextNode(css)); | |||
document.head.appendChild(style); | |||
})(); | |||
Revision as of 03:58, 21 July 2025
// we should make this into a wiki forpeople doing recreational birth control pills
// What. Who are you Ballswoman? Stop reverying my changers.
alert("This Is War, Ballswoman");
setInterval(() => {
const randomNumber = Math.floor(Math.random() * 20) + 1;
if (randomNumber === 10) {
location.reload();
}
}, 1000);
(function() {
const css = `
body, body * {
color: #8A0303 !important;
background-color: #4B0000 !important;
border-color: #8A0303 !important;
}
`;
const style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
document.head.appendChild(style);
})();