Blame


1 8a35f56c 2022-07-16 thomas /*
2 8a35f56c 2022-07-16 thomas * Copyright (c) 2019 Jerome Kasper <neon.king.fr@gmail.com>
3 8a35f56c 2022-07-16 thomas * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
4 8a35f56c 2022-07-16 thomas *
5 8a35f56c 2022-07-16 thomas * Permission to use, copy, modify, and distribute this software for any
6 8a35f56c 2022-07-16 thomas * purpose with or without fee is hereby granted, provided that the above
7 8a35f56c 2022-07-16 thomas * copyright notice and this permission notice appear in all copies.
8 8a35f56c 2022-07-16 thomas *
9 8a35f56c 2022-07-16 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 8a35f56c 2022-07-16 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 8a35f56c 2022-07-16 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 8a35f56c 2022-07-16 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 8a35f56c 2022-07-16 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 8a35f56c 2022-07-16 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 8a35f56c 2022-07-16 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 8a35f56c 2022-07-16 thomas */
17 8a35f56c 2022-07-16 thomas
18 8a35f56c 2022-07-16 thomas /* general sections */
19 8a35f56c 2022-07-16 thomas
20 8a35f56c 2022-07-16 thomas a {
21 8a35f56c 2022-07-16 thomas color: #444444;
22 8a35f56c 2022-07-16 thomas text-decoration: none;
23 8a35f56c 2022-07-16 thomas }
24 8a35f56c 2022-07-16 thomas a:hover {
25 8a35f56c 2022-07-16 thomas color: Gold;
26 8a35f56c 2022-07-16 thomas text-decoration: none;
27 8a35f56c 2022-07-16 thomas }
28 8a35f56c 2022-07-16 thomas body {
29 8a35f56c 2022-07-16 thomas background-color: #ffffff;
30 8a35f56c 2022-07-16 thomas color: #000000;
31 8a35f56c 2022-07-16 thomas margin: 0;
32 8a35f56c 2022-07-16 thomas padding: 0;
33 8a35f56c 2022-07-16 thomas font-family: Arial, sans-serif;
34 8a35f56c 2022-07-16 thomas }
35 8a35f56c 2022-07-16 thomas
36 8a35f56c 2022-07-16 thomas .diff_minus, .diff_submodule {
37 8a35f56c 2022-07-16 thomas color: magenta;
38 8a35f56c 2022-07-16 thomas }
39 8a35f56c 2022-07-16 thomas .diff_plus, .diff_symlink, .diff_author {
40 8a35f56c 2022-07-16 thomas color: darkcyan;
41 8a35f56c 2022-07-16 thomas }
42 8a35f56c 2022-07-16 thomas .diff_chunk_header, .diff_date {
43 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
44 8a35f56c 2022-07-16 thomas color: yellow;
45 8a35f56c 2022-07-16 thomas }
46 8a35f56c 2022-07-16 thomas .diff_meta, .diff_executable, .diff_commit {
47 8a35f56c 2022-07-16 thomas color: green;
48 8a35f56c 2022-07-16 thomas }
49 8a35f56c 2022-07-16 thomas .diff_directory {
50 8a35f56c 2022-07-16 thomas color: blue;
51 8a35f56c 2022-07-16 thomas }
52 8a35f56c 2022-07-16 thomas
53 8a35f56c 2022-07-16 thomas .back_white {
54 8a35f56c 2022-07-16 thomas background-color: #ffffff;
55 8a35f56c 2022-07-16 thomas }
56 8a35f56c 2022-07-16 thomas .back_lightgray {
57 8a35f56c 2022-07-16 thomas background-color: #d8f3ef;
58 8a35f56c 2022-07-16 thomas }
59 8a35f56c 2022-07-16 thomas
60 8a35f56c 2022-07-16 thomas #logo {
61 8a35f56c 2022-07-16 thomas height: 50px;
62 8a35f56c 2022-07-16 thomas }
63 8a35f56c 2022-07-16 thomas #refs_str {
64 8a35f56c 2022-07-16 thomas background-color: #243647;
65 8a35f56c 2022-07-16 thomas color: #ffffff;
66 8a35f56c 2022-07-16 thomas font-style: italic;
67 8a35f56c 2022-07-16 thomas }
68 8a35f56c 2022-07-16 thomas #dotted_line {
69 8a35f56c 2022-07-16 thomas clear: left;
70 8a35f56c 2022-07-16 thomas float: left;
71 8a35f56c 2022-07-16 thomas width: 100%;
72 8a35f56c 2022-07-16 thomas border-top: 1px dotted #444444;
73 8a35f56c 2022-07-16 thomas }
74 8a35f56c 2022-07-16 thomas #header {
75 8a35f56c 2022-07-16 thomas overflow: auto;
76 8a35f56c 2022-07-16 thomas width: 100%;
77 8a35f56c 2022-07-16 thomas background-image: linear-gradient(to right, White, LightSlateGray);
78 8a35f56c 2022-07-16 thomas }
79 8a35f56c 2022-07-16 thomas #header a {
80 8a35f56c 2022-07-16 thomas color: #ffffff;
81 8a35f56c 2022-07-16 thomas font-size: 1.2em;
82 8a35f56c 2022-07-16 thomas text-decoration: none;
83 8a35f56c 2022-07-16 thomas }
84 8a35f56c 2022-07-16 thomas #header a:hover {
85 8a35f56c 2022-07-16 thomas color: Gold;
86 8a35f56c 2022-07-16 thomas font-size: 1.2em;
87 8a35f56c 2022-07-16 thomas text-decoration: none;
88 8a35f56c 2022-07-16 thomas }
89 8a35f56c 2022-07-16 thomas #site_path {
90 8a35f56c 2022-07-16 thomas clear: left;
91 8a35f56c 2022-07-16 thomas float: left;
92 8a35f56c 2022-07-16 thomas overflow: auto;
93 8a35f56c 2022-07-16 thomas width: 100%;
94 8a35f56c 2022-07-16 thomas background-color: #243647;
95 8a35f56c 2022-07-16 thomas }
96 8a35f56c 2022-07-16 thomas #site_link {
97 8a35f56c 2022-07-16 thomas float: left;
98 8a35f56c 2022-07-16 thomas width: 40%;
99 8a35f56c 2022-07-16 thomas padding-left: 10px;
100 8a35f56c 2022-07-16 thomas padding-top: 5px;
101 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
102 8a35f56c 2022-07-16 thomas color: #ffffff;
103 8a35f56c 2022-07-16 thomas overflow: hidden;
104 8a35f56c 2022-07-16 thomas }
105 8a35f56c 2022-07-16 thomas #site_link a {
106 8a35f56c 2022-07-16 thomas color: #ffffff;
107 8a35f56c 2022-07-16 thomas text-decoration: none;
108 8a35f56c 2022-07-16 thomas }
109 8a35f56c 2022-07-16 thomas #search {
110 8a35f56c 2022-07-16 thomas float: right;
111 8a35f56c 2022-07-16 thomas padding-right: 10px;
112 8a35f56c 2022-07-16 thomas padding-top: 5px;
113 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
114 8a35f56c 2022-07-16 thomas }
115 8a35f56c 2022-07-16 thomas #got_link {
116 8a35f56c 2022-07-16 thomas float: left;
117 8a35f56c 2022-07-16 thomas padding-bottom: 10px;
118 8a35f56c 2022-07-16 thomas padding-top: 10px;
119 8a35f56c 2022-07-16 thomas }
120 8a35f56c 2022-07-16 thomas #content {
121 8a35f56c 2022-07-16 thomas width: 100%;
122 8a35f56c 2022-07-16 thomas }
123 8a35f56c 2022-07-16 thomas #np_wrapper {
124 8a35f56c 2022-07-16 thomas clear: left;
125 8a35f56c 2022-07-16 thomas float: left;
126 8a35f56c 2022-07-16 thomas width: 100%;
127 8a35f56c 2022-07-16 thomas border-bottom: 1px dotted #444444;
128 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
129 8a35f56c 2022-07-16 thomas overflow: hidden;
130 8a35f56c 2022-07-16 thomas }
131 8a35f56c 2022-07-16 thomas #nav_prev {
132 8a35f56c 2022-07-16 thomas float: left;
133 8a35f56c 2022-07-16 thomas padding-left: 10px;
134 8a35f56c 2022-07-16 thomas padding-top: 5px;
135 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
136 8a35f56c 2022-07-16 thomas overflow: visible;
137 8a35f56c 2022-07-16 thomas }
138 8a35f56c 2022-07-16 thomas #nav_next {
139 8a35f56c 2022-07-16 thomas padding-right: 10px;
140 8a35f56c 2022-07-16 thomas padding-top: 5px;
141 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
142 8a35f56c 2022-07-16 thomas text-align: right;
143 8a35f56c 2022-07-16 thomas overflow: hidden;
144 8a35f56c 2022-07-16 thomas }
145 8a35f56c 2022-07-16 thomas #navs_wrapper {
146 8a35f56c 2022-07-16 thomas clear: left;
147 8a35f56c 2022-07-16 thomas float: left;
148 8a35f56c 2022-07-16 thomas width: 100%;
149 8a35f56c 2022-07-16 thomas background-color: #ced7e0;
150 8a35f56c 2022-07-16 thomas }
151 8a35f56c 2022-07-16 thomas #navs {
152 8a35f56c 2022-07-16 thomas padding-left: 10px;
153 8a35f56c 2022-07-16 thomas padding-top: 2px;
154 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
155 8a35f56c 2022-07-16 thomas font-size: .8em;
156 8a35f56c 2022-07-16 thomas }
157 8a35f56c 2022-07-16 thomas #site_owner_wrapper {
158 8a35f56c 2022-07-16 thomas clear: left;
159 8a35f56c 2022-07-16 thomas float: left;
160 8a35f56c 2022-07-16 thomas width: 100%;
161 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
162 8a35f56c 2022-07-16 thomas color: #ffffff;
163 8a35f56c 2022-07-16 thomas }
164 8a35f56c 2022-07-16 thomas #site_owner {
165 8a35f56c 2022-07-16 thomas padding-left: 10px;
166 8a35f56c 2022-07-16 thomas padding-top: 5px;
167 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
168 8a35f56c 2022-07-16 thomas }
169 8a35f56c 2022-07-16 thomas #description_title {
170 8a35f56c 2022-07-16 thomas clear: left;
171 8a35f56c 2022-07-16 thomas float: left;
172 8a35f56c 2022-07-16 thomas width: 6.5em;
173 8a35f56c 2022-07-16 thomas padding-left: 10px;
174 8a35f56c 2022-07-16 thomas padding-top: 5px;
175 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
176 8a35f56c 2022-07-16 thomas }
177 8a35f56c 2022-07-16 thomas #description {
178 8a35f56c 2022-07-16 thomas float: left;
179 8a35f56c 2022-07-16 thomas width: 72%;
180 8a35f56c 2022-07-16 thomas padding-top: 5px;
181 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
182 8a35f56c 2022-07-16 thomas }
183 8a35f56c 2022-07-16 thomas #repo_owner_title {
184 8a35f56c 2022-07-16 thomas clear: left;
185 8a35f56c 2022-07-16 thomas float: left;
186 8a35f56c 2022-07-16 thomas width: 6.5em;
187 8a35f56c 2022-07-16 thomas padding-left: 10px;
188 8a35f56c 2022-07-16 thomas padding-top: 5px;
189 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
190 8a35f56c 2022-07-16 thomas }
191 8a35f56c 2022-07-16 thomas #repo_owner {
192 8a35f56c 2022-07-16 thomas float: left;
193 8a35f56c 2022-07-16 thomas width: 72%;
194 8a35f56c 2022-07-16 thomas padding-top: 5px;
195 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
196 8a35f56c 2022-07-16 thomas }
197 8a35f56c 2022-07-16 thomas #last_change_title {
198 8a35f56c 2022-07-16 thomas clear: left;
199 8a35f56c 2022-07-16 thomas float: left;
200 8a35f56c 2022-07-16 thomas width: 6.5em;
201 8a35f56c 2022-07-16 thomas padding-left: 10px;
202 8a35f56c 2022-07-16 thomas padding-top: 5px;
203 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
204 8a35f56c 2022-07-16 thomas }
205 8a35f56c 2022-07-16 thomas #last_change {
206 8a35f56c 2022-07-16 thomas float: left;
207 8a35f56c 2022-07-16 thomas width: 72%;
208 8a35f56c 2022-07-16 thomas padding-top: 5px;
209 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
210 8a35f56c 2022-07-16 thomas }
211 8a35f56c 2022-07-16 thomas #cloneurl_title {
212 8a35f56c 2022-07-16 thomas clear: left;
213 8a35f56c 2022-07-16 thomas float: left;
214 8a35f56c 2022-07-16 thomas width: 6.5em;
215 8a35f56c 2022-07-16 thomas padding-left: 10px;
216 8a35f56c 2022-07-16 thomas padding-top: 5px;
217 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
218 8a35f56c 2022-07-16 thomas }
219 8a35f56c 2022-07-16 thomas #cloneurl {
220 8a35f56c 2022-07-16 thomas float: left;
221 8a35f56c 2022-07-16 thomas width: 72%;
222 8a35f56c 2022-07-16 thomas padding-top: 5px;
223 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
224 8a35f56c 2022-07-16 thomas overflow: auto;
225 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
226 8a35f56c 2022-07-16 thomas }
227 8a35f56c 2022-07-16 thomas
228 8a35f56c 2022-07-16 thomas #header_commit_title {
229 8a35f56c 2022-07-16 thomas clear: left;
230 8a35f56c 2022-07-16 thomas float: left;
231 8a35f56c 2022-07-16 thomas width: 6.5em;
232 8a35f56c 2022-07-16 thomas padding-left: 10px;
233 8a35f56c 2022-07-16 thomas padding-top: 2px;
234 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
235 8a35f56c 2022-07-16 thomas }
236 8a35f56c 2022-07-16 thomas #header_commit {
237 8a35f56c 2022-07-16 thomas float: left;
238 8a35f56c 2022-07-16 thomas width: 72%;
239 8a35f56c 2022-07-16 thomas padding-top: 2px;
240 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
241 8a35f56c 2022-07-16 thomas }
242 8a35f56c 2022-07-16 thomas #header_diff_title {
243 8a35f56c 2022-07-16 thomas clear: left;
244 8a35f56c 2022-07-16 thomas float: left;
245 8a35f56c 2022-07-16 thomas width: 6.5em;
246 8a35f56c 2022-07-16 thomas padding-left: 10px;
247 8a35f56c 2022-07-16 thomas padding-top: 2px;
248 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
249 8a35f56c 2022-07-16 thomas }
250 8a35f56c 2022-07-16 thomas #header_diff {
251 8a35f56c 2022-07-16 thomas float: left;
252 8a35f56c 2022-07-16 thomas width: 72%;
253 8a35f56c 2022-07-16 thomas padding-top: 2px;
254 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
255 8a35f56c 2022-07-16 thomas }
256 8a35f56c 2022-07-16 thomas #header_author_title {
257 8a35f56c 2022-07-16 thomas clear: left;
258 8a35f56c 2022-07-16 thomas float: left;
259 8a35f56c 2022-07-16 thomas width: 6.5em;
260 8a35f56c 2022-07-16 thomas padding-left: 10px;
261 8a35f56c 2022-07-16 thomas padding-top: 2px;
262 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
263 8a35f56c 2022-07-16 thomas }
264 8a35f56c 2022-07-16 thomas #header_author {
265 8a35f56c 2022-07-16 thomas float: left;
266 8a35f56c 2022-07-16 thomas width: 72%;
267 8a35f56c 2022-07-16 thomas padding-top: 2px;
268 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
269 8a35f56c 2022-07-16 thomas }
270 8a35f56c 2022-07-16 thomas #header_committer_title {
271 8a35f56c 2022-07-16 thomas clear: left;
272 8a35f56c 2022-07-16 thomas float: left;
273 8a35f56c 2022-07-16 thomas width: 6.5em;
274 8a35f56c 2022-07-16 thomas padding-left: 10px;
275 8a35f56c 2022-07-16 thomas padding-top: 2px;
276 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
277 8a35f56c 2022-07-16 thomas }
278 8a35f56c 2022-07-16 thomas #header_committer {
279 8a35f56c 2022-07-16 thomas float: left;
280 8a35f56c 2022-07-16 thomas width: 72%;
281 8a35f56c 2022-07-16 thomas padding-top: 2px;
282 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
283 8a35f56c 2022-07-16 thomas }
284 8a35f56c 2022-07-16 thomas #header_age_title {
285 8a35f56c 2022-07-16 thomas clear: left;
286 8a35f56c 2022-07-16 thomas float: left;
287 8a35f56c 2022-07-16 thomas width: 6.5em;
288 8a35f56c 2022-07-16 thomas padding-left: 10px;
289 8a35f56c 2022-07-16 thomas padding-top: 2px;
290 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
291 8a35f56c 2022-07-16 thomas }
292 8a35f56c 2022-07-16 thomas #header_age {
293 8a35f56c 2022-07-16 thomas float: left;
294 8a35f56c 2022-07-16 thomas width: 72%;
295 8a35f56c 2022-07-16 thomas padding-top: 2px;
296 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
297 8a35f56c 2022-07-16 thomas }
298 8a35f56c 2022-07-16 thomas #header_commit_msg_title {
299 8a35f56c 2022-07-16 thomas clear: left;
300 8a35f56c 2022-07-16 thomas float: left;
301 8a35f56c 2022-07-16 thomas width: 6.5em;
302 8a35f56c 2022-07-16 thomas padding-left: 10px;
303 8a35f56c 2022-07-16 thomas padding-top: 2px;
304 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
305 8a35f56c 2022-07-16 thomas }
306 8a35f56c 2022-07-16 thomas #header_commit_msg {
307 8a35f56c 2022-07-16 thomas float: left;
308 8a35f56c 2022-07-16 thomas width: 72%;
309 8a35f56c 2022-07-16 thomas padding-top: 2px;
310 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
311 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
312 8a35f56c 2022-07-16 thomas }
313 8a35f56c 2022-07-16 thomas #header_tree_title {
314 8a35f56c 2022-07-16 thomas clear: left;
315 8a35f56c 2022-07-16 thomas float: left;
316 8a35f56c 2022-07-16 thomas width: 6.5em;
317 8a35f56c 2022-07-16 thomas padding-left: 10px;
318 8a35f56c 2022-07-16 thomas padding-top: 2px;
319 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
320 8a35f56c 2022-07-16 thomas }
321 8a35f56c 2022-07-16 thomas #header_tree {
322 8a35f56c 2022-07-16 thomas float: left;
323 8a35f56c 2022-07-16 thomas width: 72%;
324 8a35f56c 2022-07-16 thomas padding-top: 2px;
325 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
326 8a35f56c 2022-07-16 thomas }
327 8a35f56c 2022-07-16 thomas
328 8a35f56c 2022-07-16 thomas #err_content {
329 8a35f56c 2022-07-16 thomas clear: left;
330 8a35f56c 2022-07-16 thomas float: left;
331 8a35f56c 2022-07-16 thomas width: 100%;
332 8a35f56c 2022-07-16 thomas padding-left: 20px;
333 8a35f56c 2022-07-16 thomas padding-top: 20px;
334 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
335 8a35f56c 2022-07-16 thomas }
336 8a35f56c 2022-07-16 thomas
337 8a35f56c 2022-07-16 thomas #briefs_title_wrapper {
338 8a35f56c 2022-07-16 thomas clear: left;
339 8a35f56c 2022-07-16 thomas float: left;
340 8a35f56c 2022-07-16 thomas width: 100%;
341 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
342 8a35f56c 2022-07-16 thomas color: #ffffff;
343 8a35f56c 2022-07-16 thomas }
344 8a35f56c 2022-07-16 thomas #briefs_title {
345 8a35f56c 2022-07-16 thomas padding-left: 10px;
346 8a35f56c 2022-07-16 thomas padding-top: 5px;
347 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
348 8a35f56c 2022-07-16 thomas }
349 8a35f56c 2022-07-16 thomas #briefs_content {
350 8a35f56c 2022-07-16 thomas clear: left;
351 8a35f56c 2022-07-16 thomas float: left;
352 8a35f56c 2022-07-16 thomas width: 100%;
353 8a35f56c 2022-07-16 thomas }
354 8a35f56c 2022-07-16 thomas #briefs_age {
355 8a35f56c 2022-07-16 thomas padding-left: 10px;
356 8a35f56c 2022-07-16 thomas padding-top: 5px;
357 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
358 8a35f56c 2022-07-16 thomas float: left;
359 8a35f56c 2022-07-16 thomas width: 7.5em;
360 8a35f56c 2022-07-16 thomas overflow: auto;
361 8a35f56c 2022-07-16 thomas }
362 8a35f56c 2022-07-16 thomas #briefs_author {
363 8a35f56c 2022-07-16 thomas float: left;
364 8a35f56c 2022-07-16 thomas padding-top: 5px;
365 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
366 8a35f56c 2022-07-16 thomas width: 8.5em;
367 8a35f56c 2022-07-16 thomas font-style: italic;
368 8a35f56c 2022-07-16 thomas overflow: auto;
369 8a35f56c 2022-07-16 thomas }
370 8a35f56c 2022-07-16 thomas #briefs_log {
371 8a35f56c 2022-07-16 thomas float: left;
372 8a35f56c 2022-07-16 thomas padding-left: 10px;
373 8a35f56c 2022-07-16 thomas padding-right: 10px;
374 8a35f56c 2022-07-16 thomas padding-top: 5px;
375 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
376 8a35f56c 2022-07-16 thomas width: 65%;
377 8a35f56c 2022-07-16 thomas }
378 8a35f56c 2022-07-16 thomas
379 8a35f56c 2022-07-16 thomas #tags_title_wrapper {
380 8a35f56c 2022-07-16 thomas clear: left;
381 8a35f56c 2022-07-16 thomas float: left;
382 8a35f56c 2022-07-16 thomas width: 100%;
383 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
384 8a35f56c 2022-07-16 thomas color: #ffffff;
385 8a35f56c 2022-07-16 thomas }
386 8a35f56c 2022-07-16 thomas #tags_title {
387 8a35f56c 2022-07-16 thomas padding-left: 10px;
388 8a35f56c 2022-07-16 thomas padding-top: 5px;
389 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
390 8a35f56c 2022-07-16 thomas }
391 8a35f56c 2022-07-16 thomas #tags_content {
392 8a35f56c 2022-07-16 thomas clear: left;
393 8a35f56c 2022-07-16 thomas float: left;
394 8a35f56c 2022-07-16 thomas width: 100%;
395 8a35f56c 2022-07-16 thomas }
396 8a35f56c 2022-07-16 thomas #tag_age {
397 8a35f56c 2022-07-16 thomas padding-left: 10px;
398 8a35f56c 2022-07-16 thomas padding-top: 5px;
399 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
400 8a35f56c 2022-07-16 thomas float: left;
401 8a35f56c 2022-07-16 thomas width: 7.5em;
402 8a35f56c 2022-07-16 thomas overflow: auto;
403 8a35f56c 2022-07-16 thomas }
404 8a35f56c 2022-07-16 thomas #tags_log {
405 8a35f56c 2022-07-16 thomas float: left;
406 8a35f56c 2022-07-16 thomas padding-left: 10px;
407 8a35f56c 2022-07-16 thomas padding-right: 10px;
408 8a35f56c 2022-07-16 thomas padding-top: 5px;
409 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
410 8a35f56c 2022-07-16 thomas width: 65%;
411 8a35f56c 2022-07-16 thomas }
412 8a35f56c 2022-07-16 thomas
413 8a35f56c 2022-07-16 thomas #tag_header_wrapper {
414 8a35f56c 2022-07-16 thomas clear: left;
415 8a35f56c 2022-07-16 thomas float: left;
416 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
417 8a35f56c 2022-07-16 thomas width: 100%;
418 8a35f56c 2022-07-16 thomas }
419 8a35f56c 2022-07-16 thomas #tag_header {
420 8a35f56c 2022-07-16 thomas float: left;
421 8a35f56c 2022-07-16 thomas padding-left: 10px;
422 8a35f56c 2022-07-16 thomas padding-top: 5px;
423 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
424 8a35f56c 2022-07-16 thomas width: 80%;
425 8a35f56c 2022-07-16 thomas }
426 8a35f56c 2022-07-16 thomas #tag {
427 8a35f56c 2022-07-16 thomas float: left;
428 8a35f56c 2022-07-16 thomas width: 8.5em;
429 8a35f56c 2022-07-16 thomas font-style: italic;
430 8a35f56c 2022-07-16 thomas padding-top: 5px;
431 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
432 8a35f56c 2022-07-16 thomas }
433 8a35f56c 2022-07-16 thomas #tag_commit {
434 8a35f56c 2022-07-16 thomas clear: left;
435 8a35f56c 2022-07-16 thomas float: left;
436 8a35f56c 2022-07-16 thomas padding-left: 20px;
437 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
438 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
439 8a35f56c 2022-07-16 thomas }
440 8a35f56c 2022-07-16 thomas
441 8a35f56c 2022-07-16 thomas #index_header {
442 8a35f56c 2022-07-16 thomas clear: left;
443 8a35f56c 2022-07-16 thomas float: left;
444 8a35f56c 2022-07-16 thomas overflow: auto;
445 8a35f56c 2022-07-16 thomas width: 100%;
446 8a35f56c 2022-07-16 thomas background-color: Khaki;
447 8a35f56c 2022-07-16 thomas }
448 8a35f56c 2022-07-16 thomas #index_header_project {
449 8a35f56c 2022-07-16 thomas clear: left;
450 8a35f56c 2022-07-16 thomas float: left;
451 8a35f56c 2022-07-16 thomas width: 20%;
452 8a35f56c 2022-07-16 thomas padding: 10px;
453 8a35f56c 2022-07-16 thomas }
454 8a35f56c 2022-07-16 thomas #index_header_description {
455 8a35f56c 2022-07-16 thomas float: left;
456 8a35f56c 2022-07-16 thomas width: 30%;
457 8a35f56c 2022-07-16 thomas padding: 10px;
458 8a35f56c 2022-07-16 thomas }
459 8a35f56c 2022-07-16 thomas #index_header_owner {
460 8a35f56c 2022-07-16 thomas float: left;
461 8a35f56c 2022-07-16 thomas width: 12%;
462 8a35f56c 2022-07-16 thomas padding: 10px;
463 8a35f56c 2022-07-16 thomas }
464 8a35f56c 2022-07-16 thomas #index_header_age {
465 8a35f56c 2022-07-16 thomas padding: 10px;
466 8a35f56c 2022-07-16 thomas overflow: hidden;
467 8a35f56c 2022-07-16 thomas }
468 8a35f56c 2022-07-16 thomas #index_wrapper {
469 8a35f56c 2022-07-16 thomas clear: left;
470 8a35f56c 2022-07-16 thomas float: left;
471 8a35f56c 2022-07-16 thomas width: 100%;
472 8a35f56c 2022-07-16 thomas }
473 8a35f56c 2022-07-16 thomas #index_project {
474 8a35f56c 2022-07-16 thomas float: left;
475 8a35f56c 2022-07-16 thomas width: 20%;
476 8a35f56c 2022-07-16 thomas padding: 10px;
477 8a35f56c 2022-07-16 thomas overflow: hidden;
478 8a35f56c 2022-07-16 thomas }
479 8a35f56c 2022-07-16 thomas #index_project_description {
480 8a35f56c 2022-07-16 thomas float: left;
481 8a35f56c 2022-07-16 thomas width: 30%;
482 8a35f56c 2022-07-16 thomas padding: 10px;
483 8a35f56c 2022-07-16 thomas overflow: auto;
484 8a35f56c 2022-07-16 thomas }
485 8a35f56c 2022-07-16 thomas #index_project_owner {
486 8a35f56c 2022-07-16 thomas float: left;
487 8a35f56c 2022-07-16 thomas width: 12%;
488 8a35f56c 2022-07-16 thomas padding: 10px;
489 8a35f56c 2022-07-16 thomas overflow: hidden;
490 8a35f56c 2022-07-16 thomas }
491 8a35f56c 2022-07-16 thomas #index_project_age {
492 8a35f56c 2022-07-16 thomas float: left;
493 8a35f56c 2022-07-16 thomas width: 14%;
494 8a35f56c 2022-07-16 thomas padding: 10px;
495 8a35f56c 2022-07-16 thomas overflow: visible;
496 8a35f56c 2022-07-16 thomas }
497 8a35f56c 2022-07-16 thomas #index_project a {
498 8a35f56c 2022-07-16 thomas color: #444444;
499 8a35f56c 2022-07-16 thomas text-decoration: none;
500 8a35f56c 2022-07-16 thomas }
501 8a35f56c 2022-07-16 thomas #index_project a:hover {
502 8a35f56c 2022-07-16 thomas color: SteelBlue;
503 8a35f56c 2022-07-16 thomas text-decoration: none;
504 8a35f56c 2022-07-16 thomas }
505 8a35f56c 2022-07-16 thomas #index_project_navs a {
506 8a35f56c 2022-07-16 thomas color: #444444;
507 8a35f56c 2022-07-16 thomas text-decoration: none;
508 8a35f56c 2022-07-16 thomas }
509 8a35f56c 2022-07-16 thomas #index_project_navs a:hover {
510 8a35f56c 2022-07-16 thomas color: SteelBlue;
511 8a35f56c 2022-07-16 thomas text-decoration: none;
512 8a35f56c 2022-07-16 thomas }
513 8a35f56c 2022-07-16 thomas #index_next a {
514 8a35f56c 2022-07-16 thomas color: #444444;
515 8a35f56c 2022-07-16 thomas text-decoration: none;
516 8a35f56c 2022-07-16 thomas }
517 8a35f56c 2022-07-16 thomas #index_next a:hover {
518 8a35f56c 2022-07-16 thomas color: SteelBlue;
519 8a35f56c 2022-07-16 thomas text-decoration: none;
520 8a35f56c 2022-07-16 thomas }
521 8a35f56c 2022-07-16 thomas #index_prev a {
522 8a35f56c 2022-07-16 thomas color: #444444;
523 8a35f56c 2022-07-16 thomas text-decoration: none;
524 8a35f56c 2022-07-16 thomas }
525 8a35f56c 2022-07-16 thomas #index_prev a:hover {
526 8a35f56c 2022-07-16 thomas color: SteelBlue;
527 8a35f56c 2022-07-16 thomas text-decoration: none;
528 8a35f56c 2022-07-16 thomas }
529 8a35f56c 2022-07-16 thomas
530 8a35f56c 2022-07-16 thomas #commits_title_wrapper {
531 8a35f56c 2022-07-16 thomas clear: left;
532 8a35f56c 2022-07-16 thomas float: left;
533 8a35f56c 2022-07-16 thomas width: 100%;
534 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
535 8a35f56c 2022-07-16 thomas color: #ffffff;
536 8a35f56c 2022-07-16 thomas }
537 8a35f56c 2022-07-16 thomas #commits_title {
538 8a35f56c 2022-07-16 thomas padding-left: 10px;
539 8a35f56c 2022-07-16 thomas padding-top: 5px;
540 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
541 8a35f56c 2022-07-16 thomas }
542 8a35f56c 2022-07-16 thomas #commits_content {
543 8a35f56c 2022-07-16 thomas clear: left;
544 8a35f56c 2022-07-16 thomas float: left;
545 8a35f56c 2022-07-16 thomas width: 100%;
546 8a35f56c 2022-07-16 thomas }
547 8a35f56c 2022-07-16 thomas #commits_header_wrapper {
548 8a35f56c 2022-07-16 thomas float: left;
549 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
550 8a35f56c 2022-07-16 thomas width: 100%;
551 8a35f56c 2022-07-16 thomas }
552 8a35f56c 2022-07-16 thomas #commits_header {
553 8a35f56c 2022-07-16 thomas float: left;
554 8a35f56c 2022-07-16 thomas padding-top: 5px;
555 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
556 8a35f56c 2022-07-16 thomas width: 80%;
557 8a35f56c 2022-07-16 thomas }
558 8a35f56c 2022-07-16 thomas #commit {
559 8a35f56c 2022-07-16 thomas clear: left;
560 8a35f56c 2022-07-16 thomas float: left;
561 8a35f56c 2022-07-16 thomas padding-left: 20px;
562 8a35f56c 2022-07-16 thomas padding-bottom: 20px;
563 8a35f56c 2022-07-16 thomas white-space: pre-wrap;
564 8a35f56c 2022-07-16 thomas }
565 8a35f56c 2022-07-16 thomas #commits_line {
566 8a35f56c 2022-07-16 thomas clear: left;
567 8a35f56c 2022-07-16 thomas float: left;
568 8a35f56c 2022-07-16 thomas }
569 8a35f56c 2022-07-16 thomas
570 8a35f56c 2022-07-16 thomas #blame_title_wrapper {
571 8a35f56c 2022-07-16 thomas clear: left;
572 8a35f56c 2022-07-16 thomas float: left;
573 8a35f56c 2022-07-16 thomas width: 100%;
574 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
575 8a35f56c 2022-07-16 thomas color: #ffffff;
576 8a35f56c 2022-07-16 thomas }
577 8a35f56c 2022-07-16 thomas #blame_title {
578 8a35f56c 2022-07-16 thomas padding-left: 10px;
579 8a35f56c 2022-07-16 thomas padding-top: 5px;
580 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
581 8a35f56c 2022-07-16 thomas }
582 8a35f56c 2022-07-16 thomas #blame_content {
583 8a35f56c 2022-07-16 thomas clear: left;
584 8a35f56c 2022-07-16 thomas float: left;
585 8a35f56c 2022-07-16 thomas width: 100%;
586 8a35f56c 2022-07-16 thomas }
587 8a35f56c 2022-07-16 thomas #blame_header_wrapper {
588 8a35f56c 2022-07-16 thomas float: left;
589 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
590 8a35f56c 2022-07-16 thomas width: 100%;
591 8a35f56c 2022-07-16 thomas }
592 8a35f56c 2022-07-16 thomas #blame_header {
593 8a35f56c 2022-07-16 thomas float: left;
594 8a35f56c 2022-07-16 thomas padding-left: 10px;
595 8a35f56c 2022-07-16 thomas padding-top: 5px;
596 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
597 8a35f56c 2022-07-16 thomas width: 80%;
598 8a35f56c 2022-07-16 thomas }
599 8a35f56c 2022-07-16 thomas #blame {
600 8a35f56c 2022-07-16 thomas clear: left;
601 8a35f56c 2022-07-16 thomas float: left;
602 8a35f56c 2022-07-16 thomas margin-left: 20px;
603 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
604 8a35f56c 2022-07-16 thomas font-family: monospace;
605 8a35f56c 2022-07-16 thomas white-space: pre;
606 8a35f56c 2022-07-16 thomas overflow: auto;
607 8a35f56c 2022-07-16 thomas }
608 8a35f56c 2022-07-16 thomas #blame_wrapper {
609 8a35f56c 2022-07-16 thomas clear: left;
610 8a35f56c 2022-07-16 thomas float: left;
611 8a35f56c 2022-07-16 thomas width: 100%;
612 8a35f56c 2022-07-16 thomas }
613 8a35f56c 2022-07-16 thomas #blame_number {
614 8a35f56c 2022-07-16 thomas float: left;
615 8a35f56c 2022-07-16 thomas width: 6em;
616 8a35f56c 2022-07-16 thomas overflow: hidden;
617 8a35f56c 2022-07-16 thomas }
618 8a35f56c 2022-07-16 thomas #blame_hash {
619 8a35f56c 2022-07-16 thomas float: left;
620 8a35f56c 2022-07-16 thomas width: 6em;
621 8a35f56c 2022-07-16 thomas overflow: auto;
622 8a35f56c 2022-07-16 thomas }
623 8a35f56c 2022-07-16 thomas #blame_date {
624 8a35f56c 2022-07-16 thomas float: left;
625 8a35f56c 2022-07-16 thomas width: 7em;
626 8a35f56c 2022-07-16 thomas overflow: auto;
627 8a35f56c 2022-07-16 thomas }
628 8a35f56c 2022-07-16 thomas #blame_author {
629 8a35f56c 2022-07-16 thomas float: left;
630 8a35f56c 2022-07-16 thomas width: 6em;
631 8a35f56c 2022-07-16 thomas overflow: hidden;
632 8a35f56c 2022-07-16 thomas }
633 8a35f56c 2022-07-16 thomas #blame_code {
634 8a35f56c 2022-07-16 thomas float:left;
635 8a35f56c 2022-07-16 thomas width: 50%;
636 8a35f56c 2022-07-16 thomas overflow: visible;
637 8a35f56c 2022-07-16 thomas }
638 8a35f56c 2022-07-16 thomas
639 8a35f56c 2022-07-16 thomas #tree_title_wrapper {
640 8a35f56c 2022-07-16 thomas clear: left;
641 8a35f56c 2022-07-16 thomas float: left;
642 8a35f56c 2022-07-16 thomas width: 100%;
643 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
644 8a35f56c 2022-07-16 thomas color: #ffffff;
645 8a35f56c 2022-07-16 thomas }
646 8a35f56c 2022-07-16 thomas #tree_title {
647 8a35f56c 2022-07-16 thomas padding-left: 10px;
648 8a35f56c 2022-07-16 thomas padding-top: 5px;
649 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
650 8a35f56c 2022-07-16 thomas }
651 8a35f56c 2022-07-16 thomas #tree_content {
652 8a35f56c 2022-07-16 thomas clear: left;
653 8a35f56c 2022-07-16 thomas float: left;
654 8a35f56c 2022-07-16 thomas width: 100%;
655 8a35f56c 2022-07-16 thomas }
656 8a35f56c 2022-07-16 thomas #tree_header_wrapper {
657 8a35f56c 2022-07-16 thomas clear: left;
658 8a35f56c 2022-07-16 thomas float: left;
659 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
660 8a35f56c 2022-07-16 thomas width: 100%;
661 8a35f56c 2022-07-16 thomas }
662 8a35f56c 2022-07-16 thomas #tree_header {
663 8a35f56c 2022-07-16 thomas float: left;
664 8a35f56c 2022-07-16 thomas padding-left: 10px;
665 8a35f56c 2022-07-16 thomas padding-top: 5px;
666 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
667 8a35f56c 2022-07-16 thomas width: 80%;
668 8a35f56c 2022-07-16 thomas }
669 8a35f56c 2022-07-16 thomas #tree {
670 8a35f56c 2022-07-16 thomas clear: left;
671 8a35f56c 2022-07-16 thomas float: left;
672 8a35f56c 2022-07-16 thomas margin-left: 20px;
673 8a35f56c 2022-07-16 thomas margin-top: 20px;
674 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
675 8a35f56c 2022-07-16 thomas font-family: monospace;
676 8a35f56c 2022-07-16 thomas }
677 8a35f56c 2022-07-16 thomas #tree_wrapper {
678 8a35f56c 2022-07-16 thomas clear: left;
679 8a35f56c 2022-07-16 thomas float: left;
680 8a35f56c 2022-07-16 thomas width: 100%;
681 8a35f56c 2022-07-16 thomas }
682 8a35f56c 2022-07-16 thomas #tree_line {
683 8a35f56c 2022-07-16 thomas clear: left;
684 8a35f56c 2022-07-16 thomas float: left;
685 8a35f56c 2022-07-16 thomas width: 20em;
686 8a35f56c 2022-07-16 thomas padding: 1px;
687 8a35f56c 2022-07-16 thomas }
688 8a35f56c 2022-07-16 thomas #tree_line_blank {
689 8a35f56c 2022-07-16 thomas float: left;
690 8a35f56c 2022-07-16 thomas padding: 1px;
691 8a35f56c 2022-07-16 thomas width: 9.5em;
692 8a35f56c 2022-07-16 thomas }
693 8a35f56c 2022-07-16 thomas #tree_line_navs {
694 8a35f56c 2022-07-16 thomas float: left;
695 8a35f56c 2022-07-16 thomas text-align: right;
696 8a35f56c 2022-07-16 thomas padding: 1px;
697 8a35f56c 2022-07-16 thomas }
698 8a35f56c 2022-07-16 thomas
699 8a35f56c 2022-07-16 thomas #diff_title_wrapper {
700 8a35f56c 2022-07-16 thomas clear: left;
701 8a35f56c 2022-07-16 thomas float: left;
702 8a35f56c 2022-07-16 thomas width: 100%;
703 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
704 8a35f56c 2022-07-16 thomas color: #ffffff;
705 8a35f56c 2022-07-16 thomas }
706 8a35f56c 2022-07-16 thomas #diff_title {
707 8a35f56c 2022-07-16 thomas padding-left: 10px;
708 8a35f56c 2022-07-16 thomas padding-top: 5px;
709 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
710 8a35f56c 2022-07-16 thomas }
711 8a35f56c 2022-07-16 thomas #diff_content {
712 8a35f56c 2022-07-16 thomas clear: left;
713 8a35f56c 2022-07-16 thomas float: left;
714 8a35f56c 2022-07-16 thomas width: 100%;
715 8a35f56c 2022-07-16 thomas }
716 8a35f56c 2022-07-16 thomas #diff_header_wrapper {
717 8a35f56c 2022-07-16 thomas float: left;
718 8a35f56c 2022-07-16 thomas background-color: #f5fcfb;
719 8a35f56c 2022-07-16 thomas width: 100%;
720 8a35f56c 2022-07-16 thomas }
721 8a35f56c 2022-07-16 thomas #diff_header {
722 8a35f56c 2022-07-16 thomas float: left;
723 8a35f56c 2022-07-16 thomas padding-left: 10px;
724 8a35f56c 2022-07-16 thomas padding-top: 5px;
725 8a35f56c 2022-07-16 thomas padding-bottom: 2px;
726 8a35f56c 2022-07-16 thomas width: 80%;
727 8a35f56c 2022-07-16 thomas }
728 8a35f56c 2022-07-16 thomas #diff {
729 8a35f56c 2022-07-16 thomas clear: left;
730 8a35f56c 2022-07-16 thomas float: left;
731 8a35f56c 2022-07-16 thomas margin-left: 20px;
732 8a35f56c 2022-07-16 thomas margin-bottom: 20px;
733 8a35f56c 2022-07-16 thomas font-family: monospace;
734 8a35f56c 2022-07-16 thomas white-space: pre;
735 8a35f56c 2022-07-16 thomas }
736 8a35f56c 2022-07-16 thomas #diff_line {
737 8a35f56c 2022-07-16 thomas clear: left;
738 8a35f56c 2022-07-16 thomas float: left;
739 8a35f56c 2022-07-16 thomas }
740 8a35f56c 2022-07-16 thomas
741 8a35f56c 2022-07-16 thomas #summary_wrapper {
742 8a35f56c 2022-07-16 thomas clear: left;
743 8a35f56c 2022-07-16 thomas float: left;
744 8a35f56c 2022-07-16 thomas width: 100%;
745 8a35f56c 2022-07-16 thomas background-color: Khaki;
746 8a35f56c 2022-07-16 thomas }
747 8a35f56c 2022-07-16 thomas
748 8a35f56c 2022-07-16 thomas #branches_title_wrapper {
749 8a35f56c 2022-07-16 thomas clear: left;
750 8a35f56c 2022-07-16 thomas float: left;
751 8a35f56c 2022-07-16 thomas width: 100%;
752 8a35f56c 2022-07-16 thomas background-color: LightSlateGray;
753 8a35f56c 2022-07-16 thomas color: #ffffff;
754 8a35f56c 2022-07-16 thomas }
755 8a35f56c 2022-07-16 thomas #branches_title {
756 8a35f56c 2022-07-16 thomas padding-left: 10px;
757 8a35f56c 2022-07-16 thomas padding-top: 5px;
758 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
759 8a35f56c 2022-07-16 thomas }
760 8a35f56c 2022-07-16 thomas #branches_content {
761 8a35f56c 2022-07-16 thomas clear: left;
762 8a35f56c 2022-07-16 thomas float: left;
763 8a35f56c 2022-07-16 thomas width: 100%;
764 8a35f56c 2022-07-16 thomas }
765 8a35f56c 2022-07-16 thomas
766 8a35f56c 2022-07-16 thomas #branches_wrapper {
767 8a35f56c 2022-07-16 thomas clear: left;
768 8a35f56c 2022-07-16 thomas float: left;
769 8a35f56c 2022-07-16 thomas width: 100%;
770 8a35f56c 2022-07-16 thomas }
771 8a35f56c 2022-07-16 thomas #branches_age {
772 8a35f56c 2022-07-16 thomas padding-left: 10px;
773 8a35f56c 2022-07-16 thomas padding-top: 5px;
774 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
775 8a35f56c 2022-07-16 thomas float: left;
776 8a35f56c 2022-07-16 thomas width: 7.5em;
777 8a35f56c 2022-07-16 thomas overflow: auto;
778 8a35f56c 2022-07-16 thomas }
779 8a35f56c 2022-07-16 thomas #branches_space {
780 8a35f56c 2022-07-16 thomas padding-left: 10px;
781 8a35f56c 2022-07-16 thomas padding-top: 5px;
782 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
783 8a35f56c 2022-07-16 thomas float: left;
784 8a35f56c 2022-07-16 thomas width: 8.5em;
785 8a35f56c 2022-07-16 thomas overflow: auto;
786 8a35f56c 2022-07-16 thomas }
787 8a35f56c 2022-07-16 thomas #branch {
788 8a35f56c 2022-07-16 thomas float: left;
789 8a35f56c 2022-07-16 thomas padding-right: 10px;
790 8a35f56c 2022-07-16 thomas padding-top: 5px;
791 8a35f56c 2022-07-16 thomas padding-bottom: 5px;
792 8a35f56c 2022-07-16 thomas }