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