style.css (780B)
1 body {
2 font-family: sans-serif;
3 margin: auto;
4 min-width: 90ch;
5 max-width: 50%;
6 padding: 1em;
7 line-height: 1.5;
8 }
9
10 table {
11 margin: auto;
12 }
13
14 td {
15 vertical-align: top;
16 white-space: nowrap;
17 border-top: 1px dotted;
18 padding: 2px 5px 1px 5px;
19 }
20
21 #index tr td:nth-child(2),
22 #tags tr td:nth-child(3),
23 #branches tr td:nth-child(3),
24 #log tr td:nth-child(2),
25 #files td:nth-child(2) {
26 white-space: normal;
27 }
28
29 td.num {
30 text-align: right;
31 }
32
33 pre table {
34 margin-left: 0;
35 }
36
37 pre td {
38 border: none;
39 }
40
41 pre {
42 overflow-x: auto;
43 }
44
45 a.d, a.h, a.i, a.line {
46 text-decoration: none;
47 }
48
49 a:target {
50 border: 1px dotted;
51 }
52
53 pre a.h {
54 color: #00a;
55 }
56
57 .A, span.i, pre a.i {
58 color: #070;
59 }
60
61 .D, span.d, pre a.d {
62 color: #e00;
63 }