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