summary refs log tree commit diff stats
path: root/theme/css.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-11-24 17:16:54 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-11-24 17:16:54 -0500
commit326314e6c07af25ae4e0f20299b86cdc100528e9 (patch)
treec6cf286ce33ba8c52a83fc700d32ec5fa760c071 /theme/css.php
parent4063314dc7b0b7005054b762909c9f63c389f6d6 (diff)
downloadfourisland-326314e6c07af25ae4e0f20299b86cdc100528e9.tar.gz
fourisland-326314e6c07af25ae4e0f20299b86cdc100528e9.tar.bz2
fourisland-326314e6c07af25ae4e0f20299b86cdc100528e9.zip
Returned day and night effects
Diffstat (limited to 'theme/css.php')
-rwxr-xr-xtheme/css.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/theme/css.php b/theme/css.php index 2acf0c7..1010bd1 100755 --- a/theme/css.php +++ b/theme/css.php
@@ -29,4 +29,14 @@ include("css/website.php");
29include("css/bubbles.css"); 29include("css/bubbles.css");
30include("css/thickbox.css"); 30include("css/thickbox.css");
31 31
32if ($_GET['id'] == 'day')
33{
34 include("css/day.css");
35} else if ($_GET['id'] == 'night')
36{
37 include("css/night.css");
38} else {
39 echo('body {display: none}');
40}
41
32?> 42?>