]> git.armaanb.net Git - stagit.git/blob - style.css
make submodule link black, easier to read
[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 #content table td {
42         white-space: nowrap;
43         vertical-align: top;
44 }
45
46 #branches tr:hover td,
47 #tags tr:hover td,
48 #index tr:hover td,
49 #log tr:hover td,
50 #files tr:hover td {
51         background-color: #eee;
52 }
53
54 #index tr td:nth-child(2),
55 #tags tr td:nth-child(3),
56 #branches tr td:nth-child(3),
57 #log tr td:nth-child(2) {
58         white-space: normal;
59 }
60
61 a.module {
62         color: #000;
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 }
77
78 pre {
79         font-family: monospace;
80 }
81
82 pre a.h {
83         color: #00a;
84 }
85
86 pre a.i {
87         color: #070;
88 }
89
90 pre a.d {
91         color: #e00;
92 }
93
94 pre a.h:hover,
95 pre a.i:hover,
96 pre a.d:hover {
97         text-decoration: none;
98 }