Fixed an issue with text in the footer
[m6w6/gitweb-theme] / gitweb.css
1 /* Reset
2 ------------------------------------------------------------------------- */
3
4 /* Based on http://meyerweb.com/eric/tools/css/reset/ */
5 /* v1.0 | 20080212 */
6
7 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
8 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
9 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b,
10 u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
11 caption, tbody, tfoot, thead, tr, th, td {
12 margin: 0;
13 padding: 0;
14 border: 0;
15 outline: 0;
16 font-size: 100%;
17 vertical-align: baseline;
18 background: transparent;
19 }
20
21 ol, ul { list-style: none; }
22
23 blockquote, q { quotes: none; }
24
25 blockquote:before, blockquote:after,
26 q:before, q:after {
27 content: '';
28 content: none;
29 }
30
31 :focus { outline: 0; }
32
33 ins { text-decoration: none; }
34
35 del { text-decoration: line-through; }
36
37 table {
38 border-collapse: collapse;
39 border-spacing: 0;
40 }
41
42 a { outline: none; }
43
44 /* General
45 ---------------------------------------------------------------------------- */
46
47 html {
48 position: relative;
49 min-height: 100%;
50 }
51
52 body {
53 font: 13px Helvetica,arial,freesans,clean,sans-serif;
54 line-height: 1.4;
55 margin: 0 0 105px;
56 background-color: #fff;
57 color: #000000;
58 }
59
60 /* Monospaced Fonts */
61 .sha1, .mode, .diff_tree .list, .pre, .diff, .patchset {
62 font-family: 'Consolas','Bitstream Vera Sans Mono',monospace;
63 }
64
65 a:link, a:visited {
66 color: #4183C4;
67 text-decoration: none;
68 }
69
70 a:hover {
71 text-decoration: underline;
72 }
73
74 td.list a[href*='a=tree'], td.list a[href*='a=blob'] {
75 padding-left: 20px;
76 display: block;
77 float: left;
78 height: 16px;
79 line-height: 16px;
80 }
81
82 td.list a[href*='a=tree'] {
83 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABq0lEQVQ4y8WTu4oUQRSGv+rtGVuxhwVFdFEEE2c3d0HYTEMTn8DEVxADQTDUF9DMwMxQMBMx8AEWzRQ3cBHd9TI91+2urjq/QbczY2IygSep4nD+79yqnCRWsYQVbWVACvDh5ZXdrLe15dwyT1TjT/sxFFeB6i+VA2B6+cb7kAI4Jf0LO087zjlQI8Y5Qvnj0sHug321XoC1bk+K9eHk6+s7wPMUgKAS88eqb4+Jfg2SHs7lZBvX2Nh+2EUCDGSAcMnJsx9f7NxfAGqXyDzRd5EJO/pMPT1gcviGTnYOVIN5pAAE8v7dLrKL8xnglFk4ws9Afko9HpH3b5Gd2mwb/lOBmgrSdYhJugDUCenxM6xv3p4HCsP8F0LxCsUhCkMURihOyM7fg0osASTFEpu9a4LjGIUCqwcoDiEUrX+E4hRUQb20RiokC1j9vckUhygU7X3QZh7NAVKYL7YBeMkRUfjVCotF2XGIwnghtrJpMywB5G0QZj9P1JNujuWJ1AHLQadRrACPkuZ0SSSWpeStWgDK6tHek5vbiOs48n++XQHurcf0rFng//6NvwG+iB9/4duaTgAAAABJRU5ErkJgggo=) center left no-repeat;
84 }
85
86 td.list a[href*='a=blob'] {
87 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAA6ElEQVQoFQXBMW5TQRgGwNnHnoE0QbiCjoIooUmTU3AuS1BwIoTSUdJBigg3GCWOg9/++zHTop078wIAsPMrE4SL5/1aIyMjIyMjz/m0tbFECFdrPeaQQw75mz/5nZH7fN7aWILmauSYfznmmIfss8vIUx7zZWsTTXM5vpWvTk5Wq9VHQP/gtgOLa0Qpw940vAQdaG6thpOhlOkG0AEuAVGmEkAH+G4YSikxXQM6wDsAMRFAB/ihDNNUmN4DOsAbBAEAdICfpmmaAt4COoj2GgCASbIkZh1NAACznhQt2itnFgAAlF3u/gMDtJXPzQxoswAAAABJRU5ErkJgggo=) center left no-repeat;
88 }
89
90 i {
91 font-style: normal;
92 }
93
94 td, th {
95 padding: 5px;
96 }
97
98 .page_nav br {
99 display: none;
100 }
101
102 /* Page Header
103 ---------------------------------------------------------------------------- */
104
105 .page_header {
106 height: 50px;
107 line-height: 50px;
108 position: relative;
109 padding: 0 27px;
110 margin-bottom: 20px;
111 font-size: 20px;
112 font-family: Helvetica, Arial, Freesans, Clean, sans-serif;
113 background: #FFFFFF; /* old browsers */
114 background: -moz-linear-gradient(top, #FFFFFF 0%, #F5F5F5 100%); /* firefox */
115 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F5F5F5)); /* webkit */
116 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F5F5F5',GradientType=0 ); /* ie */
117 background: -o-linear-gradient(top, #FFFFFF 0%, #F5F5F5 100%);
118 border-bottom: 1px solid #dfdfdf;
119 }
120
121 .page_header a:link, .page_header a:visited {
122 color: #4183C4;
123 text-decoration: none;
124 padding: 3px;
125 font-weight: bold;
126 }
127
128 .page_header a:hover {
129 font-weight: bold;
130 padding: 3px;
131 text-decoration: underline;
132 }
133
134 .page_header a:first-child {
135 background: transparent;
136 }
137
138 .page_header img.logo {
139 position: relative;
140 top: 7px;
141 margin-right: 5px;
142 }
143
144 /* Page Footer
145 ---------------------------------------------------------------------------- */
146
147 .page_footer {
148 position: absolute;
149 left: 0;
150 bottom: 0;
151 width: 100%;
152 height: 80px;
153 line-height: 80px;
154 margin-top: 15px;
155 background: #f1f1f1;
156 border-top: 2px solid #ddd;
157 border-bottom: 1px solid #ddd;
158 }
159
160 .page_footer_text {
161 color: #666;
162 display: inline;
163 float: left;
164 margin-left: 25px;
165 }
166
167 a.rss_logo {
168 float: right;
169 padding: 3px 1px;
170 width: 35px;
171 line-height: 10px;
172 border: 1px solid;
173 border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
174 color: #ffffff;
175 background-color: #ff6600;
176 font-weight: bold;
177 font-family: sans-serif;
178 font-size: 80%;
179 text-align: center;
180 text-decoration: none;
181 margin-top: 30px;
182 margin-left: 5px;
183 }
184
185 a.rss_logo:hover {
186 background-color: #ee5500;
187 }
188
189 .rss_logo {
190 margin-right: 25px;
191 background: yellow;
192 }
193
194 .rss_logo:last-child {
195 margin-right: 5px;
196 }
197
198 /* Index include
199 ---------------------------------------------------------------------------- */
200
201 .index_include {
202 width: 95%;
203 margin: 0 auto 15px;
204 background: -moz-linear-gradient(center top , #FFFFFF 0%, #F5F5F5 100%) repeat scroll 0 0 transparent;
205 border: 1px solid #DFDFDF;
206 padding: 8px;
207 -webkit-box-sizing: border-box;
208 -moz-box-sizing: border-box;
209 box-sizing: border-box;
210 }
211
212 /* Elements
213 ---------------------------------------------------------------------------- */
214
215 .project_list,
216 .shortlog,
217 .tree,
218 .commit_search,
219 .history {
220 width: 95%;
221 margin: 0 auto 15px auto;
222 border: 1px solid #d8d8d8;
223 -moz-box-shadow: 0 0 3px rgba(0,0,0,0.2);
224 -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
225 box-shadow: 0 0 3px rgba(0,0,0,0.2);
226 }
227
228 .project_list th,
229 .shortlog th,
230 .tree th,
231 .commit_search th {
232 color: #afafaf;
233 font-weight: normal;
234 }
235
236 .project_list th {
237 font-weight: bold;
238 }
239
240 .project_list tr,
241 .shortlog tr,
242 .tree tr,
243 .commit_search tr {
244 background: #eaeaea;
245 height: 2.5em;
246 text-align: left;
247 color: #545454;
248 }
249
250 .project_list tr.dark, .project_list tr.light,
251 .shortlog tr.dark, .shortlog tr.light,
252 .tree tr.dark, .tree tr.light,
253 .commit_search tr.dark, .commit_search tr.light,
254 .history tr.dark, .history tr.light,
255 .heads tr.dark, .heads tr.light {
256 background: #F9F9F9; /* old browsers */
257 background: -moz-linear-gradient(top, #F9F9F9 0%, #EFEFEF 100%); /* firefox */
258 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F9F9F9), color-stop(100%,#EFEFEF)); /* webkit */
259 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F9F9F9', endColorstr='#EFEFEF',GradientType=0 ); /* ie */
260 background: -o-linear-gradient(top, #F9F9F9 0%, #EFEFEF 100%);
261 height: 2.5em;
262 border-bottom: 1px solid #e1e1e1;
263 }
264
265 th .header {
266 background: transparent;
267 border: 0;
268 padding: 0;
269 font-weight: bold;
270 }
271
272 .tree {
273 width: 100%;
274 margin: 0;
275 }
276
277 .projsearch {
278 position: absolute;
279 right: 4%;
280 top: 15px;
281 }
282
283 .projsearch a {
284 display: none;
285 }
286
287 .commit_search {
288 background: #eaeaea;
289 }
290
291 .page_nav,
292 .list_head,
293 .page_path,
294 .search {
295 width: 94%;
296 background: #eaeaea;
297 color: #545454;
298 border: 1px solid #d8d8d8;
299 padding: 5px;
300 margin: 0 auto 15px auto;
301 }
302
303 .history {
304 background: #eaeaea;
305 }
306
307 .title {
308 width: 95%;
309 padding: 5px;
310 margin: 0 auto 15px auto;
311 }
312
313 .projects_list,
314 .tags {
315 width: 95%;
316 background: #f0f0f0;
317 color: #545454;
318 border: 1px solid #d8d8d8;
319 padding: 5px;
320 margin: 0 auto 15px auto;
321 }
322
323 .heads {
324 width: 95%;
325 color: #545454;
326 border: 1px solid #d8d8d8;
327 padding: 5px;
328 margin: 0 auto 15px auto;
329 }
330
331 .header {
332 width: 94%;
333 margin: 0 auto 15px auto;
334 background: #eaf2f5;
335 border: 1px solid #bedce7;
336 padding: 5px;
337 }
338
339 .header .age {
340 float: left;
341 color: #000;
342 font-weight: bold;
343 width: 10em;
344 }
345
346 .title_text {
347 width: 94%;
348 background: #eaf2f5;
349 border: 1px solid #bedce7;
350 padding: 5px;
351 margin: 0 auto 0 auto;
352 }
353
354 .log_body {
355 width: 94%;
356 background: #eaf2f5;
357 border: 1px solid #bedce7;
358 border-top: 0;
359 padding: 5px;
360 margin: 0 auto 15px auto;
361 }
362
363 .page_body {
364 line-height: 1.4em;
365 width: 94%;
366 background: #f8f8f8;
367 border: 1px solid #d8d8d8;
368 padding: 5px;
369 margin: 15px auto 15px auto;
370 }
371
372 .diff_tree {
373 width: 95%;
374 background: #f0f0f0;
375 border: 1px solid #d8d8d8;
376 padding: 5px;
377 margin: 0 auto 15px auto;
378 }
379
380 .page_body > .list_head {
381 width: 98.5%;
382 }
383
384 .page_body > .diff_tree {
385 width: 99.5%;
386 }
387
388 .patch > .header {
389 width: 99%;
390 }
391
392 .author .avatar,
393 .author_date .avatar {
394 position: relative;
395 top: 3px;
396 }
397
398 .object_header .avatar {
399 border: 1px solid #D8D8D8;
400 float: right;
401 }
402
403 .object_header td,
404 .object_header th {
405 vertical-align: top;
406 }
407
408 /* Refs
409 ---------------------------------------------------------------------------- */
410
411 span.refs span {
412 color: #000;
413 padding: 0px 4px;
414 font-size: 10px;
415 font-weight: normal;
416 border: 1px solid;
417 background-color: #ffaaff;
418 border-color: #ffccff #ff00ee #ff00ee #ffccff;
419 }
420
421 span.refs span.ref {
422 background-color: #aaaaff;
423 border-color: #ccccff #0033cc #0033cc #ccccff;
424 }
425
426 span.refs span.tag {
427 background-color: #ffffaa;
428 border-color: #ffffcc #dccd00 #dccd00 #ffffcc;
429 }
430
431 span.refs span.head {
432 background-color: #aaffaa;
433 border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
434 }
435
436 span.refs a {
437 color: #000;
438 }
439
440 /* Diffs
441 ---------------------------------------------------------------------------- */
442
443 div.diff.to_file a.path,
444 div.diff.to_file {
445 color: #007000;
446 }
447
448 div.diff.from_file a.path,
449 div.diff.from_file {
450 color: #aa0000;
451 }
452
453 .patch .header {
454 margin: 0;
455 }
456
457 .patchset {
458 overflow-x: auto;
459 overflow-y: hidden;
460 }
461
462 .chunk_header {
463 background: #eaf2f5;
464 color: #999;
465 }
466
467 .rem {
468 background: #ffdddd;
469 }
470 .add {
471 background: #ddffdd;
472 }
473
474 .extended_header {
475 width: 99.5%;
476 }
477
478 div.chunk_block {
479 overflow: hidden;
480 }
481
482 div.chunk_block div.old {
483 float: left;
484 width: 50%;
485 overflow: hidden;
486 border-right: 5px solid #EAF2F5;
487 }
488
489 div.chunk_block.rem,
490 div.chunk_block.add {
491 background: transparent;
492 }
493
494 div.chunk_block div.old .add,
495 div.chunk_block div.old .rem {
496 padding-right: 3px;
497 }
498
499 div.chunk_block div.new .add,
500 div.chunk_block div.new .rem {
501 padding-left: 3px;
502 }
503
504 div.chunk_block div.new {
505 margin-left: 50%;
506 width: 50%;
507 border-left: 5px solid #EAF2F5;
508 }
509
510 /* Age
511 ---------------------------------------------------------------------------- */
512
513 /* noage: "No commits" */
514 .project_list td.noage {
515 color: #cdcdcd;
516 }
517
518 /* age2: 60*60*24*2 <= age */
519 .project_list td.age2, .blame td.age2 {
520 color: #545454;
521 }
522
523 /* age1: 60*60*2 <= age < 60*60*24*2 */
524 .project_list td.age1 {
525 color: #009900;
526 }
527
528 /* age0: age < 60*60*2 */
529 .project_list td.age0 {
530 color: #009900;
531 font-weight: bold;
532 }
533
534 /* File status
535 ---------------------------------------------------------------------------- */
536
537 .diff_tree span.file_status.new {
538 color: #008000;
539 }
540
541 table.diff_tree span.file_status.deleted {
542 color: #c00000;
543 }
544
545 table.diff_tree span.file_status.moved,
546 table.diff_tree span.file_status.mode_chnge {
547 color: #545454;
548 }
549
550 table.diff_tree span.file_status.copied {
551 color: #70a070;
552 }
553
554 span.cntrl {
555 border: dashed #aaaaaa;
556 border-width: 1px;
557 padding: 0px 2px 0px 2px;
558 margin: 0px 2px 0px 2px;
559 }
560
561 span.match {
562 background: #aaffaa;
563 color: #000;
564 }
565
566 td.error {
567 color: red;
568 background: yellow;
569 }
570
571 /* blob view */
572
573 td.pre, div.pre, div.diff {
574 white-space: pre-wrap;
575 }
576
577 /* Style definition generated by highlight 2.4.5, http://www.andre-simon.de/ */
578
579 /* Highlighting theme definition: */
580
581 .num { color:#6ecf36; }
582 .esc { color:#ff00ff; }
583 .str { color:#ff00d3; background-color: #edc9ec }
584 .dstr { color:#818100; }
585 .slc { color:#838183; font-style:italic; }
586 .com { color:#838183; font-style:italic; }
587 .dir { color:#008200; }
588 .sym { color:#000000; }
589 .line { color:#555555; }
590 .kwa { color:#666666; font-weight:bold; }
591 .kwb { color:#6b3099; }
592 .kwc { color:#d4663d; }
593 .kwd { color:#2928ff; }
594