diff options
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 100 |
1 files changed, 100 insertions, 0 deletions
@@ -476,3 +476,103 @@ div.footer { | |||
476 | font-size: 80%; | 476 | font-size: 80%; |
477 | color: #ccc; | 477 | color: #ccc; |
478 | } | 478 | } |
479 | a.branch-deco { | ||
480 | margin: 0px 0.5em; | ||
481 | padding: 0px 0.25em; | ||
482 | background-color: #88ff88; | ||
483 | border: solid 1px #007700; | ||
484 | } | ||
485 | a.tag-deco { | ||
486 | margin: 0px 0.5em; | ||
487 | padding: 0px 0.25em; | ||
488 | background-color: #ffff88; | ||
489 | border: solid 1px #777700; | ||
490 | } | ||
491 | a.remote-deco { | ||
492 | margin: 0px 0.5em; | ||
493 | padding: 0px 0.25em; | ||
494 | background-color: #ccccff; | ||
495 | border: solid 1px #000077; | ||
496 | } | ||
497 | a.deco { | ||
498 | margin: 0px 0.5em; | ||
499 | padding: 0px 0.25em; | ||
500 | background-color: #ff8888; | ||
501 | border: solid 1px #770000; | ||
502 | } | ||
503 | table.stats { | ||
504 | border: solid 1px black; | ||
505 | border-collapse: collapse; | ||
506 | } | ||
507 | |||
508 | table.stats th { | ||
509 | text-align: left; | ||
510 | padding: 1px 0.5em; | ||
511 | background-color: #eee; | ||
512 | border: solid 1px black; | ||
513 | } | ||
514 | |||
515 | table.stats td { | ||
516 | text-align: right; | ||
517 | padding: 1px 0.5em; | ||
518 | border: solid 1px black; | ||
519 | } | ||
520 | |||
521 | table.stats td.total { | ||
522 | font-weight: bold; | ||
523 | text-align: left; | ||
524 | } | ||
525 | |||
526 | table.stats td.sum { | ||
527 | color: #c00; | ||
528 | font-weight: bold; | ||
529 | /* background-color: #eee; */ | ||
530 | } | ||
531 | |||
532 | table.stats td.left { | ||
533 | text-align: left; | ||
534 | } | ||
535 | |||
536 | table.vgraph { | ||
537 | border-collapse: separate; | ||
538 | border: solid 1px black; | ||
539 | height: 200px; | ||
540 | } | ||
541 | |||
542 | table.vgraph th { | ||
543 | background-color: #eee; | ||
544 | font-weight: bold; | ||
545 | border: solid 1px white; | ||
546 | padding: 1px 0.5em; | ||
547 | } | ||
548 | |||
549 | table.vgraph td { | ||
550 | vertical-align: bottom; | ||
551 | padding: 0px 10px; | ||
552 | } | ||
553 | |||
554 | table.vgraph div.bar { | ||
555 | background-color: #eee; | ||
556 | } | ||
557 | |||
558 | table.hgraph { | ||
559 | border: solid 1px black; | ||
560 | width: 800px; | ||
561 | } | ||
562 | |||
563 | table.hgraph th { | ||
564 | background-color: #eee; | ||
565 | font-weight: bold; | ||
566 | border: solid 1px black; | ||
567 | padding: 1px 0.5em; | ||
568 | } | ||
569 | |||
570 | table.hgraph td { | ||
571 | vertical-align: center; | ||
572 | padding: 2px 2px; | ||
573 | } | ||
574 | |||
575 | table.hgraph div.bar { | ||
576 | background-color: #eee; | ||
577 | height: 1em; | ||
578 | } | ||