Made SyntaxHighlight more generic so /commitdiff now gets highlighting too.
[catagits/Gitalist.git] / root / static / css / site.css
1 #body {
2     margin: 1em;
3 }
4
5 #commit-nav {
6     padding-bottom: 4px;
7     border-bottom: solid 1px #ccc;
8     font-style: italic;
9 }
10
11 /* /commit page */
12 .commit-message {
13     font-family: monospace;
14 }
15 div.commit-message {
16     background-color: #ddd;
17     padding: 5px;
18 }
19 .commit-info dt {
20     font-weight: bold;
21 }
22 .commit-info dd {
23     font-family: monospace;
24 }
25
26 .filename {
27   font-family: monospace;
28 }
29 .action-list {
30   font-size: smaller;
31 }
32
33 .path {
34     border-bottom: solid 1px #ddd;
35     padding: 3px 0;
36     font-weight: bold;
37 }
38
39 /* /heads */
40 .heads .head {
41     font-weight: bold;
42 }
43 .heads .current {
44     text-decoration: underline;
45 }
46
47 /* /blob */
48 pre.blob {
49     background-color: #333;
50     color: #ddd;
51     border-left: solid 3px #c33;
52     padding: 5px;
53     padding-left: 15px;
54     margin: 10px 15px;
55 }