<?php
/*=====================================================================*\
|| ###################################################################
|| # Blue Static ISSO Framework
|| # Copyright ©2002-[#]year[#] Blue Static
|| #
|| # This program is free software; you can redistribute it and/or modify
|| # it under the terms of the GNU General Public License as published by
|| # the Free Software Foundation; version [#]gpl[#] of the License.
|| #
|| # This program is distributed in the hope that it will be useful, but
|| # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|| # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|| # more details.
|| #
|| # You should have received a copy of the GNU General Public License along
|| # with this program; if not, write to the Free Software Foundation, Inc.,
|| # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|| ###################################################################
\*=====================================================================*/
error_reporting(E_ALL & ~E_NOTICE);
$included = true;
if (!isset($GLOBALS['isso:callback']))
{
if (!method_exists($GLOBALS['isso:callback'], 'load'))
{
$included = false;
$path = (isset($_SERVER['SCRIPT_URL']) ? $_SERVER['SCRIPT_URL'] : $_SERVER['REQUEST_URI']);
$GLOBALS['isso:callback']->webpath = dirname($path) . '/';
// Gecko browsers need this to display right
header("Content-Type: text/css");
}
}
$css = <<<CSS
/*=====================================================================*\
|| ###################################################################
|| # Blue Static ISSO Framework
|| # Copyright ©2002-[#]year[#] Blue Static
|| #
|| # This program is free software; you can redistribute it and/or modify
|| # it under the terms of the GNU General Public License as published by
|| # the Free Software Foundation; version [#]gpl[#] of the License.
|| #
|| # This program is distributed in the hope that it will be useful, but
|| # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|| # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|| # more details.
|| #
|| # You should have received a copy of the GNU General Public License along
|| # with this program; if not, write to the Free Software Foundation, Inc.,
|| # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|| ###################################################################
\*=====================================================================*/
body
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
body a
{
color: rgb(0, 0, 238);
}
h1
{
color: rgb(66, 137, 155);
}
.buttonlink
{
margin-top: 20px;
}
.buttonlink a
{
font-weight: bold;
padding: 5px;
border: 1px solid black;
text-decoration: none;
color: rgb(37, 37, 37);
background-color: rgb(239, 239, 239);
margin-top: 20px;
}
CSS;
if (!$included)
{
echo $css;
}
/*=====================================================================*\
|| ###################################################################
|| # $HeadURL$
|| # $Id$
|| ###################################################################
\*=====================================================================*/
?>