Fix DB_MySQL_PDO::escape_binary().
[bugdar.git] / templates / global.css
1 /*=====================================================================*\
2 || ###################################################################
3 || # Bugdar
4 || # Copyright (c)2002-2007 Blue Static
5 || #
6 || # This program is free software; you can redistribute it and/or modify
7 || # it under the terms of the GNU General Public License as published by
8 || # the Free Software Foundation; version 2 of the License.
9 || #
10 || # This program is distributed in the hope that it will be useful, but
11 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 || # more details.
14 || #
15 || # You should have received a copy of the GNU General Public License along
16 || # with this program; if not, write to the Free Software Foundation, Inc.,
17 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 || ###################################################################
19 \*=====================================================================*/
20
21
22 * {
23 box-sizing: border-box;
24 }
25
26 body
27 {
28 margin: 0px;
29 padding: 0px;
30 font-family: Verdana, Tahoma, Geneva, "Lucida Grande", Arial, sans-serif;
31 font-size: 12px;
32 background-color: rgb(102, 102, 102);
33 }
34
35 a
36 {
37 color: rgb(0, 0, 0);
38 text-decoration: underline;
39 }
40
41 a:hover, .tlabel a:hover
42 {
43 color: rgb(64, 102, 112);
44 }
45
46 .error
47 {
48 color: rgb(255, 0, 0);
49 text-align: left;
50 zoom: 100%;
51 }
52
53 #header
54 {
55 background-color: rgb(51, 51, 51);
56 color: rgb(255, 255, 255);
57 padding: 5px;
58 padding-left: 10px;
59 }
60
61 #header #title, #header #title a
62 {
63 color: rgb(255, 255, 255);
64 text-decoration: none;
65 font-family: Helvetica, Arial, Tahoma, sans-serif;
66 font-size: 35px;
67 text-shadow: 2px 2px 3px gray;
68 font-weight: 300;
69 }
70
71 #header #title a:hover
72 {
73 text-decoration: underline;
74 }
75
76 #header #time
77 {
78 vertical-align: super;
79 }
80
81 #tabbar
82 {
83 margin: 10px 20px 0px 20px;
84 padding: 4px 16px 5px 0px;
85 }
86
87 #tabbar .tab, .tabfocus
88 {
89 background-color: rgb(204, 204, 204);
90 padding: 4px 15px 4px 15px;
91 color: rgb(0, 0, 0);
92 text-decoration: none;
93 margin: 0px 7px 0px 0px;
94 }
95
96 #tabbar .tab:hover
97 {
98 background-color: rgb(191, 204, 207);
99 text-decoration: underline;
100 }
101
102 #tabbar .tabfocus
103 {
104 background-color: rgb(255, 255, 255);
105 border-bottom: none;
106 padding-bottom: 5px;
107 font-weight: bold;
108 color: rgb(0, 51, 64);
109 }
110
111 #content
112 {
113 background-color: rgb(255, 255, 255);
114 padding: 10px;
115 margin: 0px 20px 5px 20px;
116 }
117
118 .smallcontent
119 {
120 margin-top: 35px;
121
122 }
123
124 .listinghead
125 {
126 background-color: rgb(51, 51, 51);
127 color: rgb(255, 255, 255);
128 font-weight: bold;
129 }
130
131 .listinghead a
132 {
133 color: rgb(255, 255, 255);
134 }
135
136 .listinghead a:hover
137 {
138 color: rgb(64, 102, 112);
139 }
140
141 .listinghead .select
142 {
143 color: rgb(187, 44, 0);
144 font-style: italic;
145 }
146
147 .form
148 {
149 display: inline;
150 }
151
152 .textarea
153 {
154 width: 100%;
155
156 margin: 0px;
157 padding: 0px;
158 left: 0px;
159
160 margin-top: 5px;
161 }
162
163 #copyright
164 {
165 text-align: center;
166 font-size: 10px;
167 }
168
169 #submitrow, .submitrow
170 {
171 background-color: rgb(187, 44, 0);
172 padding: 2px;
173 border: 1px solid rgb(0, 0, 0);
174 text-align: center;
175 }
176
177 .clearspill
178 {
179 clear: both;
180 }
181
182 .alertbox
183 {
184 background-color: rgb(255, 255, 255);
185
186 color: rgb(236, 0, 0);
187
188 border-color: rgb(202, 27, 0);
189 border-style: solid;
190 border-width: 2px;
191
192 padding: 4px;
193 margin: 4px;
194 }
195
196 .smallfont, .smallfont a
197 {
198 color: rgb(255, 255, 255);
199 font-size: 10px;
200 text-decoration: none;
201 }
202
203 .table
204 {
205 width: 100%;
206 border-collapse: separate;
207 border-spacing: 2px;
208 }
209
210 .table td
211 {
212 padding: 2px;
213 }
214
215 .altcolor
216 {
217 background-color: rgb(191, 204, 207);
218 }
219
220 .textcenter
221 {
222 text-align: center;
223 }
224
225 .altwidth
226 {
227 width: 45%;
228 }
229
230 /*=====================================================================*\
231 || ###################################################################
232 || # $HeadURL$
233 || # $Id$
234 || ###################################################################
235 \*=====================================================================*/