]> git.armaanb.net Git - stagit.git/blob - style.css
logo is 32x32
[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, h2, h3, h4, h5, h6 {
28         font-size: 100%;
29 }
30
31 .desc {
32         font-size: 100%;
33         color: #777;
34 }
35
36 h1 img {
37         width: 32px;
38         height: 32px;
39 }
40
41 hr {
42         color: #777;
43         background-color: #777;
44         border: 0;
45         border-top: 1px solid #777;
46 }
47
48 pre {
49         font-family: monospace;
50 }
51
52 pre span.h {
53         color: blue;
54 }
55
56 pre span.i {
57         color: green;
58 }
59
60 pre span.d {
61         color: red;
62 }
63
64 pre span a {
65         text-decoration: none;
66         color: inherit;
67 }