Wouldn’t it be fun to be able to target our designs based on what season, day, or hour it is using CSS media queries?
Experimental code ahead. The following code doesn’t exist…yet.
/* Style for summer */
@media (time: from(2013-06-21) to(2013-09-21)) {
html {
background: radial-gradient(yellow, white);
}
}
