all repos — cgit @ 10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7

a hyperfast web frontend for git written in c

cgit.css (view raw)

  1body {
  2	font-family: arial, sans-serif;
  3	font-size: 11pt;
  4	color: black;
  5	background: white;
  6}
  7
  8body, table {
  9	padding: 0em;
 10	margin: 0em;
 11}
 12
 13table {
 14      border-collapse: collapse;
 15}
 16
 17h2 {
 18	font-size: 120%;
 19	font-weight: bold;
 20	margin-top: 0em;
 21	margin-bottom: 0.25em;
 22}
 23
 24h3 {
 25	margin-top: 0em;
 26	font-size: 100%;
 27	font-weight: normal;
 28}
 29
 30h4 {
 31	margin-top: 1.5em;
 32	margin-bottom: 0.1em;
 33	font-size: 100%;
 34	font-weight: bold;
 35}
 36
 37a {
 38	color: blue;
 39	text-decoration: none;
 40}
 41
 42a:hover {
 43	text-decoration: underline;
 44}
 45
 46table.list {
 47	border: none;
 48	border-collapse: collapse;
 49}
 50
 51table.list tr {
 52	background: white;
 53}
 54
 55table.list tr:hover {
 56	background: #eee;
 57}
 58
 59table.list tr.nohover:hover {
 60	background: white;
 61}
 62
 63table.list th {
 64	font-weight: bold;
 65	border-bottom: solid 1px #777;
 66	padding: 0.1em 0.5em 0.1em 0.5em;
 67	vertical-align: baseline;
 68}
 69
 70table.list td {
 71	border: none;
 72	padding: 0.1em 0.5em 0.1em 0.5em;
 73}
 74
 75img {
 76	border: none;
 77}
 78
 79table#layout {
 80	width: 100%;
 81	border-collapse: collapse;
 82	margin: 0px;
 83}
 84
 85td#header, td#logo {
 86	color: #666;
 87	background-color: #ddd;
 88	border-bottom: solid 1px #000;
 89}
 90
 91td#header {
 92	font-size: 150%;
 93	font-weight: bold;
 94	padding: 0.2em 0.5em;
 95	vertical-align: text-bottom;
 96}
 97
 98td#header a {
 99	color: #666;
