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