]> git.armaanb.net Git - stagit.git/blob - style.css
style.css: improve style, add highlight colors for diff
[stagit.git] / style.css
1 body {
2         font-family: sans-serif;
3         color: #333;
4         background-color: #fff;
5 }
6
7 h1, h2, h3, h4, h5, h6 {
8         margin: 0;
9 }
10
11 img, h1, h2 {
12         vertical-align: middle;
13 }
14
15 table thead td {
16         font-weight: bold;
17 }
18
19 table td {
20         padding: 0 3px;
21 }
22
23 table tr:hover td {
24         background-color: #ddd;
25 }
26
27 h1 {
28         font-size: 140%;
29 }
30
31 .desc {
32         font-size: 100%;
33         color: #777;
34 }
35
36 h1 img {
37         height: 32px;
38 }
39
40 hr {
41         color: #777;
42         background-color: #777;
43         border: 0;
44         border-top: 1px solid #777;
45 }
46
47 pre {
48         font-family: monospace;
49 }
50
51 pre span.i {
52         color: green;
53 }
54
55 pre span.d {
56         color: red;
57 }
58
59 pre span a {
60         text-decoration: none;
61         color: inherit;
62 }