]> Lady’s Gitweb - Gitweb/blob - gitweb.css
gitweb: Better git-unquoting and gitweb-quoting of pathnames
[Gitweb] / gitweb.css
1 body {
2 font-family: sans-serif;
3 font-size: 12px;
4 border: solid #d9d8d1;
5 border-width: 1px;
6 margin: 10px;
7 background-color: #ffffff;
8 color: #000000;
9 }
10
11 a {
12 color: #0000cc;
13 }
14
15 a:hover, a:visited, a:active {
16 color: #880000;
17 }
18
19 span.cntrl {
20 border: dashed #aaaaaa;
21 border-width: 1px;
22 padding: 0px 2px 0px 2px;
23 margin: 0px 2px 0px 2px;
24 }
25
26 img.logo {
27 float: right;
28 border-width: 0px;
29 }
30
31 div.page_header {
32 height: 25px;
33 padding: 8px;
34 font-size: 18px;
35 font-weight: bold;
36 background-color: #d9d8d1;
37 }
38
39 div.page_header a:visited, a.header {
40 color: #0000cc;
41 }
42
43 div.page_header a:hover {
44 color: #880000;
45 }
46
47 div.page_nav {
48 padding: 8px;
49 }
50
51 div.page_nav a:visited {
52 color: #0000cc;
53 }
54
55 div.page_path {
56 padding: 8px;
57 font-weight: bold;
58 border: solid #d9d8d1;
59 border-width: 0px 0px 1px;
60 }
61
62 div.page_footer {
63 height: 17px;
64 padding: 4px 8px;
65 background-color: #d9d8d1;
66 }
67
68 div.page_footer_text {
69 float: left;
70 color: #555555;
71 font-style: italic;
72 }
73
74 div.page_body {
75 padding: 8px;
76 font-family: monospace;
77 }
78
79 div.title, a.title {
80 display: block;
81 padding: 6px 8px;
82 font-weight: bold;
83 background-color: #edece6;
84 text-decoration: none;
85 color: #000000;
86 }
87
88 a.title:hover {
89 background-color: #d9d8d1;
90 }
91
92 div.title_text {
93 padding: 6px 0px;
94 border: solid #d9d8d1;
95 border-width: 0px 0px 1px;
96 font-family: monospace;
97 }
98
99 div.log_body {
100 padding: 8px 8px 8px 150px;
101 }
102
103 span.age {
104 position: relative;
105 float: left;
106 width: 142px;
107 font-style: italic;
108 }
109
110 div.page_body span.signoff {
111 color: #888888;
112 }
113
114 div.log_link {
115 padding: 0px 8px;
116 font-size: 10px;
117 font-family: sans-serif;
118 font-style: normal;
119 position: relative;
120 float: left;
121 width: 136px;
122 }
123
124 div.list_head {
125 padding: 6px 8px 4px;
126 border: solid #d9d8d1;
127 border-width: 1px 0px 0px;
128 font-style: italic;
129 }
130
131 div.author_date {
132 padding: 8px;
133 border: solid #d9d8d1;
134 border-width: 0px 0px 1px 0px;
135 font-style: italic;
136 }
137
138 a.list {
139 text-decoration: none;
140 color: #000000;
141 }
142
143 a.subject, a.name {
144 font-weight: bold;
145 }
146
147 table.tags a.subject {
148 font-weight: normal;
149 }
150
151 a.list:hover {
152 text-decoration: underline;
153 color: #880000;
154 }
155
156 a.text {
157 text-decoration: none;
158 color: #0000cc;
159 }
160
161 a.text:visited {
162 text-decoration: none;
163 color: #880000;
164 }
165
166 a.text:hover {
167 text-decoration: underline;
168 color: #880000;
169 }
170
171 table {
172 padding: 8px 4px;
173 }
174
175 table.project_list {
176 border-spacing: 0;
177 }
178
179 table.diff_tree {
180 border-spacing: 0;
181 font-family: monospace;
182 }
183
184 table.blame {
185 border-collapse: collapse;
186 }
187
188 table.blame td {
189 padding: 0px 5px;
190 font-size: 12px;
191 vertical-align: top;
192 }
193
194 th {
195 padding: 2px 5px;
196 font-size: 12px;
197 text-align: left;
198 }
199
200 tr.light:hover {
201 background-color: #edece6;
202 }
203
204 tr.dark {
205 background-color: #f6f6f0;
206 }
207
208 tr.dark2 {
209 background-color: #f6f6f0;
210 }
211
212 tr.dark:hover {
213 background-color: #edece6;
214 }
215
216 td {
217 padding: 2px 5px;
218 font-size: 12px;
219 vertical-align: top;
220 }
221
222 td.link, td.selflink {
223 padding: 2px 5px;
224 font-family: sans-serif;
225 font-size: 10px;
226 }
227
228 td.selflink {
229 padding-right: 0px;
230 }
231
232 td.sha1 {
233 font-family: monospace;
234 }
235
236 td.error {
237 color: red;
238 background-color: yellow;
239 }
240
241 td.current_head {
242 text-decoration: underline;
243 }
244
245 table.diff_tree span.file_status.new {
246 color: #008000;
247 }
248
249 table.diff_tree span.file_status.deleted {
250 color: #c00000;
251 }
252
253 table.diff_tree span.file_status.moved,
254 table.diff_tree span.file_status.mode_chnge {
255 color: #777777;
256 }
257
258 table.diff_tree span.file_status.copied {
259 color: #70a070;
260 }
261
262 /* age2: 60*60*24*2 <= age */
263 table.project_list td.age2, table.blame td.age2 {
264 font-style: italic;
265 }
266
267 /* age1: 60*60*2 <= age < 60*60*24*2 */
268 table.project_list td.age1 {
269 color: #009900;
270 font-style: italic;
271 }
272
273 table.blame td.age1 {
274 color: #009900;
275 background: transparent;
276 }
277
278 /* age0: age < 60*60*2 */
279 table.project_list td.age0 {
280 color: #009900;
281 font-style: italic;
282 font-weight: bold;
283 }
284
285 table.blame td.age0 {
286 color: #009900;
287 background: transparent;
288 font-weight: bold;
289 }
290
291 td.pre, div.pre, div.diff {
292 font-family: monospace;
293 font-size: 12px;
294 white-space: pre;
295 }
296
297 td.mode {
298 font-family: monospace;
299 }
300
301 div.diff a.list {
302 text-decoration: none;
303 }
304
305 div.diff a.list:hover {
306 text-decoration: underline;
307 }
308
309 div.diff.to_file a.list,
310 div.diff.to_file,
311 div.diff.add {
312 color: #008800;
313 }
314
315 div.diff.from_file a.list,
316 div.diff.from_file,
317 div.diff.rem {
318 color: #cc0000;
319 }
320
321 div.diff.chunk_header {
322 color: #990099;
323 }
324
325 div.diff.incomplete {
326 color: #cccccc;
327 }
328
329 div.diff_info {
330 font-family: monospace;
331 color: #000099;
332 background-color: #edece6;
333 font-style: italic;
334 }
335
336 div.index_include {
337 border: solid #d9d8d1;
338 border-width: 0px 0px 1px;
339 padding: 12px 8px;
340 }
341
342 div.search {
343 font-size: 12px;
344 font-weight: normal;
345 margin: 4px 8px;
346 position: absolute;
347 top: 56px;
348 right: 12px
349 }
350
351 td.linenr {
352 text-align: right;
353 }
354
355 a.linenr {
356 color: #999999;
357 text-decoration: none
358 }
359
360 a.rss_logo {
361 float: right;
362 padding: 3px 0px;
363 width: 35px;
364 line-height: 10px;
365 border: 1px solid;
366 border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
367 color: #ffffff;
368 background-color: #ff6600;
369 font-weight: bold;
370 font-family: sans-serif;
371 font-size: 10px;
372 text-align: center;
373 text-decoration: none;
374 }
375
376 a.rss_logo:hover {
377 background-color: #ee5500;
378 }
379
380 span.refs span {
381 padding: 0px 4px;
382 font-size: 10px;
383 font-weight: normal;
384 border: 1px solid;
385 background-color: #ffaaff;
386 border-color: #ffccff #ff00ee #ff00ee #ffccff;
387 }
388
389 span.refs span.ref {
390 background-color: #aaaaff;
391 border-color: #ccccff #0033cc #0033cc #ccccff;
392 }
393
394 span.refs span.tag {
395 background-color: #ffffaa;
396 border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
397 }
398
399 span.refs span.head {
400 background-color: #aaffaa;
401 border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
402 }
403
404 span.atnight {
405 color: #cc0000;
406 }
407
408 span.match {
409 color: #e00000;
410 }
This page took 0.576148 seconds and 5 git commands to generate.