bs3grid.less
... ...
@@ -0,0 +1,574 @@
1
+//== Media queries breakpoints
2
+//
3
+//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
4
+
5
+// Extra small screen / phone
6
+// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
7
+@screen-xs: 480px;
8
+@screen-xs-min: @screen-xs;
9
+@screen-phone: @screen-xs-min;
10
+
11
+// Small screen / tablet
12
+// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
13
+@screen-sm: 780px;
14
+// @screen-sm: 768px;
15
+@screen-sm-min: @screen-sm;
16
+@screen-tablet: @screen-sm-min;
17
+
18
+// Medium screen / desktop
19
+// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
20
+@screen-md: 992px;
21
+@screen-md-min: @screen-md;
22
+@screen-desktop: @screen-md-min;
23
+
24
+// Large screen / wide desktop
25
+// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
26
+@screen-lg: 1220px;
27
+@screen-lg-min: @screen-lg;
28
+@screen-lg-desktop: @screen-lg-min;
29
+
30
+// So media queries don't overlap when required, provide a maximum
31
+@screen-xs-max: (@screen-sm-min - 1);
32
+@screen-sm-max: (@screen-md-min - 1);
33
+@screen-md-max: (@screen-lg-min - 1);
34
+
35
+
36
+//== Grid system
37
+//
38
+//## Define your custom responsive grid.
39
+
40
+//** Number of columns in the grid.
41
+@grid-columns: 24;
42
+//** Padding between columns. Gets divided in half for the left and right.
43
+@grid-gutter-width: 20px;
44
+// Navbar collapse
45
+//** Point at which the navbar becomes uncollapsed.
46
+@grid-float-breakpoint: @screen-sm-min;
47
+//** Point at which the navbar begins collapsing.
48
+@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
49
+
50
+
51
+//== Container sizes
52
+//
53
+//## Define the maximum width of `.container` for different screen sizes.
54
+
55
+// Small screen / tablet
56
+@container-tablet: ((740px + @grid-gutter-width));
57
+//** For `@screen-sm-min` and up.
58
+@container-sm: @container-tablet;
59
+
60
+// Medium screen / desktop
61
+@container-desktop: ((940px + @grid-gutter-width));
62
+//** For `@screen-md-min` and up.
63
+@container-md: @container-desktop;
64
+
65
+// Large screen / wide desktop
66
+@container-large-desktop: ((1180px + @grid-gutter-width));
67
+//** For `@screen-lg-min` and up.
68
+@container-lg: @container-large-desktop;
69
+
70
+// Utilities
71
+// -------------------------
72
+
73
+// Clearfix
74
+// Source: http://nicolasgallagher.com/micro-clearfix-hack/
75
+//
76
+// For modern browsers
77
+// 1. The space content is one way to avoid an Opera bug when the
78
+// contenteditable attribute is included anywhere else in the document.
79
+// Otherwise it causes space to appear at the top and bottom of elements
80
+// that are clearfixed.
81
+// 2. The use of `table` rather than `block` is only necessary if using
82
+// `:before` to contain the top-margins of child elements.
83
+.clearfix() {
84
+ &:before,
85
+ &:after {
86
+ content: " "; // 1
87
+ display: table; // 2
88
+ }
89
+ &:after {
90
+ clear: both;
91
+ }
92
+}
93
+
94
+// Box sizing
95
+.box-sizing(@boxmodel) {
96
+ -webkit-box-sizing: @boxmodel;
97
+ -moz-box-sizing: @boxmodel;
98
+ box-sizing: @boxmodel;
99
+}
100
+
101
+// Reset the box-sizing
102
+//
103
+// Heads up! This reset may cause conflicts with some third-party widgets.
104
+// For recommendations on resolving such conflicts, see
105
+// http://getbootstrap.com/getting-started/#third-box-sizing
106
+// * {
107
+// .box-sizing(border-box);
108
+// }
109
+// *:before,
110
+// *:after {
111
+// .box-sizing(border-box);
112
+// }
113
+
114
+// Grid System
115
+// -----------
116
+
117
+// Centered container element
118
+.container-fixed() {
119
+ margin-right: auto;
120
+ margin-left: auto;
121
+ padding-left: (@grid-gutter-width / 2);
122
+ padding-right: (@grid-gutter-width / 2);
123
+ .clearfix;
124
+ // &:extend(.clearfix all);
125
+}
126
+
127
+// Creates a wrapper for a series of columns
128
+.make-row(@gutter: @grid-gutter-width) {
129
+ margin-left: (@gutter / -2);
130
+ margin-right: (@gutter / -2);
131
+ .clearfix;
132
+ // &:extend(.clearfix all);
133
+}
134
+
135
+// Generate the extra small columns
136
+.make-xs-column(@columns; @gutter: @grid-gutter-width) {
137
+ position: relative;
138
+ float: left;
139
+ width: percentage((@columns / @grid-columns));
140
+ min-height: 1px;
141
+ padding-left: (@gutter / 2);
142
+ padding-right: (@gutter / 2);
143
+}
144
+.make-xs-column-offset(@columns) {
145
+ @media (min-width: @screen-xs-min) {
146
+ margin-left: percentage((@columns / @grid-columns));
147
+ }
148
+}
149
+.make-xs-column-push(@columns) {
150
+ @media (min-width: @screen-xs-min) {
151
+ left: percentage((@columns / @grid-columns));
152
+ }
153
+}
154
+.make-xs-column-pull(@columns) {
155
+ @media (min-width: @screen-xs-min) {
156
+ right: percentage((@columns / @grid-columns));
157
+ }
158
+}
159
+
160
+
161
+// Generate the small columns
162
+.make-sm-column(@columns; @gutter: @grid-gutter-width) {
163
+ position: relative;
164
+ min-height: 1px;
165
+ padding-left: (@gutter / 2);
166
+ padding-right: (@gutter / 2);
167
+
168
+ @media (min-width: @screen-sm-min) {
169
+ float: left;
170
+ width: percentage((@columns / @grid-columns));
171
+ }
172
+}
173
+.make-sm-column-offset(@columns) {
174
+ @media (min-width: @screen-sm-min) {
175
+ margin-left: percentage((@columns / @grid-columns));
176
+ }
177
+}
178
+.make-sm-column-push(@columns) {
179
+ @media (min-width: @screen-sm-min) {
180
+ left: percentage((@columns / @grid-columns));
181
+ }
182
+}
183
+.make-sm-column-pull(@columns) {
184
+ @media (min-width: @screen-sm-min) {
185
+ right: percentage((@columns / @grid-columns));
186
+ }
187
+}
188
+
189
+
190
+// Generate the medium columns
191
+.make-md-column(@columns; @gutter: @grid-gutter-width) {
192
+ position: relative;
193
+ min-height: 1px;
194
+ padding-left: (@gutter / 2);
195
+ padding-right: (@gutter / 2);
196
+
197
+ @media (min-width: @screen-md-min) {
198
+ float: left;
199
+ width: percentage((@columns / @grid-columns));
200
+ }
201
+}
202
+.make-md-column-offset(@columns) {
203
+ @media (min-width: @screen-md-min) {
204
+ margin-left: percentage((@columns / @grid-columns));
205
+ }
206
+}
207
+.make-md-column-push(@columns) {
208
+ @media (min-width: @screen-md-min) {
209
+ left: percentage((@columns / @grid-columns));
210
+ }
211
+}
212
+.make-md-column-pull(@columns) {
213
+ @media (min-width: @screen-md-min) {
214
+ right: percentage((@columns / @grid-columns));
215
+ }
216
+}
217
+
218
+
219
+// Generate the large columns
220
+.make-lg-column(@columns; @gutter: @grid-gutter-width) {
221
+ position: relative;
222
+ min-height: 1px;
223
+ padding-left: (@gutter / 2);
224
+ padding-right: (@gutter / 2);
225
+
226
+ @media (min-width: @screen-lg-min) {
227
+ float: left;
228
+ width: percentage((@columns / @grid-columns));
229
+ }
230
+}
231
+.make-lg-column-offset(@columns) {
232
+ @media (min-width: @screen-lg-min) {
233
+ margin-left: percentage((@columns / @grid-columns));
234
+ }
235
+}
236
+.make-lg-column-push(@columns) {
237
+ @media (min-width: @screen-lg-min) {
238
+ left: percentage((@columns / @grid-columns));
239
+ }
240
+}
241
+.make-lg-column-pull(@columns) {
242
+ @media (min-width: @screen-lg-min) {
243
+ right: percentage((@columns / @grid-columns));
244
+ }
245
+}
246
+
247
+// Framework grid generation
248
+//
249
+// Used only by Bootstrap to generate the correct number of grid classes given
250
+// any value of `@grid-columns`.
251
+
252
+.make-grid-columns() {
253
+ // Common styles for all sizes of grid columns, widths 1-12
254
+ .col(@index) when (@index = 1) { // initial
255
+ @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
256
+ .col((@index + 1), @item);
257
+ }
258
+ .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
259
+ @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
260
+ .col((@index + 1), ~"@{list}, @{item}");
261
+ }
262
+ .col(@index, @list) when (@index > @grid-columns) { // terminal
263
+ @{list} {
264
+ position: relative;
265
+ // Prevent columns from collapsing when empty
266
+ min-height: 1px;
267
+ // Inner gutter via padding
268
+ padding-left: (@grid-gutter-width / 2);
269
+ padding-right: (@grid-gutter-width / 2);
270
+ }
271
+ }
272
+ .col(1); // kickstart it
273
+}
274
+
275
+.float-grid-columns(@class) {
276
+ .col(@index) when (@index = 1) { // initial
277
+ @item: ~".col-@{class}-@{index}";
278
+ .col((@index + 1), @item);
279
+ }
280
+ .col(@index, @list) when (@index =< @grid-columns) { // general
281
+ @item: ~".col-@{class}-@{index}";
282
+ .col((@index + 1), ~"@{list}, @{item}");
283
+ }
284
+ .col(@index, @list) when (@index > @grid-columns) { // terminal
285
+ @{list} {
286
+ float: left;
287
+ }
288
+ }
289
+ .col(1); // kickstart it
290
+}
291
+
292
+.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
293
+ .col-@{class}-@{index} {
294
+ width: percentage((@index / @grid-columns));
295
+ }
296
+}
297
+.calc-grid-column(@index, @class, @type) when (@type = push) {
298
+ .col-@{class}-push-@{index} {
299
+ left: percentage((@index / @grid-columns));
300
+ }
301
+}
302
+.calc-grid-column(@index, @class, @type) when (@type = pull) {
303
+ .col-@{class}-pull-@{index} {
304
+ right: percentage((@index / @grid-columns));
305
+ }
306
+}
307
+.calc-grid-column(@index, @class, @type) when (@type = offset) {
308
+ .col-@{class}-offset-@{index} {
309
+ margin-left: percentage((@index / @grid-columns));
310
+ }
311
+}
312
+
313
+// Basic looping in LESS
314
+.loop-grid-columns(@index, @class, @type) when (@index >= 0) {
315
+ .calc-grid-column(@index, @class, @type);
316
+ // next iteration
317
+ .loop-grid-columns((@index - 1), @class, @type);
318
+}
319
+
320
+// Create grid for specific class
321
+.make-grid(@class) {
322
+ .float-grid-columns(@class);
323
+ .loop-grid-columns(@grid-columns, @class, width);
324
+ .loop-grid-columns(@grid-columns, @class, pull);
325
+ .loop-grid-columns(@grid-columns, @class, push);
326
+ .loop-grid-columns(@grid-columns, @class, offset);
327
+}
328
+
329
+
330
+//
331
+// Grid system
332
+// --------------------------------------------------
333
+
334
+
335
+// Container widths
336
+//
337
+// Set the container width, and override it for fixed navbars in media queries.
338
+
339
+.container {
340
+ .container-fixed();
341
+
342
+ @media (min-width: @screen-sm-min) {
343
+ width: @container-sm;
344
+ }
345
+ @media (min-width: @screen-md-min) {
346
+ width: @container-md;
347
+ }
348
+ @media (min-width: @screen-lg-min) {
349
+ width: @container-lg;
350
+ }
351
+}
352
+
353
+
354
+// Fluid container
355
+//
356
+// Utilizes the mixin meant for fixed width containers, but without any defined
357
+// width for fluid, full width layouts.
358
+
359
+.container-fluid {
360
+ .container-fixed();
361
+}
362
+
363
+
364
+// Row
365
+//
366
+// Rows contain and clear the floats of your columns.
367
+
368
+.row {
369
+ .make-row();
370
+}
371
+
372
+
373
+// Columns
374
+//
375
+// Common styles for small and large grid columns
376
+
377
+.make-grid-columns();
378
+
379
+
380
+// Extra small grid
381
+//
382
+// Columns, offsets, pushes, and pulls for extra small devices like
383
+// smartphones.
384
+
385
+.make-grid(xs);
386
+
387
+
388
+// Small grid
389
+//
390
+// Columns, offsets, pushes, and pulls for the small device range, from phones
391
+// to tablets.
392
+
393
+@media (min-width: @screen-sm-min) {
394
+ .make-grid(sm);
395
+}
396
+
397
+
398
+// Medium grid
399
+//
400
+// Columns, offsets, pushes, and pulls for the desktop device range.
401
+
402
+@media (min-width: @screen-md-min) {
403
+ .make-grid(md);
404
+}
405
+
406
+
407
+// Large grid
408
+//
409
+// Columns, offsets, pushes, and pulls for the large desktop device range.
410
+
411
+@media (min-width: @screen-lg-min) {
412
+ .make-grid(lg);
413
+}
414
+
415
+// Responsive utilities
416
+// -------------------------
417
+// More easily include all the states for responsive-utilities.less.
418
+// .responsive-visibility() {
419
+// display: block !important;
420
+// table& { display: table; }
421
+// tr& { display: table-row !important; }
422
+// th&,
423
+// td& { display: table-cell !important; }
424
+// }
425
+
426
+// .responsive-invisibility() {
427
+// display: none !important;
428
+// }
429
+
430
+//
431
+// Utility classes
432
+// --------------------------------------------------
433
+
434
+// Center-align a block level element
435
+// .center-block() {
436
+// display: block;
437
+// margin-left: auto;
438
+// margin-right: auto;
439
+// }
440
+
441
+// Floats
442
+// -------------------------
443
+
444
+.clearfix {
445
+ .clearfix();
446
+}
447
+// .center-block {
448
+// .center-block();
449
+// }
450
+.pull-right {
451
+ float: right !important;
452
+}
453
+.pull-left {
454
+ float: left !important;
455
+}
456
+
457
+
458
+// Toggling content
459
+// -------------------------
460
+
461
+// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
462
+// .hide {
463
+// display: none !important;
464
+// }
465
+// .show {
466
+// display: block !important;
467
+// }
468
+// .invisible {
469
+// visibility: hidden;
470
+// }
471
+
472
+
473
+
474
+// Hide from screenreaders and browsers
475
+//
476
+// Credit: HTML5 Boilerplate
477
+
478
+// .hidden {
479
+// display: none !important;
480
+// visibility: hidden !important;
481
+// }
482
+
483
+//
484
+// Responsive: Utility classes
485
+// --------------------------------------------------
486
+
487
+
488
+// IE10 in Windows (Phone) 8
489
+//
490
+// Support for responsive views via media queries is kind of borked in IE10, for
491
+// Surface/desktop in split view and for Windows Phone 8. This particular fix
492
+// must be accompanied by a snippet of JavaScript to sniff the user agent and
493
+// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at
494
+// our Getting Started page for more information on this bug.
495
+//
496
+// For more information, see the following:
497
+//
498
+// Issue: https://github.com/twbs/bootstrap/issues/10497
499
+// Docs: http://getbootstrap.com/getting-started/#browsers
500
+// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
501
+
502
+// @-ms-viewport {
503
+// width: device-width;
504
+// }
505
+
506
+
507
+// // Visibility utilities
508
+// .visible-xs,
509
+// .visible-sm,
510
+// .visible-md,
511
+// .visible-lg {
512
+// .responsive-invisibility();
513
+// }
514
+
515
+// .visible-xs {
516
+// @media (max-width: @screen-xs-max) {
517
+// .responsive-visibility();
518
+// }
519
+// }
520
+// .visible-sm {
521
+// @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
522
+// .responsive-visibility();
523
+// }
524
+// }
525
+// .visible-md {
526
+// @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
527
+// .responsive-visibility();
528
+// }
529
+// }
530
+// .visible-lg {
531
+// @media (min-width: @screen-lg-min) {
532
+// .responsive-visibility();
533
+// }
534
+// }
535
+
536
+// .hidden-xs {
537
+// @media (max-width: @screen-xs-max) {
538
+// .responsive-invisibility();
539
+// }
540
+// }
541
+// .hidden-sm {
542
+// @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
543
+// .responsive-invisibility();
544
+// }
545
+// }
546
+// .hidden-md {
547
+// @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
548
+// .responsive-invisibility();
549
+// }
550
+// }
551
+// .hidden-lg {
552
+// @media (min-width: @screen-lg-min) {
553
+// .responsive-invisibility();
554
+// }
555
+// }
556
+
557
+
558
+// // Print utilities
559
+// //
560
+// // Media queries are placed on the inside to be mixin-friendly.
561
+
562
+// .visible-print {
563
+// .responsive-invisibility();
564
+
565
+// @media print {
566
+// .responsive-visibility();
567
+// }
568
+// }
569
+
570
+// .hidden-print {
571
+// @media print {
572
+// .responsive-invisibility();
573
+// }
574
+// }
custom.css
... ...
@@ -0,0 +1 @@
1
+.container{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (min-width:780px){.container{width:760px}}@media (min-width:992px){.container{width:960px}}@media (min-width:1220px){.container{width:1200px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:10px;padding-right:10px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-10px;margin-right:-10px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24{position:relative;min-height:1px;padding-left:10px;padding-right:10px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24{float:left}.col-xs-24{width:100%}.col-xs-23{width:95.83333333%}.col-xs-22{width:91.66666667%}.col-xs-21{width:87.5%}.col-xs-20{width:83.33333333%}.col-xs-19{width:79.16666667%}.col-xs-18{width:75%}.col-xs-17{width:70.83333333%}.col-xs-16{width:66.66666667%}.col-xs-15{width:62.5%}.col-xs-14{width:58.33333333%}.col-xs-13{width:54.16666667%}.col-xs-12{width:50%}.col-xs-11{width:45.83333333%}.col-xs-10{width:41.66666667%}.col-xs-9{width:37.5%}.col-xs-8{width:33.33333333%}.col-xs-7{width:29.16666667%}.col-xs-6{width:25%}.col-xs-5{width:20.83333333%}.col-xs-4{width:16.66666667%}.col-xs-3{width:12.5%}.col-xs-2{width:8.33333333%}.col-xs-1{width:4.16666667%}.col-xs-pull-24{right:100%}.col-xs-pull-23{right:95.83333333%}.col-xs-pull-22{right:91.66666667%}.col-xs-pull-21{right:87.5%}.col-xs-pull-20{right:83.33333333%}.col-xs-pull-19{right:79.16666667%}.col-xs-pull-18{right:75%}.col-xs-pull-17{right:70.83333333%}.col-xs-pull-16{right:66.66666667%}.col-xs-pull-15{right:62.5%}.col-xs-pull-14{right:58.33333333%}.col-xs-pull-13{right:54.16666667%}.col-xs-pull-12{right:50%}.col-xs-pull-11{right:45.83333333%}.col-xs-pull-10{right:41.66666667%}.col-xs-pull-9{right:37.5%}.col-xs-pull-8{right:33.33333333%}.col-xs-pull-7{right:29.16666667%}.col-xs-pull-6{right:25%}.col-xs-pull-5{right:20.83333333%}.col-xs-pull-4{right:16.66666667%}.col-xs-pull-3{right:12.5%}.col-xs-pull-2{right:8.33333333%}.col-xs-pull-1{right:4.16666667%}.col-xs-pull-0{right:0}.col-xs-push-24{left:100%}.col-xs-push-23{left:95.83333333%}.col-xs-push-22{left:91.66666667%}.col-xs-push-21{left:87.5%}.col-xs-push-20{left:83.33333333%}.col-xs-push-19{left:79.16666667%}.col-xs-push-18{left:75%}.col-xs-push-17{left:70.83333333%}.col-xs-push-16{left:66.66666667%}.col-xs-push-15{left:62.5%}.col-xs-push-14{left:58.33333333%}.col-xs-push-13{left:54.16666667%}.col-xs-push-12{left:50%}.col-xs-push-11{left:45.83333333%}.col-xs-push-10{left:41.66666667%}.col-xs-push-9{left:37.5%}.col-xs-push-8{left:33.33333333%}.col-xs-push-7{left:29.16666667%}.col-xs-push-6{left:25%}.col-xs-push-5{left:20.83333333%}.col-xs-push-4{left:16.66666667%}.col-xs-push-3{left:12.5%}.col-xs-push-2{left:8.33333333%}.col-xs-push-1{left:4.16666667%}.col-xs-push-0{left:0}.col-xs-offset-24{margin-left:100%}.col-xs-offset-23{margin-left:95.83333333%}.col-xs-offset-22{margin-left:91.66666667%}.col-xs-offset-21{margin-left:87.5%}.col-xs-offset-20{margin-left:83.33333333%}.col-xs-offset-19{margin-left:79.16666667%}.col-xs-offset-18{margin-left:75%}.col-xs-offset-17{margin-left:70.83333333%}.col-xs-offset-16{margin-left:66.66666667%}.col-xs-offset-15{margin-left:62.5%}.col-xs-offset-14{margin-left:58.33333333%}.col-xs-offset-13{margin-left:54.16666667%}.col-xs-offset-12{margin-left:50%}.col-xs-offset-11{margin-left:45.83333333%}.col-xs-offset-10{margin-left:41.66666667%}.col-xs-offset-9{margin-left:37.5%}.col-xs-offset-8{margin-left:33.33333333%}.col-xs-offset-7{margin-left:29.16666667%}.col-xs-offset-6{margin-left:25%}.col-xs-offset-5{margin-left:20.83333333%}.col-xs-offset-4{margin-left:16.66666667%}.col-xs-offset-3{margin-left:12.5%}.col-xs-offset-2{margin-left:8.33333333%}.col-xs-offset-1{margin-left:4.16666667%}.col-xs-offset-0{margin-left:0}@media (min-width:780px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24{float:left}.col-sm-24{width:100%}.col-sm-23{width:95.83333333%}.col-sm-22{width:91.66666667%}.col-sm-21{width:87.5%}.col-sm-20{width:83.33333333%}.col-sm-19{width:79.16666667%}.col-sm-18{width:75%}.col-sm-17{width:70.83333333%}.col-sm-16{width:66.66666667%}.col-sm-15{width:62.5%}.col-sm-14{width:58.33333333%}.col-sm-13{width:54.16666667%}.col-sm-12{width:50%}.col-sm-11{width:45.83333333%}.col-sm-10{width:41.66666667%}.col-sm-9{width:37.5%}.col-sm-8{width:33.33333333%}.col-sm-7{width:29.16666667%}.col-sm-6{width:25%}.col-sm-5{width:20.83333333%}.col-sm-4{width:16.66666667%}.col-sm-3{width:12.5%}.col-sm-2{width:8.33333333%}.col-sm-1{width:4.16666667%}.col-sm-pull-24{right:100%}.col-sm-pull-23{right:95.83333333%}.col-sm-pull-22{right:91.66666667%}.col-sm-pull-21{right:87.5%}.col-sm-pull-20{right:83.33333333%}.col-sm-pull-19{right:79.16666667%}.col-sm-pull-18{right:75%}.col-sm-pull-17{right:70.83333333%}.col-sm-pull-16{right:66.66666667%}.col-sm-pull-15{right:62.5%}.col-sm-pull-14{right:58.33333333%}.col-sm-pull-13{right:54.16666667%}.col-sm-pull-12{right:50%}.col-sm-pull-11{right:45.83333333%}.col-sm-pull-10{right:41.66666667%}.col-sm-pull-9{right:37.5%}.col-sm-pull-8{right:33.33333333%}.col-sm-pull-7{right:29.16666667%}.col-sm-pull-6{right:25%}.col-sm-pull-5{right:20.83333333%}.col-sm-pull-4{right:16.66666667%}.col-sm-pull-3{right:12.5%}.col-sm-pull-2{right:8.33333333%}.col-sm-pull-1{right:4.16666667%}.col-sm-pull-0{right:0}.col-sm-push-24{left:100%}.col-sm-push-23{left:95.83333333%}.col-sm-push-22{left:91.66666667%}.col-sm-push-21{left:87.5%}.col-sm-push-20{left:83.33333333%}.col-sm-push-19{left:79.16666667%}.col-sm-push-18{left:75%}.col-sm-push-17{left:70.83333333%}.col-sm-push-16{left:66.66666667%}.col-sm-push-15{left:62.5%}.col-sm-push-14{left:58.33333333%}.col-sm-push-13{left:54.16666667%}.col-sm-push-12{left:50%}.col-sm-push-11{left:45.83333333%}.col-sm-push-10{left:41.66666667%}.col-sm-push-9{left:37.5%}.col-sm-push-8{left:33.33333333%}.col-sm-push-7{left:29.16666667%}.col-sm-push-6{left:25%}.col-sm-push-5{left:20.83333333%}.col-sm-push-4{left:16.66666667%}.col-sm-push-3{left:12.5%}.col-sm-push-2{left:8.33333333%}.col-sm-push-1{left:4.16666667%}.col-sm-push-0{left:0}.col-sm-offset-24{margin-left:100%}.col-sm-offset-23{margin-left:95.83333333%}.col-sm-offset-22{margin-left:91.66666667%}.col-sm-offset-21{margin-left:87.5%}.col-sm-offset-20{margin-left:83.33333333%}.col-sm-offset-19{margin-left:79.16666667%}.col-sm-offset-18{margin-left:75%}.col-sm-offset-17{margin-left:70.83333333%}.col-sm-offset-16{margin-left:66.66666667%}.col-sm-offset-15{margin-left:62.5%}.col-sm-offset-14{margin-left:58.33333333%}.col-sm-offset-13{margin-left:54.16666667%}.col-sm-offset-12{margin-left:50%}.col-sm-offset-11{margin-left:45.83333333%}.col-sm-offset-10{margin-left:41.66666667%}.col-sm-offset-9{margin-left:37.5%}.col-sm-offset-8{margin-left:33.33333333%}.col-sm-offset-7{margin-left:29.16666667%}.col-sm-offset-6{margin-left:25%}.col-sm-offset-5{margin-left:20.83333333%}.col-sm-offset-4{margin-left:16.66666667%}.col-sm-offset-3{margin-left:12.5%}.col-sm-offset-2{margin-left:8.33333333%}.col-sm-offset-1{margin-left:4.16666667%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24{float:left}.col-md-24{width:100%}.col-md-23{width:95.83333333%}.col-md-22{width:91.66666667%}.col-md-21{width:87.5%}.col-md-20{width:83.33333333%}.col-md-19{width:79.16666667%}.col-md-18{width:75%}.col-md-17{width:70.83333333%}.col-md-16{width:66.66666667%}.col-md-15{width:62.5%}.col-md-14{width:58.33333333%}.col-md-13{width:54.16666667%}.col-md-12{width:50%}.col-md-11{width:45.83333333%}.col-md-10{width:41.66666667%}.col-md-9{width:37.5%}.col-md-8{width:33.33333333%}.col-md-7{width:29.16666667%}.col-md-6{width:25%}.col-md-5{width:20.83333333%}.col-md-4{width:16.66666667%}.col-md-3{width:12.5%}.col-md-2{width:8.33333333%}.col-md-1{width:4.16666667%}.col-md-pull-24{right:100%}.col-md-pull-23{right:95.83333333%}.col-md-pull-22{right:91.66666667%}.col-md-pull-21{right:87.5%}.col-md-pull-20{right:83.33333333%}.col-md-pull-19{right:79.16666667%}.col-md-pull-18{right:75%}.col-md-pull-17{right:70.83333333%}.col-md-pull-16{right:66.66666667%}.col-md-pull-15{right:62.5%}.col-md-pull-14{right:58.33333333%}.col-md-pull-13{right:54.16666667%}.col-md-pull-12{right:50%}.col-md-pull-11{right:45.83333333%}.col-md-pull-10{right:41.66666667%}.col-md-pull-9{right:37.5%}.col-md-pull-8{right:33.33333333%}.col-md-pull-7{right:29.16666667%}.col-md-pull-6{right:25%}.col-md-pull-5{right:20.83333333%}.col-md-pull-4{right:16.66666667%}.col-md-pull-3{right:12.5%}.col-md-pull-2{right:8.33333333%}.col-md-pull-1{right:4.16666667%}.col-md-pull-0{right:0}.col-md-push-24{left:100%}.col-md-push-23{left:95.83333333%}.col-md-push-22{left:91.66666667%}.col-md-push-21{left:87.5%}.col-md-push-20{left:83.33333333%}.col-md-push-19{left:79.16666667%}.col-md-push-18{left:75%}.col-md-push-17{left:70.83333333%}.col-md-push-16{left:66.66666667%}.col-md-push-15{left:62.5%}.col-md-push-14{left:58.33333333%}.col-md-push-13{left:54.16666667%}.col-md-push-12{left:50%}.col-md-push-11{left:45.83333333%}.col-md-push-10{left:41.66666667%}.col-md-push-9{left:37.5%}.col-md-push-8{left:33.33333333%}.col-md-push-7{left:29.16666667%}.col-md-push-6{left:25%}.col-md-push-5{left:20.83333333%}.col-md-push-4{left:16.66666667%}.col-md-push-3{left:12.5%}.col-md-push-2{left:8.33333333%}.col-md-push-1{left:4.16666667%}.col-md-push-0{left:0}.col-md-offset-24{margin-left:100%}.col-md-offset-23{margin-left:95.83333333%}.col-md-offset-22{margin-left:91.66666667%}.col-md-offset-21{margin-left:87.5%}.col-md-offset-20{margin-left:83.33333333%}.col-md-offset-19{margin-left:79.16666667%}.col-md-offset-18{margin-left:75%}.col-md-offset-17{margin-left:70.83333333%}.col-md-offset-16{margin-left:66.66666667%}.col-md-offset-15{margin-left:62.5%}.col-md-offset-14{margin-left:58.33333333%}.col-md-offset-13{margin-left:54.16666667%}.col-md-offset-12{margin-left:50%}.col-md-offset-11{margin-left:45.83333333%}.col-md-offset-10{margin-left:41.66666667%}.col-md-offset-9{margin-left:37.5%}.col-md-offset-8{margin-left:33.33333333%}.col-md-offset-7{margin-left:29.16666667%}.col-md-offset-6{margin-left:25%}.col-md-offset-5{margin-left:20.83333333%}.col-md-offset-4{margin-left:16.66666667%}.col-md-offset-3{margin-left:12.5%}.col-md-offset-2{margin-left:8.33333333%}.col-md-offset-1{margin-left:4.16666667%}.col-md-offset-0{margin-left:0}}@media (min-width:1220px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24{float:left}.col-lg-24{width:100%}.col-lg-23{width:95.83333333%}.col-lg-22{width:91.66666667%}.col-lg-21{width:87.5%}.col-lg-20{width:83.33333333%}.col-lg-19{width:79.16666667%}.col-lg-18{width:75%}.col-lg-17{width:70.83333333%}.col-lg-16{width:66.66666667%}.col-lg-15{width:62.5%}.col-lg-14{width:58.33333333%}.col-lg-13{width:54.16666667%}.col-lg-12{width:50%}.col-lg-11{width:45.83333333%}.col-lg-10{width:41.66666667%}.col-lg-9{width:37.5%}.col-lg-8{width:33.33333333%}.col-lg-7{width:29.16666667%}.col-lg-6{width:25%}.col-lg-5{width:20.83333333%}.col-lg-4{width:16.66666667%}.col-lg-3{width:12.5%}.col-lg-2{width:8.33333333%}.col-lg-1{width:4.16666667%}.col-lg-pull-24{right:100%}.col-lg-pull-23{right:95.83333333%}.col-lg-pull-22{right:91.66666667%}.col-lg-pull-21{right:87.5%}.col-lg-pull-20{right:83.33333333%}.col-lg-pull-19{right:79.16666667%}.col-lg-pull-18{right:75%}.col-lg-pull-17{right:70.83333333%}.col-lg-pull-16{right:66.66666667%}.col-lg-pull-15{right:62.5%}.col-lg-pull-14{right:58.33333333%}.col-lg-pull-13{right:54.16666667%}.col-lg-pull-12{right:50%}.col-lg-pull-11{right:45.83333333%}.col-lg-pull-10{right:41.66666667%}.col-lg-pull-9{right:37.5%}.col-lg-pull-8{right:33.33333333%}.col-lg-pull-7{right:29.16666667%}.col-lg-pull-6{right:25%}.col-lg-pull-5{right:20.83333333%}.col-lg-pull-4{right:16.66666667%}.col-lg-pull-3{right:12.5%}.col-lg-pull-2{right:8.33333333%}.col-lg-pull-1{right:4.16666667%}.col-lg-pull-0{right:0}.col-lg-push-24{left:100%}.col-lg-push-23{left:95.83333333%}.col-lg-push-22{left:91.66666667%}.col-lg-push-21{left:87.5%}.col-lg-push-20{left:83.33333333%}.col-lg-push-19{left:79.16666667%}.col-lg-push-18{left:75%}.col-lg-push-17{left:70.83333333%}.col-lg-push-16{left:66.66666667%}.col-lg-push-15{left:62.5%}.col-lg-push-14{left:58.33333333%}.col-lg-push-13{left:54.16666667%}.col-lg-push-12{left:50%}.col-lg-push-11{left:45.83333333%}.col-lg-push-10{left:41.66666667%}.col-lg-push-9{left:37.5%}.col-lg-push-8{left:33.33333333%}.col-lg-push-7{left:29.16666667%}.col-lg-push-6{left:25%}.col-lg-push-5{left:20.83333333%}.col-lg-push-4{left:16.66666667%}.col-lg-push-3{left:12.5%}.col-lg-push-2{left:8.33333333%}.col-lg-push-1{left:4.16666667%}.col-lg-push-0{left:0}.col-lg-offset-24{margin-left:100%}.col-lg-offset-23{margin-left:95.83333333%}.col-lg-offset-22{margin-left:91.66666667%}.col-lg-offset-21{margin-left:87.5%}.col-lg-offset-20{margin-left:83.33333333%}.col-lg-offset-19{margin-left:79.16666667%}.col-lg-offset-18{margin-left:75%}.col-lg-offset-17{margin-left:70.83333333%}.col-lg-offset-16{margin-left:66.66666667%}.col-lg-offset-15{margin-left:62.5%}.col-lg-offset-14{margin-left:58.33333333%}.col-lg-offset-13{margin-left:54.16666667%}.col-lg-offset-12{margin-left:50%}.col-lg-offset-11{margin-left:45.83333333%}.col-lg-offset-10{margin-left:41.66666667%}.col-lg-offset-9{margin-left:37.5%}.col-lg-offset-8{margin-left:33.33333333%}.col-lg-offset-7{margin-left:29.16666667%}.col-lg-offset-6{margin-left:25%}.col-lg-offset-5{margin-left:20.83333333%}.col-lg-offset-4{margin-left:16.66666667%}.col-lg-offset-3{margin-left:12.5%}.col-lg-offset-2{margin-left:8.33333333%}.col-lg-offset-1{margin-left:4.16666667%}.col-lg-offset-0{margin-left:0}}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.pull-right{float:right !important}.pull-left{float:left !important}#wiki-wrapper{max-width:1220px;padding-left:20px;padding-right:20px}#top{font-size:14px;font-size:1.5rem;line-height:1.643;color:#666;padding:20px 0;text-decoration:none;border-bottom:#d3d3d3 solid;border-width:1px}#top .container{position:relative;min-height:58px;width:1480px}#top .container a{text-decoration:none}#top .logo{float:left;padding-left:140px;display:none}#top .logo a{width:179px;height:58px;text-indent:-999999px;display:block}@media (min-width:780px){#top .logo{display:block}}#top .main-navigation{display:none;position:relative;z-index:200}#top .main-navigation ul{list-style-type:none}#top .main-navigation ul>li>a{font-weight:bold;padding:0 25px 0 15px}#top .main-navigation ul>li>a span{display:none}@media (min-width:480px){#top .main-navigation{display:block;float:left}#top .main-navigation ul>li{float:left;position:relative}#top .main-navigation ul>li>a{height:58px;line-height:58px;float:left;color:#1a1a1a;position:relative;border:1px solid transparent;border-bottom:0;z-index:101;padding:0 20px 0 10px}#top .main-navigation ul>li>a:before{content:"";width:0;height:0;border-style:solid;border-width:6px 4.5px 0 4.5px;border-color:#b3b3b3 transparent transparent transparent;position:absolute;top:50%;right:5px;margin-top:-3px}#top .main-navigation ul>li.active>a{background:#fff;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;border-right:1px solid #e6e6e6}#top .main-navigation ul>li.active ol{display:block;list-style-type:none}#top .main-navigation ul>li:nth-child(3) ol{left:auto;right:0}#top .main-navigation ul>li:last-child ol{left:auto;right:0}#top .main-navigation ul>li ol{display:none;position:absolute;top:57px;width:290px;z-index:100;background:#fff;border:1px solid #e6e6e6}#top .main-navigation ul>li ol>li a{padding:10px 20px;display:block;border-top:1px solid #e6e6e6;color:#333}#top .main-navigation ul>li ol>li a:hover{background:#256d2a;color:#fff}#top .main-navigation ul>li ol>li:first-child a{border-top:0}}@media (min-width:600px){#top .main-navigation ul>li>a{padding:0 25px 0 15px}#top .main-navigation ul>li>a:before{right:10px}#top .main-navigation ul>li ol>li a{padding:15px 25px}}@media (min-width:780px){#top .main-navigation{float:right}#top .main-navigation ul>li:nth-child(3) ol{left:0;right:auto}}@media (min-width:992px){#top .main-navigation{margin-right:150px}}@media (min-width:1220px){#top .main-navigation ul>li>a{padding:0 35px 0 25px}#top .main-navigation ul>li>a span{display:inline}}#top .mobile-navigation{width:60px;height:41px;display:block;padding:10px;position:relative;top:10px;right:10px}#top .mobile-navigation span{display:block;background:#333;height:5px;position:relative;margin-top:8px}#top .mobile-navigation span:before,#top .mobile-navigation span:after{content:"";display:block;position:absolute;left:0;right:0;height:5px;background:#333}#top .mobile-navigation span:before{top:-8px}#top .mobile-navigation span:after{top:8px}@media (min-width:480px){#top .mobile-navigation{display:none}}#top .addon{display:none}@media (min-width:992px){#top .addon{display:block;position:absolute;top:5px;right:10px;width:130px}}#footer_wiki{background:#333;padding-top:30px}#footer_wiki a{color:#999}#footer_wiki a:hover{color:#b3b3b3}#footer_wiki header{padding:30px 0 20px 0}#footer_wiki header h4{color:#fff}#footer_wiki .about{display:none}@media (min-width:780px){#footer_wiki .about{display:block;border-bottom:1px solid #4d4d4d}#footer_wiki .about ul{border-bottom:1px solid #303030;padding-bottom:30px;text-align:center}#footer_wiki .about ul:before,#footer_wiki .about ul:after{content:" ";display:table}#footer_wiki .about ul:after{clear:both}#footer_wiki .about ul:before,#footer_wiki .about ul:after{content:" ";display:table}#footer_wiki .about ul:after{clear:both}#footer_wiki .about ul li{padding-left:90px;height:70px;line-height:70px;background-position:20px center;background-repeat:no-repeat;border-left:1px solid #4d4d4d;display:inline-block;text-align:left;margin-left:20px;white-space:nowrap}#footer_wiki .about ul li.institutions{background-image:url(../images/icon-institutions.png)}#footer_wiki .about ul li.countries{background-image:url(../images/icon-countries.png)}#footer_wiki .about ul li.software{background-image:url(../images/icon-software-packages.png)}#footer_wiki .about ul li:first-child{border-left:0;margin-left:0}#footer_wiki .about ul li p{color:#fff}}@media (min-width:992px){#footer_wiki .about ul li{width:33%;margin-left:0;padding-left:120px;background-position:40px center}}@media (min-width:1220px){#footer_wiki .about ul li{border-left:0}}#footer_wiki .pages{padding:0 40px}#footer_wiki .pages ul>li ol{border-bottom:1px solid #404040}#footer_wiki .pages ul>li ol>li{border-top:1px solid #404040;padding:5px 0 5px 16px;position:relative}#footer_wiki .pages ul>li ol>li:before{content:"";width:0;height:0;border-style:solid;border-width:3px 0 3px 5px;border-color:transparent transparent transparent #666;position:absolute;top:14px;left:2px}@media (min-width:480px){#footer_wiki .pages{padding:0 20px}#footer_wiki .pages ul>li{float:left;width:45%}#footer_wiki .pages ul>li:nth-child(2n){float:right}}@media (min-width:600px){#footer_wiki .pages{padding:0 50px}#footer_wiki .pages ul>li{width:40%}}@media (min-width:780px){#footer_wiki .pages{padding:0}#footer_wiki .pages ul>li{width:33%;padding:0 20px}#footer_wiki .pages ul>li:nth-child(2n){float:left}#footer_wiki .pages ul>li:nth-child(3):after{content:"";clear:both}#footer_wiki .pages ul>li:nth-child(4){margin-left:16.5%}}@media (min-width:992px){#footer_wiki .pages ul>li{width:200px;padding:0;float:none;display:inline-block;vertical-align:top;margin:0 15px;text-align:left}#footer_wiki .pages ul>li:nth-child(3),#footer_wiki .pages ul>li:nth-child(2n){float:none}#footer_wiki .pages ul>li:nth-child(4){margin:0 15px;clear:none}}@media (min-width:1220px){#footer_wiki .pages ul>li{margin:0 45px}#footer_wiki .pages ul>li:nth-child(4){margin:0 45px}}#footer_wiki .anchors{padding:0 40px 40px 40px}#footer_wiki .anchors ul>li{border-top:1px solid #404040;padding:5px 0 5px 20px;position:relative}#footer_wiki .anchors ul>li:before{content:"";width:0;height:0;border-style:solid;border-width:3px 0 3px 5px;border-color:transparent transparent transparent #666;position:absolute;top:14px;left:0}@media (min-width:992px){#footer_wiki .anchors ul>li:before{display:none}}@media (min-width:480px){#footer_wiki .anchors{float:left;width:45%;padding:0 0 30px 30px}}@media (min-width:600px){#footer_wiki .anchors{padding:0 50px 40px 50px;width:50%}}@media (min-width:780px){#footer_wiki .anchors{width:33%;padding:0 20px 40px 20px}}@media (min-width:992px){#footer_wiki .anchors{float:none;width:auto;text-align:center;padding:0;margin-top:40px;border-top:1px solid #303030}#footer_wiki .anchors header{display:none}#footer_wiki .anchors ul{border-top:1px solid #4d4d4d;padding:30px 0}#footer_wiki .anchors ul>li{border-top:0;padding:0 10px;display:inline-block;border-left:1px solid #999;height:12px;line-height:12px}#footer_wiki .anchors ul>li:first-child{border-left:0;padding-left:0}#footer_wiki .anchors ul>li:last-child{padding-right:0}}#footer_wiki .copyrights{background:#1a1a1a;padding:30px 40px;text-align:center;color:#999}@media (min-width:480px){#footer_wiki .copyrights{padding:30px 0}}
... ...
\ No newline at end of file
custom.js
... ...
@@ -0,0 +1,22 @@
1
+ // JavaScript from SB/Biogrid
2
+ function desktopmenu() {
3
+ $("#top .main-navigation ul > li > a").on("mouseenter click", function() {
4
+
5
+ $(this).parent().addClass("active");
6
+ return false;
7
+
8
+ });
9
+
10
+ $("#top .main-navigation ul li").on("mouseleave", function() {
11
+
12
+ if ($(this).hasClass("active")) {
13
+ $(this).removeClass("active");
14
+ }
15
+ });
16
+ }
17
+ // Function call:
18
+ $(document).ready(function() {
19
+ //mobilemenu();
20
+ desktopmenu();
21
+ });
22
+// END JavaScript from SB/Biogrid
images/logo.png
... ...
Binary files /dev/null and b/images/logo.png differ
images/logo.svg
... ...
@@ -0,0 +1,270 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+<svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ id="svg2"
13
+ version="1.1"
14
+ inkscape:version="0.91 r13725"
15
+ xml:space="preserve"
16
+ width="731.75"
17
+ height="209.05"
18
+ viewBox="0 0 731.75 209.05"
19
+ sodipodi:docname="logo.svg"><metadata
20
+ id="metadata8"><rdf:RDF><cc:Work
21
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
22
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
23
+ id="defs6"><clipPath
24
+ clipPathUnits="userSpaceOnUse"
25
+ id="clipPath54"><path
26
+ d="m 460,1306.4 c 0,-127.01 -102.996,-230 -230,-230 -60.996,0 -116.602,23.99 -157.8008,62.8 C 27.8008,1180.99 0,1240.6 0,1306.4 c 0,126.99 102.996,230 230,230 41.602,0 80.801,-11.21 114.602,-30.8 C 413.605,1465.99 460,1391.6 460,1306.4 Z"
27
+ id="path56"
28
+ inkscape:connector-curvature="0" /></clipPath><linearGradient
29
+ x1="0"
30
+ y1="0"
31
+ x2="1"
32
+ y2="0"
33
+ gradientUnits="userSpaceOnUse"
34
+ gradientTransform="matrix(396.934,-232.569,-232.569,-396.934,31.5039,1422.64)"
35
+ spreadMethod="pad"
36
+ id="linearGradient58"><stop
37
+ style="stop-opacity:1;stop-color:#4bab57"
38
+ offset="0"
39
+ id="stop60" /><stop
40
+ style="stop-opacity:1;stop-color:#2a7534"
41
+ offset="1"
42
+ id="stop62" /></linearGradient><clipPath
43
+ clipPathUnits="userSpaceOnUse"
44
+ id="clipPath70"><path
45
+ d="m 829.805,333.199 c 0,-85 -46.004,-159.199 -114.61,-198.808 -33.8,-19.801 -73.191,-31.192 -115.39,-31.192 -127,0 -230,102.992 -230,230 0,22.992 3.398,45.199 9.797,66.192 28.394,94.808 116.199,163.808 220.203,163.808 126.992,0 230,-103.008 230,-230 z"
46
+ id="path72"
47
+ inkscape:connector-curvature="0" /></clipPath><linearGradient
48
+ x1="0"
49
+ y1="0"
50
+ x2="1"
51
+ y2="0"
52
+ gradientUnits="userSpaceOnUse"
53
+ gradientTransform="matrix(460,0,0,-460,369.805,333.2)"
54
+ spreadMethod="pad"
55
+ id="linearGradient74"><stop
56
+ style="stop-opacity:1;stop-color:#4bab57"
57
+ offset="0"
58
+ id="stop76" /><stop
59
+ style="stop-opacity:1;stop-color:#2a7534"
60
+ offset="1"
61
+ id="stop78" /></linearGradient><clipPath
62
+ clipPathUnits="userSpaceOnUse"
63
+ id="clipPath86"><path
64
+ d="M 1533,260 C 1533,116.398 1416.6,0 1273,0 c -111.6,0 -206.8,70.1914 -243.6,169 -10.6,28.398 -16.4,59.012 -16.4,91 0,143.59 116.4,260 260,260 55.6,0 107.4,-17.602 149.6,-47.398 66.8,-47 110.4,-124.59 110.4,-212.602 z"
65
+ id="path88"
66
+ inkscape:connector-curvature="0" /></clipPath><linearGradient
67
+ x1="0"
68
+ y1="0"
69
+ x2="1"
70
+ y2="0"
71
+ gradientUnits="userSpaceOnUse"
72
+ gradientTransform="matrix(265.076,-447.455,-447.455,-265.076,1140.46,483.73)"
73
+ spreadMethod="pad"
74
+ id="linearGradient90"><stop
75
+ style="stop-opacity:1;stop-color:#4bab57"
76
+ offset="0"
77
+ id="stop92" /><stop
78
+ style="stop-opacity:1;stop-color:#2a7534"
79
+ offset="1"
80
+ id="stop94" /></linearGradient><clipPath
81
+ clipPathUnits="userSpaceOnUse"
82
+ id="clipPath102"><path
83
+ d="m 0,0 0,1672 5854,0 L 5854,0 0,0 Z"
84
+ id="path104"
85
+ inkscape:connector-curvature="0" /></clipPath><clipPath
86
+ clipPathUnits="userSpaceOnUse"
87
+ id="clipPath108"><path
88
+ d="m 1278.8,1672.4 c -3.8,0 -7.8,0 -11.6,-0.2 -124.4,-3 -224.2,-104.8 -224.2,-229.8 0,-127.01 103,-230 230,-230 103.31,0 190.6,68.34 219.39,161.99 l -0.19,0 c 1,2.82 1.8,5.61 2.8,8.4 6,20.41 9.4,41.8 9.4,64.01 0,124.39 -101.2,225.6 -225.6,225.6 z"
89
+ id="path110"
90
+ inkscape:connector-curvature="0" /></clipPath><linearGradient
91
+ x1="0"
92
+ y1="0"
93
+ x2="1"
94
+ y2="0"
95
+ gradientUnits="userSpaceOnUse"
96
+ gradientTransform="matrix(-306.419,-346.605,-346.605,306.419,1427.03,1616.75)"
97
+ spreadMethod="pad"
98
+ id="linearGradient112"><stop
99
+ style="stop-opacity:1;stop-color:#4bab57"
100
+ offset="0"
101
+ id="stop114" /><stop
102
+ style="stop-opacity:1;stop-color:#2a7534"
103
+ offset="1"
104
+ id="stop116" /></linearGradient><clipPath
105
+ clipPathUnits="userSpaceOnUse"
106
+ id="clipPath124"><path
107
+ d="m 1213.8,900.797 c 0,-176.793 -143.4,-319.996 -319.999,-319.996 -64.602,0 -124.797,19.199 -175.196,52.211 C 631.395,690 573.801,788.59 573.801,900.797 c 0,162.793 121.394,296.993 278.601,317.403 13.594,1.6 27.403,2.6 41.399,2.6 176.599,0 319.999,-143.21 319.999,-320.003 z"
108
+ id="path126"
109
+ inkscape:connector-curvature="0" /></clipPath><linearGradient
110
+ x1="0"
111
+ y1="0"
112
+ x2="1"
113
+ y2="0"
114
+ gradientUnits="userSpaceOnUse"
115
+ gradientTransform="matrix(640,0,0,-640,573.799,900.798)"
116
+ spreadMethod="pad"
117
+ id="linearGradient128"><stop
118
+ style="stop-opacity:1;stop-color:#4bab57"
119
+ offset="0"
120
+ id="stop130" /><stop
121
+ style="stop-opacity:1;stop-color:#2a7534"
122
+ offset="1"
123
+ id="stop132" /></linearGradient></defs><sodipodi:namedview
124
+ pagecolor="#ffffff"
125
+ bordercolor="#666666"
126
+ borderopacity="1"
127
+ objecttolerance="10"
128
+ gridtolerance="10"
129
+ guidetolerance="10"
130
+ inkscape:pageopacity="0"
131
+ inkscape:pageshadow="2"
132
+ inkscape:window-width="1871"
133
+ inkscape:window-height="1062"
134
+ id="namedview4"
135
+ showgrid="false"
136
+ inkscape:zoom="1.7382986"
137
+ inkscape:cx="388.07467"
138
+ inkscape:cy="63.23491"
139
+ inkscape:window-x="49"
140
+ inkscape:window-y="18"
141
+ inkscape:window-maximized="1"
142
+ inkscape:current-layer="g12" /><g
143
+ id="g10"
144
+ inkscape:groupmode="layer"
145
+ inkscape:label="ink_ext_XXXXXX"
146
+ transform="matrix(1.25,0,0,-1.25,0,209.05)"><g
147
+ id="g12"
148
+ transform="scale(0.1,0.1)"><g
149
+ id="g3410"
150
+ transform="matrix(0.97522739,0,0,0.97522739,48,16)"><path
151
+ inkscape:connector-curvature="0"
152
+ id="path30"
153
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
154
+ d="m 2266.76,171.031 c 0,-3.429 -2.2,-15.39 -6.56,-35.859 -4.38,-20.481 -7.5,-31.172 -9.38,-32.113 -22.82,-13.7504 -60.16,-20.6176 -112.03,-20.6176 -41.25,0 -76.33,15.1406 -105.24,45.4686 -28.91,30.309 -43.35,66.399 -43.35,108.281 0,44.368 14.84,82.399 44.53,114.137 29.67,31.723 66.09,47.582 109.22,47.582 36.87,0 74.84,-3.91 113.9,-11.719 -0.62,-41.882 -0.94,-64.382 -0.94,-67.5 0,-4.691 -3.28,-7.031 -9.84,-7.031 -3.13,0 -5.16,0.781 -6.09,2.34 -0.94,4.059 -2.11,8.199 -3.52,12.422 -1.41,4.219 -4.37,9.687 -8.91,16.406 -4.54,6.703 -10,12.5 -16.4,17.344 -6.42,4.828 -15.47,9.047 -27.19,12.656 -11.72,3.594 -24.93,5.391 -39.61,5.391 -30.62,0 -56.72,-13.52 -78.28,-40.547 -21.56,-27.051 -32.34,-57.57 -32.34,-91.641 0,-25.312 4.36,-48.609 13.12,-69.84 8.75,-21.25 22.58,-38.832 41.49,-52.742 18.89,-13.918 41.32,-20.847 67.26,-20.847 30.94,0 54.85,9.039 71.72,27.179 4.37,4.688 8.2,10.86 11.48,18.52 3.29,7.64 5.78,14.058 7.5,19.219 1.72,5.152 3.05,7.73 3.99,7.73 1.87,0 4.13,-0.328 6.8,-0.941 2.65,-0.618 4.76,-1.27 6.32,-1.868 l 2.35,-1.41" /><path
155
+ inkscape:connector-curvature="0"
156
+ id="path32"
157
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
158
+ d="m 2440.2,378.219 c -29.69,0 -53.13,-12.989 -70.32,-38.91 -17.19,-25.93 -25.78,-55.93 -25.78,-90 0,-25 4.06,-48.61 12.19,-70.778 8.11,-22.179 20.77,-40.703 37.97,-55.543 17.19,-14.867 37.34,-22.269 60.47,-22.269 20,0 37.5,6.472 52.5,19.453 15,12.969 26.01,29.066 33.04,48.277 7.03,19.223 10.55,39.75 10.55,61.653 0,24.98 -4.07,48.507 -12.19,70.539 -8.12,22.031 -20.78,40.449 -37.97,55.308 -17.19,14.852 -37.35,22.27 -60.46,22.27 z m -98.68,-251.25 C 2312.3,157.91 2297.7,195.25 2297.7,239 c 0,43.73 14.6,81.172 43.82,112.27 29.21,31.07 64.46,46.64 105.71,46.64 41.25,0 76.55,-15.57 105.93,-46.64 29.38,-31.098 44.07,-68.54 44.07,-112.27 0,-43.75 -14.69,-81.09 -44.07,-112.031 -29.38,-30.9377 -64.68,-46.4104 -105.93,-46.4104 -41.25,0 -76.5,15.4727 -105.71,46.4104" /><path
159
+ inkscape:connector-curvature="0"
160
+ id="path34"
161
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
162
+ d="m 2876.6,330.879 c 0,19.062 -1.09,32.812 -3.28,41.25 -0.94,2.48 -6.33,4.922 -16.17,7.262 -9.85,2.347 -16.8,3.519 -20.86,3.519 -1.26,0 -1.88,1.781 -1.88,5.391 0,3.59 0.62,5.988 1.88,7.258 4.06,-0.329 12.19,-0.86 24.37,-1.637 12.19,-0.801 22.5,-1.172 30.94,-1.172 8.12,0 18.36,0.469 30.7,1.41 12.34,0.942 19.6,1.399 21.8,1.399 0.62,-1.868 0.94,-4.207 0.94,-7.028 0,-3.75 -0.63,-5.621 -1.88,-5.621 -3.13,0 -9.93,-1.269 -20.39,-3.75 -10.47,-2.5 -16.02,-4.851 -16.64,-7.031 -2.5,-9.707 -3.75,-24.238 -3.75,-43.598 l 0,-178.121 c 0,-19.379 0.47,-41.25 1.41,-65.6287 -1.26,-1.25 -4.22,-1.8711 -8.91,-1.8711 -5.31,0 -10.47,3.5898 -15.47,10.7812 L 2697.54,351.5 l 0,-200.148 c 0,-20.633 1.08,-35.161 3.28,-43.602 0.62,-2.211 5.86,-4.449 15.7,-6.801 9.85,-2.3396 16.32,-3.5076 19.46,-3.5076 0.93,0 1.48,-1.8828 1.64,-5.6328 0.14,-3.75 -0.09,-6.418 -0.71,-7.957 -31.26,1.539 -49.21,2.3398 -53.9,2.3398 l -53.91,-2.3398 c -0.94,0.9297 -1.4,3.2773 -1.4,7.0273 0,4.3516 0.46,6.5625 1.4,6.5625 4.37,0 11.49,1.168 21.33,3.5076 9.84,2.352 15.23,4.93 16.17,7.742 3.13,8.098 4.69,22.809 4.69,44.059 l 0,184.219 c 0,15.312 -1.09,27.031 -3.28,35.16 -0.94,2.48 -6.25,4.762 -15.94,6.793 -9.7,2.019 -16.73,3.047 -21.09,3.047 -1.26,0 -1.88,1.953 -1.88,5.859 0,3.891 0.62,6.461 1.88,7.731 24.37,-0.618 40.31,-0.93 47.81,-0.93 16.25,0 28.74,0.312 37.5,0.93 11.56,-21.25 64.53,-97.829 158.91,-229.68 0.93,5.293 1.4,11.723 1.4,19.223 l 0,145.777" /><path
163
+ inkscape:connector-curvature="0"
164
+ id="path36"
165
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
166
+ d="m 2984.88,314.941 c 0,24.039 9.22,43.829 27.66,59.297 18.43,15.461 39.84,23.203 64.22,23.203 6.87,0 13.36,-0.39 19.45,-1.171 6.09,-0.801 11.09,-1.641 15,-2.579 3.9,-0.941 9.52,-2.441 16.88,-4.453 7.34,-2.039 13.82,-3.679 19.45,-4.929 3.75,-16.559 5.62,-38.899 5.62,-67.028 0,-2.199 -1.56,-3.281 -4.68,-3.281 -7.5,0 -11.58,1.539 -12.19,4.691 -1.56,13.731 -8.2,27.09 -19.92,40.079 -11.72,12.968 -26.02,19.449 -42.89,19.449 -18.75,0 -31.97,-4.688 -39.61,-14.059 -7.66,-9.379 -11.49,-20.961 -11.49,-34.691 0,-5.957 1.09,-11.641 3.28,-17.11 2.19,-5.488 4.37,-10 6.57,-13.589 2.18,-3.622 6.17,-7.739 11.95,-12.418 5.77,-4.692 9.99,-7.973 12.66,-9.852 2.65,-1.871 7.96,-5.309 15.93,-10.309 7.97,-5.019 13.04,-8.132 15.24,-9.382 1.55,-0.93 7.03,-4.309 16.4,-10.071 9.38,-5.789 15.79,-9.847 19.22,-12.187 3.43,-2.352 8.82,-6.563 16.17,-12.66 7.35,-6.09 12.66,-11.481 15.94,-16.172 3.28,-4.688 6.41,-10.547 9.38,-17.578 2.96,-7.032 4.45,-14.289 4.45,-21.789 0,-25 -9.77,-45.571 -29.3,-61.653 -19.54,-16.0896 -42.42,-24.1404 -68.67,-24.1404 -7.5,0 -15.47,0.5508 -23.9,1.6406 -8.44,1.1016 -15.47,2.1914 -21.1,3.2891 -5.62,1.0703 -12.74,2.6523 -21.33,4.6836 -8.59,2.0195 -14.62,3.3594 -18.04,3.9883 -7.83,38.4418 -11.72,63.2808 -11.72,74.5308 0,1.868 2.49,2.809 7.5,2.809 5.62,0 9.52,-1.398 11.72,-4.219 10.62,-45 36.56,-67.4997 77.81,-67.4997 15.61,0 28.91,4.6877 39.84,14.0707 10.93,9.367 16.41,22.628 16.41,39.839 0,6.231 -0.94,12.028 -2.81,17.34 -1.88,5.301 -3.84,9.688 -5.86,13.129 -2.03,3.422 -5.63,7.11 -10.78,11.012 -5.16,3.887 -9.14,6.797 -11.96,8.68 -2.81,1.867 -7.97,4.82 -15.47,8.898 -7.5,4.059 -12.65,6.879 -15.46,8.441 -9.07,5.289 -15.4,9.039 -18.99,11.25 -3.6,2.188 -9.53,6 -17.81,11.481 -8.29,5.469 -14.3,10.316 -18.05,14.527 -3.75,4.223 -8.12,9.379 -13.12,15.473 -5.01,6.098 -8.53,12.558 -10.55,19.457 -2.03,6.871 -3.05,14.062 -3.05,21.562" /><path
167
+ inkscape:connector-curvature="0"
168
+ id="path38"
169
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
170
+ d="m 3349.57,378.219 c -29.69,0 -53.12,-12.989 -70.31,-38.91 -17.2,-25.93 -25.78,-55.93 -25.78,-90 0,-25 4.06,-48.61 12.18,-70.778 8.12,-22.179 20.78,-40.703 37.97,-55.543 17.19,-14.867 37.35,-22.269 60.47,-22.269 20,0 37.5,6.472 52.5,19.453 15,12.969 26.02,29.066 33.05,48.277 7.03,19.223 10.55,39.75 10.55,61.653 0,24.98 -4.08,48.507 -12.19,70.539 -8.13,22.031 -20.78,40.449 -37.97,55.308 -17.2,14.852 -37.35,22.27 -60.47,22.27 z m -98.67,-251.25 c -29.22,30.941 -43.83,68.281 -43.83,112.031 0,43.73 14.61,81.172 43.83,112.27 29.21,31.07 64.45,46.64 105.7,46.64 41.25,0 76.55,-15.57 105.94,-46.64 29.37,-31.098 44.06,-68.54 44.06,-112.27 0,-43.75 -14.69,-81.09 -44.06,-112.031 -29.39,-30.9377 -64.69,-46.4104 -105.94,-46.4104 -41.25,0 -76.49,15.4727 -105.7,46.4104" /><path
171
+ inkscape:connector-curvature="0"
172
+ id="path40"
173
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
174
+ d="m 3662.23,374 c -14.07,0 -25,-1.09 -32.82,-3.281 -1.26,-0.328 -2.26,-1.5 -3.04,-3.52 -0.79,-2.027 -1.41,-6.711 -1.88,-14.058 -0.47,-7.36 -0.7,-18.672 -0.7,-33.981 l 0,-56.719 c 0,-9.062 13.59,-13.589 40.78,-13.589 l 11.72,0 c 10.93,0 22.26,5.457 33.98,16.398 11.72,10.922 17.58,25.449 17.58,43.602 0,43.429 -21.88,65.148 -65.62,65.148 z m 7.5,20.629 c 10.62,0 21.4,-1.57 32.34,-4.688 10.93,-3.152 21.71,-7.832 32.34,-14.062 10.63,-6.25 19.37,-15.16 26.25,-26.719 6.88,-11.578 10.32,-25 10.32,-40.308 0,-13.133 -4.93,-26.883 -14.77,-41.25 -9.84,-14.403 -23.2,-25.473 -40.08,-33.293 -3.13,-1.27 -4.07,-2.809 -2.81,-4.68 15.62,-32.82 33.59,-60.34 53.91,-82.5 30,-32.82 54.37,-49.2188 73.12,-49.2188 0.94,-1.8789 1.41,-4.0782 1.41,-6.5586 0,-2.8203 -0.47,-5.1602 -1.41,-7.043 -3.44,-0.9297 -7.65,-1.3984 -12.65,-1.3984 -43.75,0 -81.72,22.4998 -113.91,67.4998 -5.01,6.871 -10.7,15.078 -17.11,24.61 -6.42,9.511 -11.1,16.402 -14.06,20.621 -2.97,4.218 -6.42,8.808 -10.32,13.828 -3.9,5 -7.35,8.75 -10.31,11.25 -2.97,2.48 -6.18,4.531 -9.61,6.09 -3.43,1.25 -9.23,1.882 -17.34,1.882 -2.5,0 -4.38,-0.101 -5.63,-0.242 -1.26,-0.148 -2.5,-0.847 -3.75,-2.097 -1.26,-1.27 -1.87,-3.153 -1.87,-5.633 l 0,-68.91 c 0,-20.95 1.25,-34.547 3.75,-40.778 1.55,-4.082 7.11,-7.359 16.64,-9.84 9.52,-2.4996 16.32,-3.7496 20.39,-3.7496 1.25,0 1.88,-2.2109 1.88,-6.5625 0,-2.8203 -0.33,-5.1601 -0.94,-7.0273 -31.26,1.539 -51.56,2.3398 -60.94,2.3398 l -57.19,-2.3398 c -0.93,0.9297 -1.4,3.75 -1.4,8.4297 0,4.0703 0.47,6.0976 1.4,6.0976 4.37,0 10.46,0.9297 18.28,2.8121 7.82,1.868 12.5,4.219 14.07,7.028 2.18,3.75 3.28,18.422 3.28,44.062 l 0,177.188 c 0,18.422 -1.1,31.883 -3.28,40.312 -0.94,2.481 -5.55,4.828 -13.83,7.028 -8.29,2.191 -14.45,3.293 -18.52,3.293 -1.26,0 -1.87,1.867 -1.87,5.617 0,4.062 0.61,6.703 1.87,7.972 l 56.25,-0.941 c 9.38,0 20.47,0.309 33.28,0.941 12.81,0.598 23.75,0.938 32.82,0.938" /><path
175
+ inkscape:connector-curvature="0"
176
+ id="path42"
177
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
178
+ d="m 3941.37,393.691 c 21.4,-0.632 38.98,-0.941 52.73,-0.941 13.74,0 31.41,0.309 52.97,0.941 21.56,0.598 38.28,0.938 50.16,0.938 7.81,0 18.59,1.723 32.34,5.152 l 8.91,-67.031 c -2.2,-2.211 -5.95,-3.281 -11.25,-3.281 -2.82,0 -4.38,0.781 -4.69,2.34 -4.38,17.48 -9.77,28.832 -16.17,33.992 -6.42,5.148 -18.52,7.73 -36.33,7.73 -33.14,0 -50.31,-2.34 -51.56,-7.031 -2.82,-10 -4.22,-25.641 -4.22,-46.871 l 0,-169.219 c 0,-18.148 1.4,-32.68 4.22,-43.601 0.61,-2.2 5,-4.309 13.12,-6.321 8.12,-2.0388 13.74,-3.0466 16.88,-3.0466 1.25,0 1.87,-2.3398 1.87,-7.0312 0,-2.5 -0.32,-4.6914 -0.94,-6.5586 -31.26,1.539 -49.37,2.3398 -54.37,2.3398 -1.56,0 -20.31,-0.8008 -56.25,-2.3398 -1.26,1.25 -1.88,3.5898 -1.88,7.0273 0,4.3516 0.62,6.5625 1.88,6.5625 4.06,0 10.08,0.9375 18.05,2.8086 7.96,1.879 12.42,4.059 13.36,6.559 2.18,8.441 3.28,22.351 3.28,41.722 l 0,169.688 c 0,27.191 -1.41,43.261 -4.22,48.281 -2.5,4.691 -19.38,7.031 -50.63,7.031 -17.81,0 -29.92,-2.582 -36.33,-7.73 -6.41,-5.16 -11.8,-16.512 -16.17,-33.992 -0.32,-1.559 -1.87,-2.34 -4.68,-2.34 -5.32,0 -9.07,1.07 -11.25,3.281 l 8.9,67.031 c 13.74,-3.429 24.52,-5.152 32.35,-5.152 11.86,0 28.5,-0.34 49.92,-0.938" /><path
179
+ inkscape:connector-curvature="0"
180
+ id="path44"
181
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
182
+ d="m 4205.04,330.41 c 0,19.352 -1.09,33.281 -3.28,41.719 -0.94,2.48 -5.39,4.762 -13.36,6.793 -7.97,2.019 -13.99,3.047 -18.05,3.047 -1.26,0 -1.87,2.011 -1.87,6.09 0,3.75 0.61,6.23 1.87,7.5 35.94,-1.559 54.69,-2.34 56.25,-2.34 5,0 23.12,0.781 54.38,2.34 0.61,-1.868 0.93,-4.207 0.93,-7.028 0,-4.371 -0.62,-6.562 -1.87,-6.562 -3.14,0 -8.76,-1.09 -16.88,-3.278 -8.12,-2.211 -12.51,-4.382 -13.12,-6.562 -2.81,-10.938 -4.22,-25.469 -4.22,-43.598 l 0,-178.121 c 0,-18.148 1.41,-32.68 4.22,-43.601 0.61,-2.2 5,-4.309 13.12,-6.321 8.12,-2.0388 13.74,-3.0466 16.88,-3.0466 1.25,0 1.87,-2.3398 1.87,-7.0312 0,-2.5 -0.32,-4.6914 -0.93,-6.5586 -31.26,1.539 -49.38,2.3398 -54.38,2.3398 -1.56,0 -20.31,-0.8008 -56.25,-2.3398 -1.26,1.25 -1.87,3.5898 -1.87,7.0273 0,4.3516 0.61,6.5625 1.87,6.5625 4.06,0 10.08,0.9375 18.05,2.8086 7.97,1.879 12.42,4.059 13.36,6.559 2.19,8.441 3.28,22.351 3.28,41.722 l 0,181.879" /><path
183
+ inkscape:connector-curvature="0"
184
+ id="path46"
185
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
186
+ d="m 4373.32,393.219 c 5,0 23.12,0.781 54.38,2.34 0.61,-1.868 0.93,-4.079 0.93,-6.559 0,-4.691 -0.62,-7.031 -1.87,-7.031 -3.14,0 -8.76,-1.09 -16.88,-3.278 -8.12,-2.211 -12.51,-4.382 -13.12,-6.562 -2.81,-10.938 -4.22,-25.469 -4.22,-43.598 l 0,-104.531 c 0,-35.309 7.5,-63.441 22.5,-84.371 15,-20.957 36.24,-31.41 63.75,-31.41 53.44,0 80.16,35.16 80.16,105.472 l 0,117.188 c 0,19.062 -1.1,32.812 -3.29,41.25 -0.93,2.48 -6.32,4.922 -16.17,7.262 -9.84,2.347 -16.79,3.519 -20.86,3.519 -1.26,0 -1.87,1.781 -1.87,5.391 0,3.59 0.61,5.988 1.87,7.258 4.07,-0.329 12.19,-0.86 24.38,-1.637 12.19,-0.801 22.5,-1.172 30.94,-1.172 8.11,0 18.35,0.469 30.7,1.41 12.33,0.942 19.6,1.399 21.8,1.399 0.61,-1.868 0.93,-4.207 0.93,-7.028 0,-3.75 -0.62,-5.621 -1.87,-5.621 -3.14,0 -9.93,-1.269 -20.39,-3.75 -10.47,-2.5 -16.03,-4.851 -16.64,-7.031 -2.5,-9.707 -3.75,-24.238 -3.75,-43.598 l 0,-113.902 c 0,-48.438 -10.17,-82.129 -30.47,-101.02 -20.31,-18.9098 -49.22,-28.359 -86.72,-28.359 -37.19,0 -65.78,10.9219 -85.78,32.809 -20.01,21.882 -30,57.191 -30,105.941 l 0,106.41 c 0,19.352 -1.1,33.281 -3.28,41.719 -0.94,2.48 -5.39,4.762 -13.36,6.793 -7.97,2.019 -13.99,3.047 -18.05,3.047 -1.26,0 -1.87,2.011 -1.87,6.09 0,3.75 0.61,6.23 1.87,7.5 35.94,-1.559 54.69,-2.34 56.25,-2.34" /><path
187
+ inkscape:connector-curvature="0"
188
+ id="path48"
189
+ style="fill:#1c1a19;fill-opacity:1;fill-rule:nonzero;stroke:none"
190
+ d="m 4715.04,393.219 c 11.56,0 25.93,0.781 43.12,2.34 2.19,-7.18 33.13,-85.457 92.82,-234.84 0.31,-0.617 0.93,-0.938 1.87,-0.938 1.25,0 2.02,0.61 2.35,1.879 30.61,71.852 54.99,131.09 73.12,177.649 l 18.75,56.25 c 19.98,-1.27 32.96,-1.868 38.91,-1.868 19.36,0 36.85,0.598 52.5,1.868 0.93,-2.809 1.4,-5.149 1.4,-7.028 0,-4.371 -0.79,-6.562 -2.34,-6.562 l -0.94,0 c -3.46,0 -7.97,-1.028 -13.59,-3.047 -5.63,-2.031 -9.85,-4.141 -12.66,-6.32 -3.75,-2.821 -5.62,-13.293 -5.62,-31.411 0,-5.019 1.4,-68.441 4.22,-190.312 0.29,-17.82 2.63,-32.207 7.03,-43.129 1.23,-2.809 5.91,-5.25 14.06,-7.262 8.11,-2.0388 13.89,-3.0466 17.34,-3.0466 1.23,0 1.88,-2.2109 1.88,-6.5625 0,-2.8203 -0.32,-5.1601 -0.94,-7.0273 -31.26,1.539 -49.86,2.3398 -55.78,2.3398 -1.58,0 -20.33,-0.8008 -56.25,-2.3398 -1.26,1.25 -1.88,3.75 -1.88,7.5 0,4.0586 0.62,6.0898 1.88,6.0898 3.12,0 7.88,0.7774 14.3,2.3399 6.38,1.5507 11.01,3.1287 13.82,4.6877 3.75,2.191 5.63,8.91 5.63,20.16 l 0,24.84 -5.63,165 c -0.32,5 -1.17,10.859 -2.57,17.582 -1.41,6.699 -2.9,10.078 -4.46,10.078 -0.64,0 -1.4,-1.098 -2.34,-3.277 l -97.97,-234.383 c -5.95,-13.4573 -11.72,-20.1604 -17.34,-20.1604 -0.94,0 -2.35,0.3203 -4.22,0.9414 l -107.35,272.809 c -0.62,-30 -1.56,-64.368 -2.81,-103.118 -1.26,-38.769 -2.34,-70.703 -3.28,-95.863 -0.94,-25.18 -1.41,-38.066 -1.41,-38.668 0,-5.629 0.94,-9.711 2.82,-12.191 1.87,-2.5 7.57,-4.918 17.11,-7.27 9.52,-2.3396 15.85,-3.5076 18.98,-3.5076 1.25,0 1.88,-2.3398 1.88,-7.0312 0,-2.5 -0.33,-4.6914 -0.94,-6.5586 -31.26,1.539 -49.38,2.3398 -54.38,2.3398 -0.62,0 -18.9,-0.8008 -54.84,-2.3398 -1.56,1.539 -2.34,3.8789 -2.34,7.0273 0,4.3516 0.78,6.5625 2.34,6.5625 4.36,0 10.86,1.0078 19.45,3.0466 8.59,2.012 14.3,4.453 17.11,7.262 5,5.629 7.81,19.219 8.44,40.781 0.61,32.481 1.32,64.528 2.11,96.098 0.78,31.543 1.48,56.32 2.11,74.293 0.61,17.949 0.94,29.437 0.94,34.457 0,7.812 -0.63,14.062 -1.88,18.75 -0.94,2.48 -6.25,4.762 -15.94,6.793 -9.69,2.019 -16.73,3.047 -21.09,3.047 -1.26,0 -1.88,2.191 -1.88,6.562 0,3.418 0.62,5.758 1.88,7.028 5.3,-0.329 11.16,-0.618 17.58,-0.93 6.4,-0.34 12.26,-0.629 17.58,-0.938 5.3,-0.332 11.09,-0.472 17.34,-0.472" /><g
191
+ id="g50"><g
192
+ clip-path="url(#clipPath54)"
193
+ id="g52"><path
194
+ inkscape:connector-curvature="0"
195
+ id="path64"
196
+ style="fill:url(#linearGradient58);fill-opacity:1;fill-rule:nonzero;stroke:none"
197
+ d="m 460,1306.4 c 0,-127.01 -102.996,-230 -230,-230 -60.996,0 -116.602,23.99 -157.8008,62.8 C 27.8008,1180.99 0,1240.6 0,1306.4 c 0,126.99 102.996,230 230,230 41.602,0 80.801,-11.21 114.602,-30.8 C 413.605,1465.99 460,1391.6 460,1306.4" /></g></g><g
198
+ id="g66"><g
199
+ clip-path="url(#clipPath70)"
200
+ id="g68"><path
201
+ inkscape:connector-curvature="0"
202
+ id="path80"
203
+ style="fill:url(#linearGradient74);fill-opacity:1;fill-rule:nonzero;stroke:none"
204
+ d="m 829.805,333.199 c 0,-85 -46.004,-159.199 -114.61,-198.808 -33.8,-19.801 -73.191,-31.192 -115.39,-31.192 -127,0 -230,102.992 -230,230 0,22.992 3.398,45.199 9.797,66.192 28.394,94.808 116.199,163.808 220.203,163.808 126.992,0 230,-103.008 230,-230" /></g></g><g
205
+ id="g82"><g
206
+ clip-path="url(#clipPath86)"
207
+ id="g84"><path
208
+ inkscape:connector-curvature="0"
209
+ id="path96"
210
+ style="fill:url(#linearGradient90);fill-opacity:1;fill-rule:nonzero;stroke:none"
211
+ d="M 1533,260 C 1533,116.398 1416.6,0 1273,0 c -111.6,0 -206.8,70.1914 -243.6,169 -10.6,28.398 -16.4,59.012 -16.4,91 0,143.59 116.4,260 260,260 55.6,0 107.4,-17.602 149.6,-47.398 66.8,-47 110.4,-124.59 110.4,-212.602" /></g></g><g
212
+ id="g98"><g
213
+ clip-path="url(#clipPath102)"
214
+ id="g100"><g
215
+ clip-path="url(#clipPath108)"
216
+ id="g106"><path
217
+ inkscape:connector-curvature="0"
218
+ id="path118"
219
+ style="fill:url(#linearGradient112);fill-opacity:1;fill-rule:nonzero;stroke:none"
220
+ d="m 1261,1212 0,1 -15,0 0,1 -6,0 0,1 -7,0 0,1 -6,0 0,1 -4,0 0,1 -4,0 0,1 -4,0 0,1 -4,0 0,1 -4,0 0,1 -4,0 0,1 -2,0 0,1 -3,0 0,1 -3,0 0,1 -3,0 0,1 -2,0 0,1 -3,0 0,1 -3,0 0,1 -2,0 0,1 -2,0 0,1 -2,0 0,1 -2,0 0,1 -2,0 0,1 -2,0 0,1 -3,0 0,1 -2,0 0,1 -2,0 0,1 -2,0 0,1 -1,0 0,1 -2,0 0,1 -2,0 0,1 -1,0 0,1 -2,0 0,1 -2,0 0,1 -1,0 0,1 -2,0 0,1 -2,0 0,1 -1,0 0,1 -2,0 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -2,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,1 -1,0 0,1 -1,0 0,2 -1,0 0,1 -1,0 0,2 -1,0 0,2 -1,0 0,1 -1,0 0,2 -1,0 0,2 -1,0 0,1 -1,0 0,2 -1,0 0,2 -1,0 0,1 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,2 -1,0 0,3 -1,0 0,2 -1,0 0,3 -1,0 0,3 -1,0 0,3 -1,0 0,2 -1,0 0,3 -1,0 0,3 -1,0 0,3 -1,0 0,4 -1,0 0,4 -1,0 0,4 -1,0 0,3 -1,0 0,4 -1,0 0,6 -1,0 0,7 -1,0 0,6 -1,0 0,9 -1,0 0,41 1,0 0,9 1,0 0,6 1,0 0,7 1,0 0,5 1,0 0,4 1,0 0,4 1,0 0,4 1,0 0,4 1,0 0,4 1,0 0,3 1,0 0,3 1,0 0,3 1,0 0,2 1,0 0,3 1,0 0,3 1,0 0,3 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,3 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,1 1,0 0,2 1,0 0,2 1,0 0,1 1,0 0,2 1,0 0,2 1,0 0,1 1,0 0,2 1,0 0,2 1,0 0,2 1,0 0,1 1,0 0,1 1,0 0,2 1,0 0,1 1,0 0,1 1,0 0,2 1,0 0,1 1,0 0,1 1,0 0,2 1,0 0,1 1,0 0,2 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,2 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,2 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 1,0 0,1 2,0 0,1 2,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 2,0 0,1 2,0 0,1 1,0 0,1 2,0 0,1 1,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 2,0 0,1 3,0 0,1 2,0 0,1 3,0 0,1 3,0 0,1 2,0 0,1 3,0 0,1 2,0 0,1 3,0 0,1 4,0 0,1 3,0 0,1 4,0 0,1 4,0 0,1 3,0 0,1 5,0 0,1 5,0 0,1 6,0 0,1 6,0 0,1 9,0 0,1 54,0 0,-1 6,0 0,-1 7,0 0,-1 6,0 0,-1 5,0 0,-1 4,0 0,-1 4,0 0,-1 3,0 0,-1 4,0 0,-1 4,0 0,-1 3,0 0,-1 2,0 0,-1 3,0 0,-1 3,0 0,-1 3,0 0,-1 2,0 0,-1 3,0 0,-1 2,0 0,-1 2,0 0,-1 2,0 0,-1 3,0 0,-1 2,0 0,-1 2,0 0,-1 2,0 0,-1 2,0 0,-1 2,0 0,-1 2,0 0,-1 2,0 0,-1 1,0 0,-1 2,0 0,-1 2,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 2,0 0,-1 2,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-2 1,0 0,-2 1,0 0,-1 1,0 0,-2 1,0 0,-1 1,0 0,-2 1,0 0,-2 1,0 0,-1 1,0 0,-2 1,0 0,-2 1,0 0,-2 1,0 0,-2 1,0 0,-2 1,0 0,-2 1,0 0,-2 1,0 0,-3 1,0 0,-2 1,0 0,-2 1,0 0,-2 1,0 0,-3 1,0 0,-2 1,0 0,-3 1,0 0,-3 1,0 0,-3 1,0 0,-2 1,0 0,-3 1,0 0,-4 1,0 0,-4 1,0 0,-3 1,0 0,-4 1,0 0,-4 1,0 0,-5 1,0 0,-6 1,0 0,-7 1,0 0,-6 1,0 0,-17 1,0 0,-14 -1,0 0,-13 -1,0 0,-14 -1,0 0,-5 -1,0 0,-4 -1,0 0,-5 -1,0 0,-4 -1,0 0,-5 -1,0 0,-4 -1,0 0,-5 -1,0 0,-3 -1,0 0,-3 -1,0 0,-3 -1,0 0,-3 -1,0 0,-3 -1,0 0,-3 -1,0 0,-3 -1,0 0,-2 -1,0 0,-3 -1,0 0,-2 -1,0 0,-3 -1,0 0,-2 -1,0 0,-2 -1,0 0,-2 -1,0 0,-3 -1,0 0,-2 -1,0 0,-2 -1,0 0,-2 -1,0 0,-1 -1,0 0,-2 -1,0 0,-2 -1,0 0,-2 -1,0 0,-2 -1,0 0,-2 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-2 -1,0 0,-2 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-2 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -2,0 0,-1 -1,0 0,-1 -2,0 0,-1 -2,0 0,-1 -2,0 0,-1 -1,0 0,-1 -2,0 0,-1 -2,0 0,-1 -1,0 0,-1 -2,0 0,-1 -2,0 0,-1 -2,0 0,-1 -2,0 0,-1 -3,0 0,-1 -2,0 0,-1 -2,0 0,-1 -2,0 0,-1 -2,0 0,-1 -3,0 0,-1 -2,0 0,-1 -3,0 0,-1 -2,0 0,-1 -3,0 0,-1 -3,0 0,-1 -3,0 0,-1 -3,0 0,-1 -3,0 0,-1 -4,0 0,-1 -3,0 0,-1 -4,0 0,-1 -5,0 0,-1 -4,0 0,-1 -5,0 0,-1 -7,0 0,-1 -8,0 0,-1 -11,0 0,-1" /></g></g></g><g
221
+ id="g120"><g
222
+ clip-path="url(#clipPath124)"
223
+ id="g122"><path
224
+ inkscape:connector-curvature="0"
225
+ id="path134"
226
+ style="fill:url(#linearGradient128);fill-opacity:1;fill-rule:nonzero;stroke:none"
227
+ d="m 1213.8,900.797 c 0,-176.793 -143.4,-319.996 -319.999,-319.996 -64.602,0 -124.797,19.199 -175.196,52.211 C 631.395,690 573.801,788.59 573.801,900.797 c 0,162.793 121.394,296.993 278.601,317.403 13.594,1.6 27.403,2.6 41.399,2.6 176.599,0 319.999,-143.21 319.999,-320.003" /></g></g><path
228
+ inkscape:connector-curvature="0"
229
+ id="path136"
230
+ style="fill:#393637;fill-opacity:1;fill-rule:nonzero;stroke:none"
231
+ d="m 1261.88,1327.09 -146.4,-195.61 c -28.8,27.82 -63,50.22 -100.8,65.61 l 151.2,201.99 c 19.79,26.4 57.4,32.01 83.8,12.01 26.6,-19.8 32,-57.4 12.2,-84" /><path
232
+ inkscape:connector-curvature="0"
233
+ id="path138"
234
+ style="fill:#393637;fill-opacity:1;fill-rule:nonzero;stroke:none"
235
+ d="m 1203.28,510.289 c -39.61,-11 -75.4,-31.211 -105,-58.008 l -127.401,225.41 c -16.406,28.789 -6.199,65.395 22.598,81.797 29.003,16.192 65.593,6.192 81.793,-22.793 l 128.01,-226.406" /><path
236
+ inkscape:connector-curvature="0"
237
+ id="path140"
238
+ style="fill:#393637;fill-opacity:1;fill-rule:nonzero;stroke:none"
239
+ d="m 800.879,594.488 -90,-200.609 c -10,-22.18 -32,-35.391 -54.805,-35.391 -8.191,0 -16.601,1.614 -24.597,5.203 -30.2,13.59 -43.594,49.2 -30.2,79.391 l 93.196,207.406 c 31.203,-25 67.207,-44.199 106.406,-56" /><path
240
+ inkscape:connector-curvature="0"
241
+ id="path142"
242
+ style="fill:#393637;fill-opacity:1;fill-rule:nonzero;stroke:none"
243
+ d="m 656.875,1115.89 c -26.797,-29.6 -48.203,-64.41 -62.598,-102.61 L 388.074,1139.3 c 29.199,27.59 51.203,62.79 62.805,102.4 l 205.996,-125.81" /><g
244
+ id="text3470"
245
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1095.18640137px;line-height:125%;font-family:'Crimson Text';-inkscape-font-specification:'Crimson Text';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
246
+ transform="scale(1.0197408,-0.98064134)"><path
247
+ id="path3394"
248
+ d="m 2396.222,-959.04907 q 0,-68.44913 -45.9893,-116.57743 -45.9893,-49.1979 -144.3849,-49.1979 -23.5294,0 -77.0053,4.2781 -4.2781,12.8342 -4.2781,35.2941 l 0,156.14964 q 0,81.28336 17.1123,95.1871 16.0428,14.97325 57.754,14.97325 26.7379,0 52.4064,-4.27807 26.7379,-4.27808 63.1015,-16.04277 36.3636,-12.83422 58.8235,-42.78072 22.4599,-31.01602 22.4599,-77.0053 z m -364.7056,35.2941 0,-404.27783 q 0,-63.1015 -7.4867,-91.9785 -3.2085,-8.5562 -32.0855,-16.0428 -27.8075,-7.4866 -41.7112,-7.4866 -4.2781,0 -4.2781,-12.8342 0,-13.9038 4.2781,-18.1818 55.6149,2.139 127.2726,2.139 54.5454,0 88.77,0 35.2941,-1.0695 62.0321,-1.0695 27.8074,0 56.6844,5.3476 28.877,4.2781 58.8235,17.1123 31.016,12.8342 54.5454,32.0855 23.5294,19.2513 38.5027,51.3369 14.9732,31.016 14.9732,69.5186 0,38.5027 -24.5989,71.6577 -24.5989,33.1551 -45.9893,45.9893 -20.3208,12.8342 -35.2941,18.1818 -8.5561,3.2086 -5.3476,6.4171 41.7112,7.4867 99.4652,60.9626 57.754,52.4063 57.754,124.06404 0,91.97854 -74.8663,146.52396 -73.7967,53.4759 -196.7913,53.4759 l -146.5239,0 -129.4117,3.20855 q -3.2086,-3.20855 -3.2086,-17.11229 0,-13.90373 3.2086,-13.90373 13.9037,0 40.6417,-7.48663 27.8074,-7.48662 33.155,-17.11228 7.4867,-12.83422 7.4867,-100.53469 z m 223.5292,-249.19773 q 43.8502,-4.278 72.7272,-29.9465 29.9465,-26.7379 29.9465,-70.5881 0,-73.7968 -37.4331,-114.4385 -36.3636,-41.7112 -109.0908,-41.7112 -49.1979,0 -75.9358,7.4867 -6.4171,1.0695 -6.4171,9.6256 l -4.2781,108.0213 0,127.2727 q 0,7.4866 70.5882,7.4866 34.2246,0 59.893,-3.2086 z"
249
+ inkscape:connector-curvature="0" /><path
250
+ id="path3396"
251
+ d="m 2646.4892,-1366.5354 q -14.9732,-16.0428 -14.9732,-38.5027 0,-22.4598 14.9732,-37.4331 16.0428,-16.0428 38.5027,-16.0428 22.4598,0 37.4331,16.0428 16.0428,14.9733 16.0428,37.4331 0,22.4599 -16.0428,38.5027 -14.9733,14.9732 -37.4331,14.9732 -22.4599,0 -38.5027,-14.9732 z m 87.7005,451.33657 q 0,62.03204 8.5561,95.1871 2.1391,7.48663 27.8075,14.97325 25.6684,6.41711 36.3636,6.41711 3.2086,0 4.2781,12.83421 1.0695,12.83422 -1.0695,18.18181 -106.9518,-5.34759 -114.4385,-5.34759 -7.4866,0 -116.5774,5.34759 -4.2781,-4.27807 -4.2781,-17.11229 0,-13.90373 4.2781,-13.90373 12.8342,0 37.4331,-6.41711 25.6684,-7.48662 27.8075,-14.97325 7.4866,-31.01602 7.4866,-74.86626 l 0,-202.13891 q 0,-41.7112 -14.9732,-57.754 -10.6952,-12.8342 -26.738,-17.1122 -14.9732,-5.3476 -25.6684,-5.3476 -9.6257,0 -9.6257,-2.1391 0,-25.6684 6.4171,-26.7379 113.3689,-17.1123 147.5935,-27.8075 l 2.139,-1.0695 q 2.1391,0 3.2086,0 4.2781,0 5.3476,9.6257 1.0695,8.5561 0,12.8342 -5.3476,42.7807 -5.3476,77.0053 l 0,220.32067 z"
252
+ inkscape:connector-curvature="0" /><path
253
+ id="path3398"
254
+ d="m 3089.2697,-1196.4821 q -56.6845,0 -93.0481,52.4064 -35.2941,51.3369 -35.2941,126.2031 0,87.70052 44.9198,150.80208 45.9893,62.03204 106.9518,62.03204 56.6844,0 93.0481,-53.4759 36.3636,-53.4759 36.3636,-128.34215 0,-86.63097 -45.9893,-147.59347 -45.9893,-62.0321 -106.9518,-62.0321 z m 11.7647,-41.7112 q 96.2566,0 164.7058,69.5187 68.4491,69.5187 68.4491,166.8448 0,98.39567 -67.3796,168.98385 -66.3101,69.51867 -163.6363,69.51867 -97.3261,0 -165.7753,-69.51867 -68.4491,-70.58818 -68.4491,-168.98385 0,-99.4652 66.3101,-167.9143 66.3101,-68.4492 165.7753,-68.4492 z"
255
+ inkscape:connector-curvature="0" /><path
256
+ id="path3400"
257
+ d="m 3780.1782,-679.90488 q 0,-44.91975 -43.8502,-60.96252 -43.8502,-14.97325 -174.3314,-14.97325 -2.1391,0 -6.4171,2.13903 -1.0695,1.06952 -9.6257,4.27808 -8.5561,4.27807 -10.6952,5.34759 -2.139,1.06951 -9.6256,5.34759 -7.4867,5.34759 -10.6952,6.4171 -2.139,2.13904 -8.5562,6.41711 -6.4171,5.34759 -8.5561,8.55614 -2.139,4.27808 -6.4171,9.62567 -4.2781,5.34759 -6.4171,10.69518 -1.0695,5.34759 -3.2086,11.76469 -1.0695,7.48663 -1.0695,14.97326 0,45.98927 47.0588,73.79674 48.1283,28.87698 105.8823,28.87698 64.1711,0 104.8127,-34.22457 41.7112,-34.22458 41.7112,-78.07482 z m -273.7966,-407.48632 q 0,49.1978 29.9465,83.4224 31.0161,34.22455 71.6578,34.22455 41.7112,0 68.4491,-32.08555 27.8075,-32.0855 27.8075,-77.0053 0,-49.1978 -31.0161,-83.4224 -29.9465,-34.2246 -70.5881,-34.2246 -41.7112,0 -69.5187,32.0856 -26.738,32.0855 -26.738,77.0053 z m 100.5347,-145.4545 q 39.5722,0 90.9091,13.9038 51.3368,13.9037 84.4919,13.9037 l 62.032,0 q 6.4171,2.139 6.4171,26.7379 0,14.9733 -6.4171,14.9733 l -75.9358,0 q -4.278,0 -4.278,3.2086 l 10.6952,25.6684 q 11.7647,25.6684 11.7647,51.3368 0,57.754 -51.3369,103.74329 -51.3369,45.98927 -126.2031,45.98927 -34.2246,0 -59.893,-4.27807 -13.9038,7.48663 -29.9465,26.73795 -14.9733,19.25133 -14.9733,34.22458 0,14.97325 8.5562,24.59891 8.5561,8.55614 24.5989,12.83422 16.0427,3.20855 31.016,5.34759 14.9732,1.06951 35.2941,1.06951 5.3476,0 7.4866,0 132.6202,2.13904 186.0961,27.80747 53.4759,24.59891 53.4759,74.86626 0,82.35288 -69.5186,141.17637 -69.5187,59.89301 -178.6095,60.96253 -75.9358,1.06951 -136.8983,-28.87699 -59.893,-29.9465 -59.893,-89.83951 0,-66.31011 104.8127,-113.3689 -28.877,-4.27808 -53.4759,-26.73795 -24.5989,-22.45988 -24.5989,-54.54542 0,-27.80747 23.5294,-57.75397 24.5989,-29.9465 54.5454,-49.19783 -32.0855,-11.76469 -59.893,-50.26734 -26.7379,-39.57217 -26.7379,-84.49197 0,-63.1015 52.4063,-105.8822 53.4759,-43.8503 130.4812,-43.8503 z"
258
+ inkscape:connector-curvature="0" /><path
259
+ id="path3402"
260
+ d="m 4195.1512,-1238.1933 q 63.1016,0 83.4224,31.0161 0,37.4331 -11.7647,54.5454 -11.7647,17.1123 -28.8769,17.1123 -19.2514,0 -35.2941,-18.1818 -16.0428,-18.1818 -43.8503,-18.1818 -33.155,0 -57.7539,31.016 -24.599,31.016 -24.599,65.2406 l 0,160.42767 q 0,62.03204 8.5562,95.1871 2.139,7.48663 27.8075,14.97325 26.7379,6.41711 37.4331,6.41711 3.2085,0 4.2781,12.83421 1.0695,12.83422 -1.0696,18.18181 -106.9518,-5.34759 -115.5079,-5.34759 -6.4171,0 -116.5775,5.34759 -4.278,-4.27807 -4.278,-17.11229 0,-13.90373 4.278,-13.90373 12.8343,0 37.4332,-6.41711 25.6684,-7.48662 27.8074,-14.97325 7.4867,-31.01602 7.4867,-74.86626 l 0,-202.13891 q 0,-41.7112 -14.9733,-57.754 -10.6952,-12.8342 -26.7379,-17.1122 -14.9733,-5.3476 -25.6685,-5.3476 -9.6256,0 -9.6256,-2.1391 0,-25.6684 6.4171,-26.7379 113.3689,-17.1123 147.5935,-27.8075 1.0695,0 3.2085,0 2.139,-1.0695 2.139,-1.0695 4.2781,0 5.3476,9.6257 1.0695,8.5561 0,12.8342 l -6.4171,53.4759 q 19.2513,-28.877 52.4064,-53.4759 34.2246,-25.6685 67.3796,-25.6685 z"
261
+ inkscape:connector-curvature="0" /><path
262
+ id="path3404"
263
+ d="m 4394.0816,-1366.5354 q -14.9732,-16.0428 -14.9732,-38.5027 0,-22.4598 14.9732,-37.4331 16.0428,-16.0428 38.5027,-16.0428 22.4598,0 37.4331,16.0428 16.0428,14.9733 16.0428,37.4331 0,22.4599 -16.0428,38.5027 -14.9733,14.9732 -37.4331,14.9732 -22.4599,0 -38.5027,-14.9732 z m 87.7005,451.33657 q 0,62.03204 8.5561,95.1871 2.1391,7.48663 27.8075,14.97325 25.6684,6.41711 36.3636,6.41711 3.2086,0 4.2781,12.83421 1.0695,12.83422 -1.0695,18.18181 -106.9518,-5.34759 -114.4385,-5.34759 -7.4866,0 -116.5774,5.34759 -4.2781,-4.27807 -4.2781,-17.11229 0,-13.90373 4.2781,-13.90373 12.8342,0 37.4331,-6.41711 25.6684,-7.48662 27.8075,-14.97325 7.4866,-31.01602 7.4866,-74.86626 l 0,-202.13891 q 0,-41.7112 -14.9732,-57.754 -10.6952,-12.8342 -26.738,-17.1122 -14.9732,-5.3476 -25.6684,-5.3476 -9.6257,0 -9.6257,-2.1391 0,-25.6684 6.4171,-26.7379 113.3689,-17.1123 147.5935,-27.8075 l 2.139,-1.0695 q 2.1391,0 3.2086,0 4.2781,0 5.3476,9.6257 1.0695,8.5561 0,12.8342 -5.3476,42.7807 -5.3476,77.0053 l 0,220.32067 z"
264
+ inkscape:connector-curvature="0" /><path
265
+ id="path3406"
266
+ d="m 4842.2096,-1196.4821 q -62.0321,0 -97.3262,55.615 -35.2941,55.6149 -35.2941,129.4117 0,78.07476 41.7112,135.82874 41.7112,56.68445 115.508,56.68445 36.3636,0 56.6844,-16.04277 20.3209,-17.11229 20.3209,-44.91976 l 0,-254.54526 q 0,-22.4599 -24.5989,-41.7112 -23.5294,-20.3209 -77.0053,-20.3209 z m 13.9037,-44.9197 q 45.9893,0 80.2139,18.1818 7.4866,0 7.4866,-19.2513 l 0,-115.508 q 0,-36.3636 -6.4171,-68.4491 -5.3476,-17.1123 -54.5454,-17.1123 l -9.6257,0 q -6.4171,0 -6.4171,-11.7647 0,-17.1123 6.4171,-17.1123 32.0855,-3.2085 58.8235,-8.5561 27.8074,-5.3476 42.7807,-10.6952 16.0428,-5.3476 26.738,-9.6257 10.6951,-5.3476 16.0427,-8.5561 l 4.2781,-3.2086 2.139,0 q 4.2781,0 8.5562,6.4171 4.278,5.3476 5.3476,10.6952 -11.7647,34.2246 -11.7647,93.0481 l 0,481.28306 q 0,51.33686 6.4171,81.28337 2.139,7.48662 11.7647,11.7647 9.6256,4.27807 19.2513,5.34759 10.6952,1.06951 20.3208,1.06951 l 9.6257,1.06952 q 3.2085,1.06952 3.2085,12.83422 0,16.04277 -6.4171,16.04277 -16.0427,1.06951 -36.3636,4.27807 -19.2513,3.20855 -37.4331,7.48662 -17.1123,3.20856 -32.0855,7.48663 -14.9733,3.20855 -24.599,6.41711 l -9.6256,2.13903 q -6.4171,0 -6.4171,-18.1818 l 0,-12.83422 q 0,-6.4171 -4.2781,-4.27807 -59.893,33.15506 -113.3689,33.15506 -88.77,0 -148.663,-63.10156 -59.893,-63.10156 -59.893,-150.80204 0,-103.74327 72.7272,-181.81807 73.7968,-79.1443 165.7753,-79.1443 z"
267
+ inkscape:connector-curvature="0" /><path
268
+ id="path3408"
269
+ d="m 5313.8669,-1238.1933 q 23.5294,0 58.8235,6.4172 36.3636,5.3475 50.2674,7.4866 10.6951,49.1978 12.8342,109.0908 0,5.3476 -13.9038,5.3476 -14.9732,0 -16.0427,-7.4866 -5.3476,-29.9465 -31.0161,-56.6845 -24.5989,-26.7379 -56.6844,-26.7379 -77.0053,0 -77.0053,63.1015 0,16.0428 4.2781,28.877 4.278,11.7647 16.0427,23.5294 12.8343,10.6952 19.2514,16.0428 6.4171,4.2781 27.8074,17.1123 22.4599,11.7647 27.8075,14.9732 4.2781,2.1391 24.5989,14.9733 21.3904,11.7647 29.9465,17.1123 8.5562,5.34755 24.5989,18.18177 17.1123,12.83421 24.5989,23.52939 7.4867,9.62566 13.9038,25.66843 7.4866,14.97325 7.4866,31.01602 0,63.10156 -49.1978,105.88228 -49.1979,41.7112 -115.508,41.7112 -22.4598,0 -41.7112,-3.20855 -18.1818,-2.13904 -43.8502,-8.55614 -25.6684,-6.41711 -39.5722,-8.55615 -6.4171,-17.11229 -12.8342,-53.4759 -5.3476,-36.36361 -5.3476,-57.75397 8.5562,-6.4171 12.8342,-6.4171 16.0428,0 17.1123,6.4171 6.4171,32.08554 39.5722,63.10156 34.2246,29.94651 73.7967,29.94651 34.2246,0 55.615,-18.18181 22.4598,-19.25132 22.4598,-54.54542 0,-18.1818 -7.4866,-33.15505 -6.4171,-16.04277 -22.4599,-27.80747 -14.9732,-12.83421 -28.8769,-20.32084 -12.8343,-8.55614 -37.4332,-21.39036 -24.5989,-12.83422 -36.3636,-20.32084 -83.4224,-48.12836 -83.4224,-114.43846 0,-57.7539 45.9893,-94.1175 47.0588,-36.3637 109.0908,-36.3637 z"
270
+ inkscape:connector-curvature="0" /></g></g></g></g></svg>
... ...
\ No newline at end of file
newheader.less
... ...
@@ -0,0 +1,588 @@
1
+
2
+@import "bs3grid.less";
3
+
4
+@screen-tiny: 100px;
5
+@screen-phone-min: 479px; // max 479
6
+@screen-phone: @screen-xs; // 480 and up
7
+@screen-smalltablet: 600px; // 600 and up
8
+@screen-tablet: @screen-sm; // 768 and up
9
+@screen-laptop: @screen-md; // 992 and up
10
+@screen-desktop: @screen-lg; // 1200 and up
11
+
12
+// Colors
13
+@white: #fff;
14
+@black: #000;
15
+@red: #9e1d2a;
16
+@blue: #4c84c7;
17
+@blue-dark: darken(@blue, 10%);
18
+@navy-blue: #0e2946;
19
+
20
+
21
+@green: #256D2A;
22
+@green-dark: darken(@green, 10%);
23
+
24
+#wiki-wrapper {
25
+ max-width: 1220px;
26
+ padding-left: 20px;
27
+ padding-right: 20px;
28
+}
29
+
30
+
31
+// This section was copied from mastersheet.less
32
+#top {
33
+ font-size: 14px;
34
+ font-size: 1.5rem;
35
+ line-height: 1.643;
36
+
37
+
38
+ color: #666;
39
+ padding: 20px 0;
40
+ text-decoration: none;
41
+ border-bottom: lightgray solid;
42
+ border-width: 1px;
43
+
44
+ .container {
45
+ position: relative;
46
+ min-height: 58px;
47
+ a {
48
+ text-decoration:none;
49
+ }
50
+ width: 1480px;
51
+
52
+ }
53
+
54
+ .logo {
55
+ float: left;
56
+ padding-left: 140px; //Logo position
57
+ display: none;
58
+
59
+ a {
60
+ //background: url(../images/logo.png) no-repeat top left;
61
+ width: 179px;
62
+ height: 58px;
63
+ text-indent: -999999px;
64
+ display: block;
65
+ }
66
+
67
+ @media (min-width: @screen-tablet) {
68
+ display: block;
69
+ }
70
+ }
71
+
72
+ .main-navigation {
73
+ display: none;
74
+ // fix for navigation bug #166
75
+ position: relative;
76
+ z-index: 200;
77
+
78
+ ul {
79
+ list-style-type: none;
80
+ > li {
81
+ > a {
82
+ font-weight:bold;
83
+ padding: 0 25px 0 15px;
84
+
85
+ span {
86
+ display: none;
87
+ }
88
+ }
89
+ }
90
+ }
91
+
92
+ @media (min-width: @screen-phone) {
93
+ display: block;
94
+ float: left;
95
+
96
+ ul {
97
+ > li {
98
+ float: left;
99
+ position: relative;
100
+
101
+ > a {
102
+ height: 58px;
103
+ line-height: 58px;
104
+ float: left;
105
+
106
+
107
+ color: lighten(@black, 10%);
108
+ position: relative;
109
+ border: 1px solid transparent;
110
+ border-bottom: 0;
111
+ z-index: 101;
112
+ padding: 0 20px 0 10px;
113
+
114
+ &:before {
115
+ content: "";
116
+ width: 0;
117
+ height: 0;
118
+ border-style: solid;
119
+ border-width: 6px 4.5px 0 4.5px;
120
+ border-color: lighten(@black, 70%) transparent transparent transparent;
121
+ position: absolute;
122
+ top: 50%;
123
+ right: 5px;
124
+ margin-top: -3px;
125
+ }
126
+ }
127
+
128
+ &.active {
129
+ > a {
130
+ background: @white;
131
+ border-top: 1px solid darken(@white, 10%);
132
+ border-left: 1px solid darken(@white, 10%);
133
+ border-right: 1px solid darken(@white, 10%);
134
+ }
135
+
136
+ ol {
137
+ display: block;
138
+ list-style-type: none;
139
+ }
140
+ }
141
+
142
+ // the last but one li and ol in it... in css this is the third one
143
+ &:nth-child(3) {
144
+ ol {
145
+ left: auto;
146
+ right: 0;
147
+ }
148
+ }
149
+ // the last li and ol in it
150
+ &:last-child {
151
+ ol {
152
+ left: auto;
153
+ right: 0;
154
+ }
155
+ }
156
+
157
+ ol {
158
+ display: none;
159
+ position: absolute;
160
+ top: 57px;
161
+ width: 290px;
162
+ z-index: 100;
163
+ background: @white;
164
+ border: 1px solid darken(@white, 10%);
165
+
166
+ > li {
167
+ a {
168
+ padding: 10px 20px;
169
+ display: block;
170
+ border-top: 1px solid darken(@white, 10%);
171
+ color: lighten(@black, 20%);
172
+
173
+
174
+ &:hover {
175
+ background: @green; // New color for BioGrid header
176
+ color: @white;
177
+ }
178
+ }
179
+
180
+ &:first-child {
181
+ a {
182
+ border-top: 0;
183
+ }
184
+ }
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+ @media (min-width: @screen-smalltablet) {
191
+ ul > li {
192
+ > a {
193
+
194
+ padding: 0 25px 0 15px;
195
+
196
+ &:before {
197
+ right: 10px;
198
+ }
199
+ }
200
+ ol {
201
+ > li {
202
+ a {
203
+ padding: 15px 25px;
204
+
205
+ }
206
+ }
207
+ }
208
+ }
209
+ }
210
+ @media (min-width: @screen-tablet) {
211
+ float: right;
212
+
213
+ ul > li {
214
+ &:nth-child(3) {
215
+ ol {
216
+ left: 0;
217
+ right: auto;
218
+ }
219
+ }
220
+ }
221
+ }
222
+
223
+ @media (min-width: @screen-laptop) {
224
+ margin-right: 150px;
225
+ }
226
+
227
+ @media (min-width: @screen-desktop) {
228
+ ul > li > a {
229
+ padding: 0 35px 0 25px;
230
+ span {
231
+ display: inline;
232
+ }
233
+ }
234
+ }
235
+ }
236
+
237
+ .mobile-navigation {
238
+ width: 60px;
239
+ height: 41px;
240
+ display: block;
241
+ padding: 10px;
242
+ position: relative;
243
+ top: 10px;
244
+ right: 10px;
245
+
246
+ span {
247
+ display: block;
248
+ background: lighten(@black, 20%);
249
+ height: 5px;
250
+ position: relative;
251
+ margin-top: 8px;
252
+
253
+ &:before, &:after {
254
+ content: "";
255
+ display: block;
256
+ position: absolute;
257
+ left: 0;
258
+ right: 0;
259
+ height: 5px;
260
+ background: lighten(@black, 20%);
261
+ }
262
+
263
+ &:before {
264
+ top: -8px;
265
+ }
266
+
267
+ &:after {
268
+ top: 8px;
269
+ }
270
+ }
271
+
272
+ @media (min-width: @screen-phone) {
273
+ display: none;
274
+ }
275
+ }
276
+
277
+ .addon {
278
+ display: none;
279
+
280
+ @media (min-width: @screen-laptop) {
281
+ display: block;
282
+ position: absolute;
283
+ top: 5px;
284
+ right: 10px;
285
+ width: 130px;
286
+ }
287
+ }
288
+}
289
+
290
+
291
+// Footer: This section was copied from mastersheet.less
292
+#footer_wiki {
293
+ background: lighten(@black, 20%);
294
+ padding-top: 30px;
295
+
296
+ a {
297
+ color: lighten(@black, 60%);
298
+
299
+ &:hover {
300
+ color: lighten(@black, 70%);
301
+ }
302
+ }
303
+
304
+ header {
305
+ padding: 30px 0 20px 0;
306
+
307
+ h4 {
308
+ color: @white;
309
+
310
+
311
+ }
312
+ }
313
+
314
+ .about {
315
+ display: none;
316
+
317
+ @media (min-width: @screen-tablet) {
318
+ display: block;
319
+ border-bottom: 1px solid lighten(@black, 30%);
320
+
321
+ ul {
322
+ border-bottom: 1px solid lighten(@black, 19%);
323
+ padding-bottom: 30px;
324
+ text-align: center;
325
+ .clearfix;
326
+
327
+ li {
328
+ padding-left: 90px;
329
+ height: 70px;
330
+ line-height: 70px;
331
+ background-position: 20px center;
332
+ background-repeat: no-repeat;
333
+ border-left: 1px solid lighten(@black, 30%);
334
+ display: inline-block;
335
+ text-align: left;
336
+ margin-left: 20px;
337
+ white-space: nowrap;
338
+
339
+ &.institutions {
340
+ background-image: url(../images/icon-institutions.png);
341
+ }
342
+
343
+ &.countries {
344
+ background-image: url(../images/icon-countries.png);
345
+ }
346
+
347
+ &.software {
348
+ background-image: url(../images/icon-software-packages.png);
349
+ }
350
+
351
+ &:first-child {
352
+ border-left: 0;
353
+ margin-left: 0;
354
+ }
355
+
356
+ p {
357
+ color: @white;
358
+
359
+ span {
360
+ }
361
+ }
362
+ }
363
+ }
364
+ }
365
+
366
+ @media (min-width: @screen-laptop) {
367
+ ul {
368
+ li {
369
+ width: 33%;
370
+ margin-left: 0;
371
+ padding-left: 120px;
372
+ background-position: 40px center;
373
+ }
374
+ }
375
+ }
376
+
377
+ @media (min-width: @screen-desktop) {
378
+ ul {
379
+ li {
380
+ border-left: 0;
381
+ }
382
+ }
383
+ }
384
+ }
385
+
386
+ .pages {
387
+ padding: 0 40px;
388
+
389
+ ul {
390
+ > li {
391
+ ol {
392
+ border-bottom: 1px solid lighten(@black, 25%);
393
+ > li {
394
+ border-top: 1px solid lighten(@black, 25%);
395
+ padding: 5px 0 5px 16px;
396
+ position: relative;
397
+
398
+ &:before {
399
+ content: "";
400
+ width: 0;
401
+ height: 0;
402
+ border-style: solid;
403
+ border-width: 3px 0 3px 5px;
404
+ border-color: transparent transparent transparent lighten(@black, 40%);
405
+ position: absolute;
406
+ top: 14px;
407
+ left: 2px;
408
+
409
+ }
410
+ }
411
+ }
412
+ }
413
+ }
414
+
415
+ @media (min-width: @screen-phone) {
416
+ padding: 0 20px;
417
+
418
+ ul {
419
+ > li {
420
+ float: left;
421
+ width: 45%;
422
+
423
+ &:nth-child(2n) {
424
+ float: right;
425
+ }
426
+ }
427
+ }
428
+ }
429
+
430
+ @media (min-width: @screen-smalltablet) {
431
+ padding: 0 50px;
432
+ ul {
433
+ > li {
434
+ width: 40%;
435
+ }
436
+ }
437
+ }
438
+
439
+ @media (min-width: @screen-tablet) {
440
+ padding: 0;
441
+
442
+ ul {
443
+ > li {
444
+ width: 33%;
445
+ padding: 0 20px;
446
+
447
+ &:nth-child(2n) {
448
+ float: left;
449
+ }
450
+ &:nth-child(3) {
451
+ &:after {
452
+ content: "";
453
+ clear: both;
454
+ }
455
+ }
456
+ &:nth-child(4) {
457
+ margin-left: 16.5%;
458
+ }
459
+ }
460
+ }
461
+ }
462
+
463
+ @media (min-width: @screen-laptop) {
464
+ ul {
465
+ > li {
466
+ width: 200px;
467
+ padding: 0;
468
+ float: none;
469
+ display: inline-block;
470
+ vertical-align: top;
471
+ margin: 0 15px;
472
+ text-align: left;
473
+
474
+ &:nth-child(3), &:nth-child(2n) {
475
+ float: none;
476
+ }
477
+
478
+ &:nth-child(4) {
479
+ margin: 0 15px;
480
+ clear: none;
481
+ }
482
+ }
483
+ }
484
+ }
485
+
486
+ @media (min-width: @screen-desktop) {
487
+ ul {
488
+ > li {
489
+ margin: 0 45px;
490
+
491
+ &:nth-child(4){
492
+ margin: 0 45px;
493
+ }
494
+ }
495
+ }
496
+ }
497
+ }
498
+
499
+ .anchors {
500
+ padding: 0 40px 40px 40px;
501
+
502
+ ul {
503
+ > li {
504
+ border-top: 1px solid lighten(@black, 25%);
505
+ padding: 5px 0 5px 20px;
506
+ position: relative;
507
+
508
+ &:before {
509
+ content: "";
510
+ width: 0;
511
+ height: 0;
512
+ border-style: solid;
513
+ border-width: 3px 0 3px 5px;
514
+ border-color: transparent transparent transparent lighten(@black, 40%);
515
+ position: absolute;
516
+ top: 14px;
517
+ left: 0;
518
+
519
+ @media (min-width: @screen-laptop) {
520
+ display: none;
521
+ }
522
+ }
523
+ }
524
+ }
525
+
526
+ @media (min-width: @screen-phone) {
527
+ float: left;
528
+ width: 45%;
529
+ padding: 0 0 30px 30px;
530
+ }
531
+
532
+ @media (min-width: @screen-smalltablet) {
533
+ padding: 0 50px 40px 50px;
534
+ width: 50%;
535
+ }
536
+
537
+ @media (min-width: @screen-tablet) {
538
+ width: 33%;
539
+ padding: 0 20px 40px 20px;
540
+ }
541
+
542
+ @media (min-width: @screen-laptop) {
543
+ float: none;
544
+ width: auto;
545
+ text-align: center;
546
+ padding: 0;
547
+ margin-top: 40px;
548
+ border-top: 1px solid lighten(@black, 19%);
549
+
550
+ header {
551
+ display: none;
552
+ }
553
+
554
+ ul {
555
+ border-top: 1px solid lighten(@black, 30%);
556
+ padding: 30px 0;
557
+
558
+ > li {
559
+ border-top: 0;
560
+ padding: 0 10px;
561
+ display: inline-block;
562
+ border-left: 1px solid lighten(@black, 60%);
563
+ height: 12px;
564
+ line-height: 12px;
565
+
566
+ &:first-child {
567
+ border-left: 0;
568
+ padding-left: 0;
569
+ }
570
+
571
+ &:last-child {
572
+ padding-right: 0;
573
+ }
574
+ }
575
+ }
576
+ }
577
+ }
578
+
579
+ .copyrights {
580
+ background: lighten(@black, 10%);
581
+ padding: 30px 40px;
582
+ text-align: center;
583
+ color: lighten(@black, 60%);
584
+ @media (min-width: @screen-phone) {
585
+ padding: 30px 0;
586
+ }
587
+ }
588
+}
templates/layout.mustache
... ...
@@ -68,65 +68,48 @@
68 68
<header id="top">
69 69
70 70
<div class="container">
71
- <a href="https://sbgrid.org/"><div class="logo">
72
- <img src="https://sbgrid.org/static/images/logo.png" alt="https://sbgrid.org/">
73
- <!-- <a href="https://sbgrid.org/"><img src="https://sbgrid.org/static/images/logo.png"/></a> -->
71
+ <a href="https://biogrids.org/"><div class="logo">
72
+ <!-- <img src="https://biogrids.org/static/images/logo.png" alt="https://biogrids.sbgrid.org/"> -->
73
+ <img src="/images/logo.svg" alt="images/logo.png" style="width: 222px; height: 61px;">
74 74
</div></a>
75 75
<nav class="main-navigation">
76 76
<ul>
77
+
78
+ <!-- Links sbgrid.org must be changed to https://BIOGRIDS-DOMAIN.org/.../... when the page is published. -->
79
+
77 80
<li><a href="#"><span>Supported </span>Software</a>
78 81
<ol>
79
- <li><a href="https://sbgrid.org/software/">Supported
80
- Applications</a></li>
81
- <li><a href="https://sbgrid.org/newsletters/">Software
82
- Newsletter</a></li>
82
+ <li><a href="/software/">Supported Applications</a></li>
83
+ <li><a href="/newsletters/">Software Newsletter</a></li>
83 84
<!-- <li><a href="#">Webinars</a></li> -->
84
- <li><a href="https://sbgrid.org/software/tales/">Developer
85
- Tales</a></li>
86
- <li><a href="https://sbgrid.org/software/deploy-your-software/">Deploy Your
87
- Software</a></li>
88
- </ol></li>
89
- <li><a href="#"><span>Computing </span> Resources</a>
90
- <ol>
91
- <li><a href="https://sbgrid.org/computing/hardware-recommendations/">SBGrid In Your Lab</a></li>
92
- <li><a href="https://sbgrid.org/computing/portal/" title="Wide-Search Molecular Replacement">Molecular Replacement Portal</a></li>
93
- <li><a href="https://sbgrid.org/computing/portal/" title="Deformable Elastic Network">Low Resolution Refinement</a></li>
94
- <li><a href="https://data.sbgrid.org">SBGrid Data Bank</a></li>
95
- <li><a href="https://pymolwiki.org" title="The community-run support site for the PyMOL molecular viewer.">PyMOLWiki</a></li>
96
- <li><a href="https://www.youtube.com/user/SBGridTV">Software Webinars</a></li>
97
- <li><a href="https://sbgrid.org/computing/additional-resources/">Additional
98
- Resources</a></li>
99
- <li><a href="https://sbgrid.org/computing/resources-for-developers/">For
100
- Developers</a></li>
85
+ <li><a href="/software/tales/">Developer Tales</a></li>
86
+ <li><a href="/software/deploy-your-software/">Deploy Your Software</a></li>
101 87
</ol></li>
88
+
102 89
<li><a href="#"><span>Get </span> Help</a>
103 90
<ol>
104
- <li><a href="https://sbgrid.org/wiki/" title="SBGrid Software Collection Help">Support Wiki</a></li>
105
- <li><a href="https://sbgrid.org/corewiki/" title="SBGrid Core Support">Labs in Boston</a></li>
106
- <li><a href="https://sbgrid.org/help/?tab=bug">Report Software Bug</a></li>
107
- <li><a href="https://sbgrid.org/help/?tab=software">Request New Software</a></li>
108
- <li><a href="https://sbgrid.org/help/?tab=contact-us">Other Support</a></li>
109
- <li><a href="https://sbgrid.org/help/?tab=grant">Grant Support</a></li>
91
+ <li><a href="/wiki/" title="Biogrids Software Collection Help">Support Wiki</a></li>
92
+ <li><a href="/help/?tab=bug">Report Software Bug</a></li>
93
+ <li><a href="/help/?tab=software">Request New Software</a></li>
94
+ <li><a href="/help/?tab=contact-us">Other Support</a></li>
95
+ <li><a href="/help/?tab=grant">Grant Support</a></li>
110 96
</ol></li>
111
- <li><a href="#">About SBGrid</a>
97
+ <li><a href="#">About Biogrids</a>
112 98
<ol>
113
- <li><a href="https://sbgrid.org/about/what-we-do/">What We Do</a></li>
114
- <li><a href="https://sbgrid.org/members/">Members</a></li>
115
- <li><a href="https://sbgrid.org/about/publications/">Member
116
- Publications</a></li>
117
- <li><a href="https://sbgrid.org/members/tales/">Member
118
- Tales</a></li>
119
- <li><a href="https://sbgrid.org/about/staff/">Staff</a></li>
120
- <li><a href="https://sbgrid.org/about/history/">History</a></li>
121
- <li><a href="https://sbgrid.org/about/advisory/">Advisory
99
+ <li><a href="/about/what-we-do/">What We Do</a></li>
100
+ <li><a href="/members/">Members</a></li>
101
+ <li><a href="/about/staff/">Staff</a></li>
102
+ <li><a href="/about/history/">History</a></li>
103
+ <li><a href="/about/advisory/">Advisory
122 104
Board</a></li>
123
- <li><a href="https://sbgrid.org/about/contact/">Contact Us</a></li>
105
+ <li><a href="/about/contact/">Contact Us</a></li>
124 106
</ol></li>
125 107
</ul>
126 108
</nav>
127 109
128
- <a href="https://sbgrid.org/"><div class="logo mobile-navigation" >
129
- <img src="https://sbgrid.org/static/images/logo.png" alt="https://sbgrid.org/" style="padding: 0 0 0 0;" ></div>
110
+ <a href="https://biogrids.org/"><div class="logo mobile-navigation" >
111
+ <img src="/images/logo.svg" alt="images/logo.png" style="width: 222px; height: 61px;">
112
+ <!-- <img src="https://biogrids.org/static/images/logo.png" alt="https://biogrids.org/" style="padding: 0 0 0 0;" ></div> -->
130 113
</a>
131 114
132 115
</div>