]> git.armaanb.net Git - stagit.git/blob - style.css
style: darkblue for hunk like cgit, hunk line is now a link
[stagit.git] / style.css
1 body {
2         font-family: monospace;
3         color: #000;
4         background-color: #fff;
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 a {
17         text-decoration: none;
18 }
19
20 a:hover {
21         text-decoration: underline;
22 }
23
24 #blob a {
25         color: #777;
26 }
27
28 #blob a:hover {
29         color: blue;
30         text-decoration: none;
31 }
32
33 table thead td {
34         font-weight: bold;
35 }
36
37 table td {
38         padding: 0 0.4em;
39 }
40
41 #branches tr:hover td,
42 #tags tr:hover td,
43 #index tr:hover td,
44 #log tr:hover td,
45 #files tr:hover td {
46         background-color: #eee;
47 }
48
49 td.num {
50         text-align: right;
51 }
52
53 .desc {
54         color: #777;
55 }
56
57 hr {
58         border: 0;
59         border-top: 1px solid #777;
60 }
61
62 pre {
63         font-family: monospace;
64 }
65
66 pre a.h {
67         color: darkblue;
68 }
69
70 pre a.i {
71         color: green;
72 }
73
74 pre a.d {
75         color: red;
76 }
77
78 pre a.h:hover,
79 pre a.i:hover,
80 pre a.d:hover {
81         text-decoration: none;
82 }