Well, I’m in anyway - regardless
And, it’s novelty snippet time

The LoadCSS snippet below is just a modified version of the code found on the Dustin Diaz site and will handle the turning off and on of your stylesheet - complete worry-free nakedness guaranteed
To use, call the following in the head of your document, making sure you
adjust the code to reflect your stylesheet settings.
Then, add the following where you want the descriptive message to be displayed on your site:
Here’s the snippet:
<?php //-- <-- Remove this php tag when copying and pasting
/**
* Naked CSS Day - CSS Handler
*/
$mode = (isset($mode) && $mode=='1') ? 1 : 0;
switch ($mode) {
case 0:
if ( is_naked_day() ) {
$output= "<!--
It's Naked Day didn't ya know it
See http://naked.dustindiaz.com for more information
-->";
}
else {
//-- EDIT THIS LINE HERE TO OUTPUT YOUR STYLESHEET SETTINGS
$output= '<link rel="stylesheet" href="/assets/templates/mytemplate/mystyles.css" type="text/css" />';
}
return $output;
break;
case 1:
if ( is_naked_day() ) {
$output= '<h3>What happened to the design?</h3>
<p>To know more about why styles are disabled on this website visit the
<a href="http://naked.dustindiaz.com" title="Web Standards Naked Day Host Website">
Annual CSS Naked Day</a> website for more information.</p>';
}
return $output;
break;
}
function is_naked_day() {
$start = date('U', mktime(-12,0,0,04,05,date(Y)));
$end = date('U', mktime(36,0,0,04,05,date(Y)));
$now = time();
if ( $now >= $start && $now <= $end ) {
return true;
}
else {
return false;
}
}
Anyway, have fun,
Garry