cgit.css (view raw)
1body {
2 font-family: arial;
3 font-size: 11pt;
4 background: white;
5 padding: 0em;
6 margin: 0em;
7}
8
9
10h2 {
11 font-size: 120%;
12 font-weight: bold;
13 margin-top: 0em;
14 margin-bottom: 0.25em;
15}
16
17h3 {
18 margin-top: 0em;
19 font-size: 100%;
20 font-weight: normal;
21}
22
23a {
24 color: blue;
25 text-decoration: none;
26}
27
28a:hover {
29 text-decoration: underline;
30}
31
32table.list {
33 border: none;
34 border-collapse: collapse;
35}
36
37table.list tr {
38 background: white;
39}
40
41table.list tr:hover {
42 background: #eee;
43}
44
45table.list tr.nohover:hover {
46 background: white;
47}
48
49table.list th {
50 font-weight: normal;
51 border-bottom: solid 1px #777;
52 padding: 0.1em 0.5em 0.1em 0.5em;
53 vertical-align: baseline;
54}
55
56table.list td {
57 border: none;
58 padding: 0.1em 0.5em 0.1em 0.5em;
59}
60
61img {
62 border: none;
63}
64
65table#layout {
66 width: 100%;
67 border-collapse: separate;
68 border-spacing: 0px;
69 margin: 0px;
70}
71
72td#header, td#logo {
73 color: #666;
74 background-color: #ddd;
75 border-bottom: solid 1px #000;
76}
77
78td#header {
79 font-size: 150%;
80 font-weight: bold;
81 padding: 0.2em 0.5em;
82 vertical-align: text-bottom;
83}
84
85td#logo {
86 text-align: right;
87 vertical-align: middle;
88 padding-right: 0.5em;
89}
90
91td#crumb, td#search {
92 color: #ccc;
93 border-top: solid 3px #555;
94 background-color: #666;
95 border-bottom: solid 1px #333;
96 padding: 2px 1em;
97}
98
99td#crumb {
100 font-weight: bold;
101}
102
103td#crumb a {
104 color: #ccc;
105}
106
107td#crumb a:hover {
108 color: #eee;
109}
110
111td#search {
112 text-align: right;
113 vertical-align: center;
114 padding-right: 0.5em;
115}
116
117td#search form {
118 margin: 0px;
119 padding: 0px;
120}
121
122td#search input {
123 font-size: 9pt;
124 padding: 0px;
125 width: 10em;
126 border: solid 1px #333;
127 color: #333;
128 background-color: #fff;
129}
130
131td#summary {
132 vertical-align: top;
133 padding-bottom: 1em;
134}
135
136td#archivelist {
137 padding-bottom: 1em;
138}
139
140td#archivelist table {
141 float: right;
142 border-collapse: collapse;
143 border: solid 1px #777;
144}
145
146td#archivelist table th {
147 background-color: #ccc;
148}
149
150td#content {
151 padding: 1em 0.5em;
152}
153
154div#blob {
155 border: solid 1px black;
156}
157
158div.error {
159 color: red;
160 font-weight: bold;
161 margin: 1em 2em;
162}
163
164td.ls-blob, td.ls-dir, td.ls-mod {
165 font-family: monospace;
166}
167
168div.ls-dir a {
169 font-weight: bold;
170}
171
172th.filesize, td.filesize {
173 text-align: right;
174}
175
176td.filesize {
177 font-family: monospace;
178}
179
180td.filemode {
181 font-family: monospace;
182}
183
184td.blob {
185 white-space: pre;
186 font-family: monospace;
187 background-color: white;
188}
189
190table.nowrap td {
191 white-space: nowrap;
192}
193
194table.commit-info {
195 border-collapse: collapse;
196 margin-top: 1.5em;
197}
198
199table.commit-info th {
200 text-align: left;
201 font-weight: normal;
202 padding: 0.1em 1em 0.1em 0.1em;
203}
204
205table.commit-info td {
206 font-weight: normal;
207 padding: 0.1em 1em 0.1em 0.1em;
208}
209
210div.commit-subject {
211 font-weight: bold;
212 font-size: 125%;
213 margin: 1.5em 0em 0.5em 0em;
214 padding: 0em;
215}
216
217div.commit-msg {
218 white-space: pre;
219 font-family: monospace;
220}
221
222table.diffstat {
223 border-collapse: collapse;
224 margin-top: 1.5em;
225}
226
227table.diffstat th {
228 font-weight: normal;
229 text-align: left;
230 text-decoration: underline;
231 padding: 0.1em 1em 0.1em 0.1em;
232 font-size: 100%;
233}
234
235table.diffstat td {
236 padding: 0.1em 1em 0.1em 0.1em;
237 font-size: 100%;
238}
239
240table.diffstat td span.modechange {
241 padding-left: 1em;
242 color: red;
243}
244
245table.diffstat td.add a {
246 color: green;
247}
248
249table.diffstat td.del a {
250 color: red;
251}
252
253table.diffstat td.upd a {
254 color: blue;
255}
256
257table.diffstat td.summary {
258 color: #888;
259 padding-top: 0.5em;
260}
261
262table.diff td {
263 border: solid 1px black;
264 font-family: monospace;
265 white-space: pre;
266}
267
268table.diff td div.hunk {
269 background: #ccc;
270}
271
272table.diff td div.add {
273 color: green;
274}
275
276table.diff td div.del {
277 color: red;
278}
279
280.sha1 {
281 font-family: courier;
282 font-size: 90%;
283}
284
285.left {
286 text-align: left;
287}
288
289.right {
290 text-align: right;
291}