Add the initial decorator stuff
[isso.git] / Decorator.css.php
1 <?php
2
3 $path = dirname(isset($_SERVER['SCRIPT_URL']) ? $_SERVER['SCRIPT_URL'] : $_SERVER['REQUEST_URI']);
4 header("Content-Type: text/css");
5
6 ?>
7 /*=====================================================================*
8 || ###################################################################
9 || # Blue Static ISSO Framework
10 || # Copyright (c)2005-2008 Blue Static
11 || #
12 || # This program is free software; you can redistribute it and/or modify
13 || # it under the terms of the GNU General Public License as published by
14 || # the Free Software Foundation; version 2 of the License.
15 || #
16 || # This program is distributed in the hope that it will be useful, but
17 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 || # more details.
20 || #
21 || # You should have received a copy of the GNU General Public License along
22 || # with this program; if not, write to the Free Software Foundation, Inc.,
23 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 || ###################################################################
25 \*=====================================================================*/
26
27 /* Reset all the annoying browser defaults */
28 * { margin: 0px; padding: 0px; }
29
30 /* Main body tag */
31 body
32 {
33 background-color: rgb(232, 255, 198);
34 font-family: Verdana, Helvetica, Arial, sans-serif;
35 font-size: 12px;
36 }
37
38 /* Title section that appears at the top of pages */
39 #title
40 {
41 height: 50px;
42 width: 100%;
43
44 font-size: 24px;
45 font-weight: bold;
46 color: rgb(255, 255, 255);
47 }
48
49 /* Body container that puts some padding on elements */
50 #body
51 {
52 padding: 20px;
53 }
54
55 /*******************************************************************/
56 /* Form Elements */
57 /*******************************************************************/
58
59 /* Main form wrapper */
60 fieldset
61 {
62 border-width: 1px;
63 border-style: solid;
64 border-color: rgb(123, 170, 90);
65
66 background-color: rgb(255, 255, 255);
67
68 padding: 5px 9px 5px 9px;
69 margin: 10px 0px 10px 0px;
70 }
71
72 /* Form title */
73 legend
74 {
75 border-width: 1px;
76 border-style: solid;
77 border-color: rgb(123, 170, 90);
78
79 background-color: rgb(203, 234, 148);
80
81 padding: 3px;
82
83 font-size: 14px;
84 font-weight: bold;
85 color: rgb(62, 76, 49);
86 }
87
88 /*******************************************************************/
89 /* Tables */
90 /*******************************************************************/
91
92 table
93 {
94 border-width: 1px;
95 border-style: solid;
96 border-color: rgb(123, 170, 90);
97
98 background-color: rgb(255, 255, 255);
99
100 margin: 10px 0px 10px 0px;
101
102 width: 100%;
103 }
104
105 thead
106 {
107 background-color: rgb(123, 170, 90);
108
109 font-size: 14px;
110 font-weight: bold;
111 color: rgb(0, 0, 0);
112
113 text-align: center;
114 }
115
116 thead td
117 {
118 padding: 7px;
119 }
120
121 tr
122 {
123 border-collapse: collapse;
124 }
125
126 .headings
127 {
128 background-color: rgb(203, 234, 148);
129
130 font-size: 12px;
131 font-weight: bold;
132 color: rgb(62, 76, 49);
133 }
134
135 .headings td
136 {
137 text-align: center;
138 }
139
140 .headings td:first-child
141 {
142 text-align: left;
143 }
144
145 .headings td:last-child
146 {
147 text-align: right;
148 }
149
150 table tr td
151 {
152 padding: 4px;
153 }
154
155 table .alt1
156 {
157 background-color: rgb(255, 255, 255);
158 }
159
160 table .alt2
161 {
162 background-color: rgb(237, 245, 230);
163 }
164
165 /*******************************************************************/
166 /* Boxes */
167 /*******************************************************************/
168
169 /* Big, red box to display errors */
170 .error-box
171 {
172 border-width: 5px;
173 border-style: solid;
174 border-color: rgb(252, 11, 29);
175
176 padding: 4px;
177 margin: 10px 0px 10px 0px;
178
179 background-color: rgb(247, 170, 170);
180
181 color: rgb(252, 11, 29);
182 }
183
184 /* Naming the error box */
185 .error-box h1
186 {
187 font-size: 14px;
188 }
189
190 /* Green box to display messages */
191 .message-box
192 {
193 border-width: 5px;
194 border-style: solid;
195 border-color: rgb(109, 187, 45);
196
197 padding: 4px;
198 margin: 10px 0px 10px 0px;
199
200 background-color: rgb(209, 249, 170);
201
202 color: rgb(109, 187, 45);
203 }
204
205 /* Naming the box */
206 .message-box h1
207 {
208 font-size: 14px;
209 }