]> git.armaanb.net Git - stagit.git/blob - style.css
style.css: wrap description text, nowrap for rest
[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         white-space: nowrap;
40         vertical-align: top;
41 }
42
43 #branches tr:hover td,
44 #tags tr:hover td,
45 #index tr:hover td,
46 #log tr:hover td,
47 #files tr:hover td {
48         background-color: #eee;
49 }
50
51 #index tr td:nth-child(2),
52 #tags tr td:nth-child(3),
53 #branches tr td:nth-child(3),
54 #log tr td:nth-child(2) {
55         white-space: normal;
56 }
57
58 td.num {
59         text-align: right;
60 }
61
62 .desc {
63         color: #777;
64 }
65
66 hr {
67         border: 0;
68         border-top: 1px solid #777;
69 }
70
71 pre {
72         font-family: monospace;
73 }
74
75 pre a.h {
76         color: darkblue;
77 }
78
79 pre a.i {
80         color: green;
81 }
82
83 pre a.d {
84         color: red;
85 }
86
87 pre a.h:hover,
88 pre a.i:hover,
89 pre a.d:hover {
90         text-decoration: none;
91 }