]> git.armaanb.net Git - stagit.git/blob - style.css
optimization: read stats once and remember it
[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 td.num {
62         text-align: right;
63 }
64
65 .desc {
66         color: #777;
67 }
68
69 hr {
70         border: 0;
71         border-top: 1px solid #777;
72 }
73
74 pre {
75         font-family: monospace;
76 }
77
78 pre a.h {
79         color: #00a;
80 }
81
82 span.i,
83 pre a.i {
84         color: #070;
85 }
86
87 span.d,
88 pre a.d {
89         color: #e00;
90 }
91
92 pre a.h:hover,
93 pre a.i:hover,
94 pre a.d:hover {
95         text-decoration: none;
96 }