100}
101
102td#header a:hover {
103	text-decoration: underline;
104}
105
106td#logo {
107	text-align: right;
108	vertical-align: middle;
109	padding-right: 0.5em;
110}
111
112td#crumb, td#search {
113	color: #ccc;
114	border-top: solid 3px #555;
115	background-color: #666;
116	border-bottom: solid 1px #333;
117	padding: 2px 1em;
118}
119
120td#crumb {
121	font-weight: bold;
122}
123
124td#crumb a {
125	color: #ccc;
126	background-color: #666;
127	padding: 0em 0.5em 0em 0.5em;
128}
129
130td#crumb a:hover {
131	color: #666;
132	background-color: #ccc;
133	text-decoration: none;
134}
135
136td#search {
137	text-align: right;
138	vertical-align: middle;
139	padding-right: 0.5em;
140}
141
142td#search form {
143	margin: 0px;
144	padding: 0px;
145}
146
147td#search select {
148	font-size: 9pt;
149	padding: 0px;
150	border: solid 1px #333;
151	color: #333;
152	background-color: #fff;
153}
154
155td#search input {
156	font-size: 9pt;
157	padding: 0px;
158}
159
160td#search input.txt {
161	width: 8em;
162	border: solid 1px #333;
163	color: #333;
164	background-color: #fff;
165}
166
167td#search input.btn {
168	border: solid 1px #333;
169	color: #333;
170	background-color: #ccc;
171}
172
173div#summary {
174	vertical-align: top;
175	margin-bottom: 1em;
176}
177
178table#downloads {
179	float: right;
180	border-collapse: collapse;
181	border: solid 1px #777;
182	margin-left: 0.5em;
183	margin-bottom: 0.5em;
184}
185
186table#downloads th {
187	background-color: #ccc;
188}
189
190td#content {
191	padding: 1em 0.5em;
192}
193
194div#blob {
195	border: solid 1px black;
196}
197
198div.error {
199	color: red;
200	font-weight: bold;
201	margin: 1em 2em;
202}
203
204a.ls-blob, a.ls-dir, a.ls-mod {
205	font-family: monospace;
206}
207
208td.ls-size {
209	text-align: right;
210}
211
212td.ls-size {
213	font-family: monospace;
214}
215
216td.ls-mode {
217	font-family: monospace;
218}
219
220table.blob {
221	margin-top: 0.5em;
222	border-top: solid 1px black;
223}
224
225table.blob td.no {
226	border-right: solid 1px black;
227	color: black;
228	background-color: #eee;
229	text-align: right;
230}
231
232table.blob td.no a {
233	color: black;
234}
235
236table.blob td.no a:hover {
237	color: black;
238	text-decoration: none;
239}
240
241table.blob td.txt {
242	white-space: pre;
243	font-family: monospace;
244	padding-left: 0.5em;
245}
246
247table.nowrap td {
248	white-space: nowrap;
249}
250
251table.commit-info {
252	border-collapse: collapse;
253	margin-top: 1.5em;
254}
255
256table.commit-info th {
257	text-align: left;
258	font-weight: normal;
259	padding: 0.1em 1em 0.1em 0.1em;
260	vertical-align: top;
261}
262
263table.commit-info td {
264	font-weight: normal;
265	padding: 0.1em 1em 0.1em 0.1em;
266}
267
268div.commit-subject {
269	font-weight: bold;
270	font-size: 125%;
271	margin: 1.5em 0em 0.5em 0em;
272	padding: 0em;
273}
274
275div.commit-msg {
276	white-space: pre;
277	font-family: monospace;
278}
279
280div.diffstat-header {
281	font-weight: bold;
282	padding-top: 1.5em;
283}
284
285table.diffstat {
286	border-collapse: collapse;
287	width: 100%;
288	border: solid 1px #aaa;
289	background-color: #eee;
290}
291
292table.diffstat th {
293	font-weight: normal;
294	text-align: left;
295	text-decoration: underline;
296	padding: 0.1em 1em 0.1em 0.1em;
297	font-size: 100%;
298}
299
300table.diffstat td {
301	padding: 0.2em 0.2em 0.1em 0.1em;
302	font-size: 100%;
303	border: none;
304}
305
306table.diffstat td.mode {
307	white-space: nowrap;
308}
309
310table.diffstat td span.modechange {
311	padding-left: 1em;
312	color: red;
313}
314
315table.diffstat td.add a {
316	color: green;
317}
318
319table.diffstat td.del a {
320	color: red;
321}
322
323table.diffstat td.upd a {
324	color: blue;
325}
326
327table.diffstat td.graph {
328	width: 75%;
329	vertical-align: middle;
330}
331
332table.diffstat td.graph table {
333	border: none;
334}
335
336table.diffstat td.graph td {
337	padding: 0px;
338	border: 0px;
339	height: 7pt;
340}
341
342table.diffstat td.graph td.add {
343	background-color: #5c5;
344}
345
346table.diffstat td.graph td.rem {
347	background-color: #c55;
348}
349
350div.diffstat-summary {
351	color: #888;
352	padding-top: 0.5em;
353}
354
355table.diff {
356	width: 100%;
357}
358
359table.diff td {
360	font-family: monospace;
361	white-space: pre;
362}
363
364table.diff td div.head {
365	font-weight: bold;
366	margin-top: 1em;
367	background-color: #eee;
368}
369
370table.diff td div.hunk {
371	color: #009;
372}
373
374table.diff td div.add {
375	color: green;
376}
377
378table.diff td div.del {
379	color: red;
380}
381
382.sha1 {
383	font-family: monospace;
384	font-size: 90%;
385}
386
387.left {
388	text-align: left;
389}
390
391.right {
392	text-align: right;
393}
394
395table.list td.repogroup {
396	font-style: italic;
397	color: #888;
398}
399
400a.button {
401	font-size: 80%;
402	color: #aaa;
403	background-color: #eee;
404	border: solid 1px #aaa;
405	padding: 0em 0.5em;
406	margin: 0.1em 0.25em;
407}
408
409a.button:hover {
410	text-decoration: none;
411	color: #333;
412	background-color: #ccc;
413}
414
415a.primary {
416	font-size: 100%;
417}
418
419a.secondary {
420	font-size: 90%;
421}
422
423td.toplevel-repo {
424
425}
426
427table.list td.sublevel-repo {
428	padding-left: 1.5em;
429}
430
431span.age-mins {
432	font-weight: bold;
433	color: #080;
434}
435
436span.age-hours {
437	color: #080;
438}
439
440span.age-days {
441	color: #040;
442}
443
444span.age-weeks {
445	color: #444;
446}
447
448span.age-months {
449	color: #888;
450}
451
452span.age-years {
453	color: #bbb;
454}