author | Shunichi Fuji <palglowr@gmail.com> | 2007-11-03 08:36:09 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-11-03 08:36:09 (UTC) |
commit | df203a293e3ac19245f8761cf7c5808f8735f917 (patch) (unidiff) | |
tree | 5867453725c6b51ab102a70d98a3d3c11085e6a0 | |
parent | 0c8e184e9cbf4d3a1e907de9125f6d8210c169d6 (diff) | |
download | cgit-df203a293e3ac19245f8761cf7c5808f8735f917.zip cgit-df203a293e3ac19245f8761cf7c5808f8735f917.tar.gz cgit-df203a293e3ac19245f8761cf7c5808f8735f917.tar.bz2 |
Fix typo in css
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,193 +5,193 @@ body, table { | |||
5 | 5 | ||
6 | body { | 6 | body { |
7 | font-family: sans; | 7 | font-family: sans; |
8 | font-size: 10pt; | 8 | font-size: 10pt; |
9 | color: #333; | 9 | color: #333; |
10 | background: white; | 10 | background: white; |
11 | padding-left: 4px; | 11 | padding-left: 4px; |
12 | } | 12 | } |
13 | 13 | ||
14 | table { | 14 | table { |
15 | border-collapse: collapse; | 15 | border-collapse: collapse; |
16 | } | 16 | } |
17 | 17 | ||
18 | h2 { | 18 | h2 { |
19 | font-size: 120%; | 19 | font-size: 120%; |
20 | font-weight: bold; | 20 | font-weight: bold; |
21 | margin-top: 0em; | 21 | margin-top: 0em; |
22 | margin-bottom: 0.25em; | 22 | margin-bottom: 0.25em; |
23 | } | 23 | } |
24 | 24 | ||
25 | h3 { | 25 | h3 { |
26 | margin-top: 0em; | 26 | margin-top: 0em; |
27 | font-size: 100%; | 27 | font-size: 100%; |
28 | font-weight: normal; | 28 | font-weight: normal; |
29 | } | 29 | } |
30 | 30 | ||
31 | h4 { | 31 | h4 { |
32 | margin-top: 1.5em; | 32 | margin-top: 1.5em; |
33 | margin-bottom: 0.1em; | 33 | margin-bottom: 0.1em; |
34 | font-size: 100%; | 34 | font-size: 100%; |
35 | font-weight: bold; | 35 | font-weight: bold; |
36 | } | 36 | } |
37 | 37 | ||
38 | a { | 38 | a { |
39 | color: #600; | 39 | color: #600; |
40 | text-decoration: none; | 40 | text-decoration: none; |
41 | } | 41 | } |
42 | 42 | ||
43 | a:hover { | 43 | a:hover { |
44 | background-color: #ddd; | 44 | background-color: #ddd; |
45 | text-decoration: none; | 45 | text-decoration: none; |
46 | } | 46 | } |
47 | 47 | ||
48 | table.list { | 48 | table.list { |
49 | border: none; | 49 | border: none; |
50 | border-collapse: collapse; | 50 | border-collapse: collapse; |
51 | } | 51 | } |
52 | 52 | ||
53 | table.list tr { | 53 | table.list tr { |
54 | background: white; | 54 | background: white; |
55 | } | 55 | } |
56 | 56 | ||
57 | table.list tr:hover { | 57 | table.list tr:hover { |
58 | background: #f8f8f8; | 58 | background: #f8f8f8; |
59 | } | 59 | } |
60 | 60 | ||
61 | table.list tr.nohover:hover { | 61 | table.list tr.nohover:hover { |
62 | background: white; | 62 | background: white; |
63 | } | 63 | } |
64 | 64 | ||
65 | table.list th { | 65 | table.list th { |
66 | font-weight: bold; | 66 | font-weight: bold; |
67 | border-bottom: solid 1px #777; | 67 | border-bottom: solid 1px #777; |
68 | padding: 0.1em 0.5em 0.1em 0.5em; | 68 | padding: 0.1em 0.5em 0.1em 0.5em; |
69 | vertical-align: baseline; | 69 | vertical-align: baseline; |
70 | } | 70 | } |
71 | 71 | ||
72 | table.list td { | 72 | table.list td { |
73 | border: none; | 73 | border: none; |
74 | padding: 0.1em 0.5em 0.1em 0.5em; | 74 | padding: 0.1em 0.5em 0.1em 0.5em; |
75 | } | 75 | } |
76 | 76 | ||
77 | img { | 77 | img { |
78 | border: none; | 78 | border: none; |
79 | } | 79 | } |
80 | 80 | ||
81 | div#sidebar { | 81 | div#sidebar { |
82 | vertical-align: top; | 82 | vertical-align: top; |
83 | width: 162px; | 83 | width: 162px; |
84 | padding: 0px 0px 0px 0px; | 84 | padding: 0px 0px 0px 0px; |
85 | margin: 4px; | 85 | margin: 4px; |
86 | float: left; | 86 | float: left; |
87 | } | 87 | } |
88 | 88 | ||
89 | div#logo { | 89 | div#logo { |
90 | margin: 0px; | 90 | margin: 0px; |
91 | padding: 4px 0px 4px 0px; | 91 | padding: 4px 0px 4px 0px; |
92 | text-align: center; | 92 | text-align: center; |
93 | background-color: #ccc; | 93 | background-color: #ccc; |
94 | border-top: solid 1px #eee; | 94 | border-top: solid 1px #eee; |
95 | border-left: solid 1px #eee; | 95 | border-left: solid 1px #eee; |
96 | border-right: solid 1px #aaa; | 96 | border-right: solid 1px #aaa; |
97 | border-bottom: solid 1px #aaa; | 97 | border-bottom: solid 1px #aaa; |
98 | } | 98 | } |
99 | 99 | ||
100 | div#sidebar div.infobox { | 100 | div#sidebar div.infobox { |
101 | margin: 0px 0px 0pax 0px; | 101 | margin: 0px 0px 0px 0px; |
102 | padding: 0.5em; | 102 | padding: 0.5em; |
103 | text-align: left; | 103 | text-align: left; |
104 | background-color: #ccc; | 104 | background-color: #ccc; |
105 | border-top: solid 1px #eee; | 105 | border-top: solid 1px #eee; |
106 | border-left: solid 1px #eee; | 106 | border-left: solid 1px #eee; |
107 | border-right: solid 1px #aaa; | 107 | border-right: solid 1px #aaa; |
108 | border-bottom: solid 1px #aaa; | 108 | border-bottom: solid 1px #aaa; |
109 | } | 109 | } |
110 | 110 | ||
111 | div#sidebar div.infobox h1 { | 111 | div#sidebar div.infobox h1 { |
112 | font-size: 11pt; | 112 | font-size: 11pt; |
113 | font-weight: bold; | 113 | font-weight: bold; |
114 | margin: 0px; | 114 | margin: 0px; |
115 | } | 115 | } |
116 | 116 | ||
117 | div#sidebar div.infobox a.menu { | 117 | div#sidebar div.infobox a.menu { |
118 | display: block; | 118 | display: block; |
119 | background-color: #ccc; | 119 | background-color: #ccc; |
120 | padding: 0.1em 0.5em; | 120 | padding: 0.1em 0.5em; |
121 | text-decoration: none; | 121 | text-decoration: none; |
122 | } | 122 | } |
123 | 123 | ||
124 | div#sidebar div.infobox a.menu:hover { | 124 | div#sidebar div.infobox a.menu:hover { |
125 | background-color: #bbb; | 125 | background-color: #bbb; |
126 | text-decoration: none; | 126 | text-decoration: none; |
127 | } | 127 | } |
128 | 128 | ||
129 | div#sidebar div.infobox select { | 129 | div#sidebar div.infobox select { |
130 | width: 100%; | 130 | width: 100%; |
131 | border: solid 1px #aaa; | 131 | border: solid 1px #aaa; |
132 | background-color: #bbb; | 132 | background-color: #bbb; |
133 | margin: 2px 0px 0px 0px; | 133 | margin: 2px 0px 0px 0px; |
134 | padding: 0px; | 134 | padding: 0px; |
135 | } | 135 | } |
136 | 136 | ||
137 | div#sidebar div.infobox input.txt { | 137 | div#sidebar div.infobox input.txt { |
138 | width: 100%; | 138 | width: 100%; |
139 | border: solid 1px #aaa; | 139 | border: solid 1px #aaa; |
140 | background-color: #bbb; | 140 | background-color: #bbb; |
141 | margin: 2px 0px 0px 0px; | 141 | margin: 2px 0px 0px 0px; |
142 | padding: 0; | 142 | padding: 0; |
143 | } | 143 | } |
144 | 144 | ||
145 | table#grid { | 145 | table#grid { |
146 | margin: 0px; | 146 | margin: 0px; |
147 | } | 147 | } |
148 | 148 | ||
149 | td#content { | 149 | td#content { |
150 | vertical-align: top; | 150 | vertical-align: top; |
151 | padding: 1em 2em 1em 1em; | 151 | padding: 1em 2em 1em 1em; |
152 | border: none; | 152 | border: none; |
153 | } | 153 | } |
154 | 154 | ||
155 | div#summary { | 155 | div#summary { |
156 | vertical-align: top; | 156 | vertical-align: top; |
157 | margin-bottom: 1em; | 157 | margin-bottom: 1em; |
158 | } | 158 | } |
159 | 159 | ||
160 | table#downloads { | 160 | table#downloads { |
161 | float: right; | 161 | float: right; |
162 | border-collapse: collapse; | 162 | border-collapse: collapse; |
163 | border: solid 1px #777; | 163 | border: solid 1px #777; |
164 | margin-left: 0.5em; | 164 | margin-left: 0.5em; |
165 | margin-bottom: 0.5em; | 165 | margin-bottom: 0.5em; |
166 | } | 166 | } |
167 | 167 | ||
168 | table#downloads th { | 168 | table#downloads th { |
169 | background-color: #ccc; | 169 | background-color: #ccc; |
170 | } | 170 | } |
171 | 171 | ||
172 | div#blob { | 172 | div#blob { |
173 | border: solid 1px black; | 173 | border: solid 1px black; |
174 | } | 174 | } |
175 | 175 | ||
176 | div.error { | 176 | div.error { |
177 | color: red; | 177 | color: red; |
178 | font-weight: bold; | 178 | font-weight: bold; |
179 | margin: 1em 2em; | 179 | margin: 1em 2em; |
180 | } | 180 | } |
181 | 181 | ||
182 | a.ls-blob, a.ls-dir, a.ls-mod { | 182 | a.ls-blob, a.ls-dir, a.ls-mod { |
183 | font-family: monospace; | 183 | font-family: monospace; |
184 | } | 184 | } |
185 | 185 | ||
186 | td.ls-size { | 186 | td.ls-size { |
187 | text-align: right; | 187 | text-align: right; |
188 | } | 188 | } |
189 | 189 | ||
190 | td.ls-size { | 190 | td.ls-size { |
191 | font-family: monospace; | 191 | font-family: monospace; |
192 | } | 192 | } |
193 | 193 | ||
194 | td.ls-mode { | 194 | td.ls-mode { |
195 | font-family: monospace; | 195 | font-family: monospace; |
196 | } | 196 | } |
197 | 197 | ||