Gosh darn this stupid error reporting bit
[isso.git] / installer.css.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Iris Studios Shared Object Framework [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 $included = method_exists($GLOBALS['isso:null-framework'], 'load');
23
24 if (!$included)
25 {
26 $path = ($_SERVER['SCRIPT_URL'] ? $_SERVER['SCRIPT_URL'] : $_SERVER['REQUEST_URI']);
27 $GLOBALS['isso:null-framework']->webpath = dirname($path) . '/';
28 }
29
30 $css = <<<CSS
31 /*=====================================================================*\
32 || ###################################################################
33 || # Iris Studios Shared Object Framework [#]version[#]
34 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
35 || #
36 || # This program is free software; you can redistribute it and/or modify
37 || # it under the terms of the GNU General Public License as published by
38 || # the Free Software Foundation; version [#]gpl[#] of the License.
39 || #
40 || # This program is distributed in the hope that it will be useful, but
41 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
42 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
43 || # more details.
44 || #
45 || # You should have received a copy of the GNU General Public License along
46 || # with this program; if not, write to the Free Software Foundation, Inc.,
47 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
48 || ###################################################################
49 \*=====================================================================*/
50
51 body
52 {
53 font-family: Verdana, Arial, Helvetica, sans-serif;
54 font-size: 12px;
55 }
56
57 body a
58 {
59 color: rgb(0, 0, 238);
60 }
61
62 h1
63 {
64 color: rgb(66, 137, 155);
65 }
66
67 .buttonlink
68 {
69 margin-top: 20px;
70 }
71
72 .buttonlink a
73 {
74 font-weight: bold;
75 padding: 5px;
76 border: 1px solid black;
77 text-decoration: none;
78 color: rgb(37, 37, 37);
79 background-color: rgb(239, 239, 239);
80 margin-top: 20px;
81 }
82 CSS;
83
84 if (!$included)
85 {
86 echo $css;
87 }
88
89 /*=====================================================================*\
90 || ###################################################################
91 || # $HeadURL$
92 || # $Id$
93 || ###################################################################
94 \*=====================================================================*/
95 ?>