1
0
Fork 0
isopod.cool/seasonal.php
2024-09-30 13:29:41 -06:00

9 lines
No EOL
320 B
PHP
Executable file

<?php
if($_SERVER["REQUEST_URI"] == "/seasonal.php") {
http_response_code(403);
die();
}
if(date('m') == 10) {
echo '<style type="text/css">#bubblecolumn {display: none;} body {background-color: black;} a {color: orange;} a:hover {color: yellow;} #leftsidebg, #rightsidebg {filter: grayscale(100%);}</style>';
}
?>