]> git.armaanb.net Git - stagit.git/blob - style.css
Make border solid
[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 table thead td {
25         font-weight: bold;
26 }
27
28 table td {
29         padding: 0 0.4em;
30 }
31
32 #content table tr:hover td {
33         background-color: #eee;
34 }
35
36 .desc {
37         color: #777;
38 }
39
40 hr {
41         border: 0;
42         border-top: 1px solid #777;
43 }
44
45 pre {
46         font-family: monospace;
47 }
48
49 pre .h {
50         color: darkcyan;
51 }
52
53 pre a.i {
54         color: green;
55 }
56
57 pre a.d {
58         color: red;
59 }
60
61 pre a.i:hover, pre a.d:hover {
62         text-decoration: none;
63 }