summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css10
1 files changed, 7 insertions, 3 deletions
diff --git a/cgit.css b/cgit.css
index 382964a..94372d6 100644
--- a/cgit.css
+++ b/cgit.css
@@ -1,127 +1,131 @@
1body { 1body {
2 font-family: arial; 2 font-family: arial;
3 font-size: normal; 3 font-size: normal;
4 background: white; 4 background: white;
5 padding: 0em; 5 padding: 0em;
6 margin: 0.5em; 6 margin: 0.5em;
7} 7}
8 8
9 9
10h2 { 10h2 {
11 font-size: normal; 11 font-size: normal;
12 font-weight: bold; 12 font-weight: bold;
13 margin-bottom: 0.1em; 13 margin-bottom: 0.1em;
14} 14}
15 15
16a { 16a {
17 color: blue; 17 color: blue;
18 text-decoration: none; 18 text-decoration: none;
19} 19}
20 20
21a:hover { 21a:hover {
22 text-decoration: underline; 22 text-decoration: underline;
23} 23}
24 24
25table.list { 25table.list {
26 border: solid 1px black; 26 border: solid 1px black;
27 border-collapse: collapse; 27 border-collapse: collapse;
28 border: solid 1px #aaa; 28 border: solid 1px #aaa;
29} 29}
30 30table.list tr {
31 background: white;
32}
33table.list tr:hover {
34 background: #eee;
35}
31table.list th { 36table.list th {
32 font-weight: bold; 37 font-weight: bold;
33 background: #ddd; 38 background: #ddd;
34 border-bottom: solid 1px #aaa; 39 border-bottom: solid 1px #aaa;
35 padding: 0.1em 0.5em 0.1em 0.5em; 40 padding: 0.1em 0.5em 0.1em 0.5em;
36 vertical-align: baseline; 41 vertical-align: baseline;
37} 42}
38table.list td { 43table.list td {
39 border: none; 44 border: none;
40 padding: 0.1em 0.5em 0.1em 0.5em; 45 padding: 0.1em 0.5em 0.1em 0.5em;
41 background: white;
42} 46}
43
44img { 47img {
45 border: none; 48 border: none;
46} 49}
47 50
48 51
49div#header { 52div#header {
50 background-color: #ddd; 53 background-color: #ddd;
51 padding: 0.25em 0.25em 0.25em 0.5em; 54 padding: 0.25em 0.25em 0.25em 0.5em;
52 font-size: 150%; 55 font-size: 150%;
53 font-weight: bold; 56 font-weight: bold;
54 border: solid 1px #aaa; 57 border: solid 1px #aaa;
55 vertical-align: middle; 58 vertical-align: middle;
56} 59}
57div#header img#logo { 60div#header img#logo {
58 float: right; 61 float: right;
59} 62}
60 63
61div#content { 64div#content {
62 margin: 0.5em 0.5em; 65 margin: 0.5em 0.5em;
63} 66}
64 67
65div#blob { 68div#blob {
66 border: solid 1px black; 69 border: solid 1px black;
67} 70}
68 71
69div.error { 72div.error {
70 color: red; 73 color: red;
71 font-weight: bold; 74 font-weight: bold;
72 margin: 1em 2em; 75 margin: 1em 2em;
73} 76}
74div.ls-dir a { 77div.ls-dir a {
75 font-weight: bold; 78 font-weight: bold;
76} 79}
77th.filesize, td.filesize { 80th.filesize, td.filesize {
78 text-align: right; 81 text-align: right;
79} 82}
80th.filemode, td.filemode { 83th.filemode, td.filemode {
81 text-align: center; 84 text-align: center;
82} 85}
83 86
84td.blob { 87td.blob {
85 white-space: pre; 88 white-space: pre;
86 font-family: courier; 89 font-family: courier;
87 font-size: 100%; 90 font-size: 100%;
91 background-color: white;
88} 92}
89 93
90table.log td { 94table.log td {
91 white-space: nowrap; 95 white-space: nowrap;
92} 96}
93 97
94table.commit-info { 98table.commit-info {
95 border-collapse: collapse; 99 border-collapse: collapse;
96 margin-top: 1em; 100 margin-top: 1em;
97 101
98} 102}
99table.commit-info th { 103table.commit-info th {
100 text-align: left; 104 text-align: left;
101 font-weight: normal; 105 font-weight: normal;
102 padding: 0.1em 1em 0.1em 0.1em; 106 padding: 0.1em 1em 0.1em 0.1em;
103} 107}
104table.commit-info td { 108table.commit-info td {
105 font-weight: normal; 109 font-weight: normal;
106 padding: 0.1em 1em 0.1em 0.1em; 110 padding: 0.1em 1em 0.1em 0.1em;
107} 111}
108div.commit-subject { 112div.commit-subject {
109 font-weight: bold; 113 font-weight: bold;
110 font-size: 110%; 114 font-size: 110%;
111 margin: 1em 0em 1em; 115 margin: 1em 0em 1em;
112} 116}
113div.commit-msg { 117div.commit-msg {
114 white-space: pre; 118 white-space: pre;
115 font-family: courier; 119 font-family: courier;
116 font-size: 100%; 120 font-size: 100%;
117} 121}
118.sha1 { 122.sha1 {
119 font-family: courier; 123 font-family: courier;
120 font-size: 90%; 124 font-size: 90%;
121} 125}
122.left { 126.left {
123 text-align: left; 127 text-align: left;
124} 128}
125.right { 129.right {
126 text-align: right; 130 text-align: right;
127} 131}