]> git.armaanb.net Git - stagit.git/blob - style.css
Line numbers on blob pages
[stagit.git] / style.css
1 body {
2         font-family: monospace;
3         color: #333;
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 #log tr:hover td, #files tr:hover td {
42         background-color: #eee;
43 }
44
45 td.num {
46         text-align: right;
47 }
48
49 .desc {
50         color: #777;
51 }
52
53 hr {
54         border: 0;
55         border-top: 1px solid #777;
56 }
57
58 pre {
59         font-family: monospace;
60 }
61
62 pre .h {
63         color: darkcyan;
64 }
65
66 pre a.i {
67         color: green;
68 }
69
70 pre a.d {
71         color: red;
72 }
73
74 pre a.i:hover, pre a.d:hover {
75         text-decoration: none;
76 }