Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/cgit.css b/cgit.css index 171b9de..ea3c383 100644 --- a/ cgit.css+++ b/ cgit.css |
|
@@ -1,97 +1,97 @@ |
1 | body, table { |
1 | body, table, form { |
2 | padding: 0em; |
2 | padding: 0em; |
3 | margin: 0em; |
3 | margin: 0em; |
4 | } |
4 | } |
5 | |
5 | |
6 | body { |
6 | body { |
7 | font-family: sans-serif; |
7 | font-family: sans-serif; |
8 | font-size: 10pt; |
8 | font-size: 10pt; |
9 | color: #333; |
9 | color: #333; |
10 | background: white; |
10 | background: white; |
11 | padding: 4px; |
11 | padding: 4px; |
12 | } |
12 | } |
13 | |
13 | |
14 | a { |
14 | a { |
15 | color: blue; |
15 | color: blue; |
16 | text-decoration: none; |
16 | text-decoration: none; |
17 | } |
17 | } |
18 | |
18 | |
19 | a:hover { |
19 | a:hover { |
20 | text-decoration: underline; |
20 | text-decoration: underline; |
21 | } |
21 | } |
22 | |
22 | |
23 | table { |
23 | table { |
24 | border-collapse: collapse; |
24 | border-collapse: collapse; |
25 | } |
25 | } |
26 | |
26 | |
27 | table#header { |
27 | table#header { |
28 | width: 100%; |
28 | width: 100%; |
29 | margin-bottom: 1em; |
29 | margin-bottom: 1em; |
30 | } |
30 | } |
31 | |
31 | |
32 | table#header td.logo { |
32 | table#header td.logo { |
33 | width: 96px; |
33 | width: 96px; |
34 | } |
34 | } |
35 | |
35 | |
36 | table#header td.main { |
36 | table#header td.main { |
37 | font-size: 250%; |
37 | font-size: 250%; |
38 | padding-left: 10px; |
38 | padding-left: 10px; |
39 | } |
39 | } |
40 | |
40 | |
41 | table#header td.main a { |
41 | table#header td.main a { |
42 | color: #000; |
42 | color: #000; |
43 | } |
43 | } |
44 | |
44 | |
45 | table#header td.form { |
45 | table#header td.form { |
46 | text-align: right; |
46 | text-align: right; |
47 | vertical-align: bottom; |
47 | vertical-align: bottom; |
48 | padding-right: 1em; |
48 | padding-right: 1em; |
49 | padding-bottom: 2px; |
49 | padding-bottom: 2px; |
50 | } |
50 | } |
51 | |
51 | |
52 | table#header td.form form, |
52 | table#header td.form form, |
53 | table#header td.form input, |
53 | table#header td.form input, |
54 | table#header td.form select { |
54 | table#header td.form select { |
55 | font-size: 90%; |
55 | font-size: 90%; |
56 | } |
56 | } |
57 | |
57 | |
58 | table#header td.sub { |
58 | table#header td.sub { |
59 | color: #777; |
59 | color: #777; |
60 | border-top: solid 1px #ccc; |
60 | border-top: solid 1px #ccc; |
61 | padding-left: 10px; |
61 | padding-left: 10px; |
62 | } |
62 | } |
63 | |
63 | |
64 | table.tabs { |
64 | table.tabs { |
65 | /* border-bottom: solid 2px #ccc; */ |
65 | /* border-bottom: solid 2px #ccc; */ |
66 | border-collapse: collapse; |
66 | border-collapse: collapse; |
67 | margin-top: 2em; |
67 | margin-top: 2em; |
68 | margin-bottom: 0px; |
68 | margin-bottom: 0px; |
69 | width: 100%; |
69 | width: 100%; |
70 | } |
70 | } |
71 | |
71 | |
72 | table.tabs td { |
72 | table.tabs td { |
73 | padding: 0px 1em; |
73 | padding: 0px 1em; |
74 | vertical-align: bottom; |
74 | vertical-align: bottom; |
75 | } |
75 | } |
76 | |
76 | |
77 | table.tabs td a { |
77 | table.tabs td a { |
78 | padding: 2px 0.75em; |
78 | padding: 2px 0.75em; |
79 | color: #777; |
79 | color: #777; |
80 | font-size: 110%; |
80 | font-size: 110%; |
81 | } |
81 | } |
82 | |
82 | |
83 | table.tabs td a.active { |
83 | table.tabs td a.active { |
84 | color: #000; |
84 | color: #000; |
85 | background-color: #ccc; |
85 | background-color: #ccc; |
86 | } |
86 | } |
87 | |
87 | |
88 | table.tabs td.form { |
88 | table.tabs td.form { |
89 | text-align: right; |
89 | text-align: right; |
90 | } |
90 | } |
91 | |
91 | |
92 | table.tabs td.form form { |
92 | table.tabs td.form form { |
93 | padding-bottom: 2px; |
93 | padding-bottom: 2px; |
94 | font-size: 90%; |
94 | font-size: 90%; |
95 | } |
95 | } |
96 | |
96 | |
97 | table.tabs td.form input, |
97 | table.tabs td.form input, |
|