]> git.armaanb.net Git - stagit.git/blob - style.css
in the diffstat prefix the type of change, allow CSS styling
[stagit.git] / style.css
1 body {
2         color: #000;
3         background-color: #fff;
4         font-family: monospace;
5 }
6
7 h1, h2, h3, h4, h5, h6 {
8         font-size: 1em;
9         margin: 0;
10 }
11
12 img, h1, h2 {
13         vertical-align: middle;
14 }
15
16 img {
17         border: 0;
18 }
19
20 a {
21         text-decoration: none;
22 }
23
24 a:hover {
25         text-decoration: underline;
26 }
27
28 #blob a {
29         color: #777;
30 }
31
32 #blob a:hover {
33         color: blue;
34         text-decoration: none;
35 }
36
37 table thead td {
38         font-weight: bold;
39 }
40
41 table td {
42         padding: 0 0.4em;
43 }
44
45 #content table td {
46         vertical-align: top;
47         white-space: nowrap;
48 }
49
50 #branches tr:hover td,
51 #tags tr:hover td,
52 #index tr:hover td,
53 #log tr:hover td,
54 #files tr:hover td {
55         background-color: #eee;
56 }
57
58 #index tr td:nth-child(2),
59 #tags tr td:nth-child(3),
60 #branches tr td:nth-child(3),
61 #log tr td:nth-child(2) {
62         white-space: normal;
63 }
64
65 td.num {
66         text-align: right;
67 }
68
69 .desc {
70         color: #777;
71 }
72
73 hr {
74         border: 0;
75         border-top: 1px solid #777;
76         height: 1px;
77 }
78
79 pre {
80         font-family: monospace;
81 }
82
83 pre a.h {
84         color: #00a;
85 }
86
87 .A,
88 span.i,
89 pre a.i {
90         color: #070;
91 }
92
93 .D,
94 span.d,
95 pre a.d {
96         color: #e00;
97 }
98
99 pre a.h:hover,
100 pre a.i:hover,
101 pre a.d:hover {
102         text-decoration: none;
103 }