Started on making everything a bit less bleh.
[catagits/Gitalist.git] / root / static / css / site.css
1 /* XXX Colours. Lots of colours. */
2 #body {
3   margin: 1em;
4 }
5
6 #commit-nav {
7   padding-bottom: 4px;
8   border-bottom: solid 1px #ccc;
9   font-style: italic;
10 }
11
12 thead, tfoot {
13   color: #ddd;
14   font-size: small;
15   font-weight: bold;
16 }
17
18 /* /commit page */
19 .commit-message {
20   font-family: monospace;
21 }
22 div.commit-message {
23   background-color: #ddd;
24   padding: 5px;
25 }
26 .commit-info dt {
27   font-weight: bold;
28 }
29 .commit-info dd {
30   font-family: monospace;
31 }
32
33 .filename {
34   font-family: monospace;
35 }
36 .action-list {
37   font-size: smaller;
38 }
39
40 .path {
41   border-bottom: solid 1px #ddd;
42   padding: 3px 0;
43   font-weight: bold;
44 }
45
46 /* /heads */
47 .heads .head {
48   font-weight: bold;
49 }
50 .heads .current {
51   text-decoration: underline;
52 }
53 table.heads {
54         width: 50%;
55 }
56
57 /* /blob */
58 pre.blob {
59   background-color: #333;
60   color: #ddd;
61   border-left: solid 3px #c33;
62   padding: 5px;
63   padding-left: 15px;
64   margin: 10px 15px;
65 }