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