vliz-be-theme 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +50 -0
  4. data/_config.yml +4 -0
  5. data/_data/articles.yml +43 -0
  6. data/_data/bg_with_block.yml +5 -0
  7. data/_data/carrousel.yml +28 -0
  8. data/_data/carrousel_two.yml +33 -0
  9. data/_data/main_banner.yml +24 -0
  10. data/_data/simple_questions.yml +16 -0
  11. data/_includes/banner/banner.html +50 -0
  12. data/_includes/banner/main.html +35 -0
  13. data/_includes/banner/topic.html +20 -0
  14. data/_includes/block_gallery_cards/card.html +36 -0
  15. data/_includes/block_gallery_cards/first_card.html +50 -0
  16. data/_includes/block_gallery_cards/main.html +40 -0
  17. data/_includes/carrousel_block/item.html +21 -0
  18. data/_includes/carrousel_block/main.html +22 -0
  19. data/_includes/carrousel_w_waves/item.html +27 -0
  20. data/_includes/carrousel_w_waves/main.html +39 -0
  21. data/_includes/footer/main.html +312 -0
  22. data/_includes/image_bg_white_card/main.html +26 -0
  23. data/_includes/image_w_descr_curly/main.html +48 -0
  24. data/_includes/light_bg_block/item.html +12 -0
  25. data/_includes/light_bg_block/main.html +19 -0
  26. data/_includes/mobile-overlay/main.html +419 -0
  27. data/_includes/navigation/main.html +515 -0
  28. data/_includes/navigation/search-overlay.html +49 -0
  29. data/_includes/no_bg_cards/item.html +24 -0
  30. data/_includes/no_bg_cards/main.html +21 -0
  31. data/_includes/no_bg_colored_blocks/item.html +19 -0
  32. data/_includes/no_bg_colored_blocks/main.html +34 -0
  33. data/_includes/simple_color_boxes/item.html +11 -0
  34. data/_includes/simple_color_boxes/main.html +29 -0
  35. data/_layouts/default.html +150 -0
  36. data/_layouts/page.html +5 -0
  37. data/_layouts/post.html +5 -0
  38. data/assets/core/misc/Vlaanderen_verbeelding werkt.png +0 -0
  39. data/assets/core/misc/bib_publications_bg.jpg +0 -0
  40. data/assets/core/misc/calendar.svg +1 -0
  41. data/assets/core/misc/check.svg +1 -0
  42. data/assets/core/misc/close.png +0 -0
  43. data/assets/core/misc/error.svg +1 -0
  44. data/assets/core/misc/gradient.png +0 -0
  45. data/assets/core/misc/loading-small.gif +0 -0
  46. data/assets/core/misc/move.svg +1 -0
  47. data/assets/core/misc/person.svg +1 -0
  48. data/assets/core/misc/privacyshield.png +0 -0
  49. data/assets/core/misc/share-Facebook.png +0 -0
  50. data/assets/core/misc/share-Fave.png +0 -0
  51. data/assets/core/misc/share-LinkedIn.png +0 -0
  52. data/assets/core/misc/share-Mailto.png +0 -0
  53. data/assets/core/misc/share-Print.png +0 -0
  54. data/assets/core/misc/share-RSS.png +0 -0
  55. data/assets/core/misc/share-Twitter.png +0 -0
  56. data/assets/core/misc/swoosh.svg +3 -0
  57. data/assets/core/misc/swoosh_bg.svg +11 -0
  58. data/assets/core/misc/throbber-active.gif +0 -0
  59. data/assets/core/misc/throbber-inactive.png +0 -0
  60. data/assets/core/misc/tree-bottom.png +0 -0
  61. data/assets/core/misc/tree.png +0 -0
  62. data/assets/core/misc/twistie-down.svg +1 -0
  63. data/assets/core/misc/twistie-up.svg +1 -0
  64. data/assets/core/misc/warning.svg +1 -0
  65. data/assets/core/misc/west_vlaanderen_logo.png +0 -0
  66. data/assets/css/custom_style.css +5 -0
  67. data/assets/css/stylesheet_one.css +2461 -0
  68. data/assets/css/stylesheet_two.css +9753 -0
  69. data/assets/css/tablesaw-base.css +601 -0
  70. data/assets/css/tablesaw-responsive.css +189 -0
  71. data/assets/js/brands.js +3448 -0
  72. data/assets/js/fontawesome-icons.js +6 -0
  73. data/assets/js/fontawesome.js +2355 -0
  74. data/assets/js/regular.js +1354 -0
  75. data/assets/js/script_one.js +3361 -0
  76. data/assets/js/script_three.js +1160 -0
  77. data/assets/js/script_two.js +3913 -0
  78. data/assets/js/solid.js +9921 -0
  79. data/assets/js/tablesaw-init.js +18 -0
  80. data/assets/js/tablesaw.min.js +1408 -0
  81. data/assets/media/img/SquidRNA.webp +0 -0
  82. data/assets/media/img/graph_concept_art.jpg +0 -0
  83. data/assets/media/img/placeholder.png +0 -0
  84. data/assets/media/video/Homepage_website_SimonStevin.mp4 +0 -0
  85. metadata +140 -0
@@ -0,0 +1,601 @@
1
+ /*! Tablesaw - v3.1.2 - 2019-03-19
2
+ * https://github.com/filamentgroup/tablesaw
3
+ * Copyright (c) 2019 Filament Group; Licensed MIT */
4
+
5
+ .tablesaw {
6
+ width: 100%;
7
+ max-width: 100%;
8
+ empty-cells: show;
9
+ border-collapse: collapse;
10
+ border: 0;
11
+ padding: 0;
12
+ }
13
+
14
+ .tablesaw * {
15
+ box-sizing: border-box;
16
+ }
17
+
18
+ .tablesaw a.tabledrag-handle .handle {
19
+ box-sizing: content-box;
20
+ }
21
+
22
+ .tablesaw-btn {
23
+ border: 1px solid #ccc;
24
+ border-radius: .25em;
25
+ background: none;
26
+ box-shadow: 0 1px 0 rgba(255,255,255,1);
27
+ color: #4a4a4a;
28
+ cursor: pointer;
29
+ display: inline-block;
30
+ margin: 0;
31
+ padding: .5em .85em .4em .85em;
32
+ position: relative;
33
+ text-align: center;
34
+ text-decoration: none;
35
+ text-transform: capitalize;
36
+ -webkit-appearance: none;
37
+ -moz-appearance: none;
38
+ appearance: none;
39
+ }
40
+
41
+ a.tablesaw-btn {
42
+ color: #1c95d4;
43
+ }
44
+
45
+ .tablesaw-btn:hover {
46
+ text-decoration: none;
47
+ }
48
+
49
+ /* Default radio/checkbox styling horizonal controlgroups. */
50
+
51
+ .tablesaw-btn:active {
52
+ background-color: #ddd;
53
+ }
54
+
55
+ @supports (box-shadow: none ) {
56
+ .tablesaw-btn:focus {
57
+ background-color: #fff;
58
+ outline: none;
59
+ }
60
+
61
+ .tablesaw-btn:focus {
62
+ box-shadow: 0 0 .35em #4faeef !important;
63
+ }
64
+ }
65
+
66
+ .tablesaw-btn-select select {
67
+ background: none;
68
+ border: none;
69
+ display: inline-block;
70
+ position: absolute;
71
+ left: 0;
72
+ top: 0;
73
+ margin: 0;
74
+ width: 100%;
75
+ height: 100%;
76
+ z-index: 2;
77
+ min-height: 1em;
78
+ opacity: 0;
79
+ color: transparent;
80
+ }
81
+
82
+ .tablesaw-btn select option {
83
+ background: #fff;
84
+ color: #000;
85
+ }
86
+
87
+ .tablesaw-btn {
88
+ display: inline-block;
89
+ width: auto;
90
+ height: auto;
91
+ position: relative;
92
+ top: 0;
93
+ }
94
+
95
+ .tablesaw-btn.btn-small {
96
+ font-size: 1.0625em;
97
+ line-height: 19px;
98
+ padding: .3em 1em .3em 1em;
99
+ }
100
+
101
+ .tablesaw-btn.btn-micro {
102
+ font-size: .8125em;
103
+ padding: .4em .7em .25em .7em;
104
+ }
105
+
106
+ .tablesaw-btn-select {
107
+ text-align: left;
108
+ display: inline-block;
109
+ color: #4d4d4d;
110
+ padding-right: 2.5em;
111
+ min-width: 7.25em;
112
+ }
113
+
114
+ .tablesaw-btn-select:after {
115
+ position: absolute;
116
+ background: none;
117
+ background-repeat: no-repeat;
118
+ background-position: .25em .45em;
119
+ content: "\25bc";
120
+ font-size: .55em;
121
+ padding-top: 1.2em;
122
+ padding-left: 1em;
123
+ left: auto;
124
+ right: 0;
125
+ margin: 0;
126
+ top: 0;
127
+ bottom: 0;
128
+ width: 1.8em;
129
+ }
130
+
131
+ .tablesaw-btn-select.btn-small:after,
132
+ .tablesaw-btn-select.btn-micro:after {
133
+ width: 1.2em;
134
+ font-size: .5em;
135
+ padding-top: 1em;
136
+ padding-right: .5em;
137
+ line-height: 1.65;
138
+ background: none;
139
+ box-shadow: none;
140
+ border-left-width: 0;
141
+ }
142
+
143
+ /* Column navigation buttons for swipe and columntoggle tables */
144
+
145
+ .tablesaw-advance .tablesaw-btn {
146
+ -webkit-appearance: none;
147
+ -moz-appearance: none;
148
+ box-sizing: border-box;
149
+ text-shadow: 0 1px 0 #fff;
150
+ border-radius: .25em;
151
+ }
152
+
153
+ .tablesaw-advance .tablesaw-btn.btn-micro {
154
+ font-size: .8125em;
155
+ padding: .3em .7em .25em .7em;
156
+ }
157
+
158
+ .tablesaw-advance a.tablesaw-nav-btn:first-child {
159
+ margin-left: 0;
160
+ }
161
+
162
+ .tablesaw-advance a.tablesaw-nav-btn:last-child {
163
+ margin-right: 0;
164
+ }
165
+
166
+ .tablesaw-advance a.tablesaw-nav-btn {
167
+ display: inline-block;
168
+ overflow: hidden;
169
+ width: 1.8em;
170
+ height: 1.8em;
171
+ background-position: 50% 50%;
172
+ margin-left: .25em;
173
+ margin-right: .25em;
174
+ position: relative;
175
+ text-indent: -9999px;
176
+ }
177
+
178
+ .tablesaw-advance a.tablesaw-nav-btn.left:before,
179
+ .tablesaw-advance a.tablesaw-nav-btn.right:before,
180
+ .tablesaw-advance a.tablesaw-nav-btn.down:before,
181
+ .tablesaw-advance a.tablesaw-nav-btn.up:before {
182
+ content: "\0020";
183
+ overflow: hidden;
184
+ width: 0;
185
+ height: 0;
186
+ position: absolute;
187
+ }
188
+
189
+ .tablesaw-advance a.tablesaw-nav-btn.down:before {
190
+ left: .5em;
191
+ top: .65em;
192
+ border-left: 5px solid transparent;
193
+ border-right: 5px solid transparent;
194
+ border-top: 5px solid #808080;
195
+ }
196
+
197
+ .tablesaw-advance a.tablesaw-nav-btn.up:before {
198
+ left: .5em;
199
+ top: .65em;
200
+ border-left: 5px solid transparent;
201
+ border-right: 5px solid transparent;
202
+ border-bottom: 5px solid #808080;
203
+ }
204
+
205
+ .tablesaw-advance a.tablesaw-nav-btn.left:before,
206
+ .tablesaw-advance a.tablesaw-nav-btn.right:before {
207
+ top: .45em;
208
+ border-top: 5px solid transparent;
209
+ border-bottom: 5px solid transparent;
210
+ }
211
+
212
+ .tablesaw-advance a.tablesaw-nav-btn.left:before {
213
+ left: .6em;
214
+ border-right: 5px solid #808080;
215
+ }
216
+
217
+ .tablesaw-advance a.tablesaw-nav-btn.right:before {
218
+ left: .7em;
219
+ border-left: 5px solid #808080;
220
+ }
221
+
222
+ .tablesaw-advance a.tablesaw-nav-btn.disabled {
223
+ opacity: .25;
224
+ cursor: default;
225
+ pointer-events: none;
226
+ }
227
+
228
+ /* Table Toolbar */
229
+
230
+ .tablesaw-bar {
231
+ clear: both;
232
+ }
233
+
234
+ .tablesaw-bar * {
235
+ box-sizing: border-box;
236
+ }
237
+
238
+ .tablesaw-bar-section {
239
+ float: left;
240
+ }
241
+
242
+ .tablesaw-bar-section label {
243
+ font-size: .875em;
244
+ padding: .5em 0;
245
+ clear: both;
246
+ display: block;
247
+ color: #888;
248
+ margin-right: .5em;
249
+ text-transform: uppercase;
250
+ }
251
+
252
+ .tablesaw-btn,
253
+ .tablesaw-enhanced .tablesaw-btn {
254
+ margin-top: .5em;
255
+ margin-bottom: .5em;
256
+ }
257
+
258
+ .tablesaw-btn-select,
259
+ .tablesaw-enhanced .tablesaw-btn-select {
260
+ margin-bottom: 0;
261
+ }
262
+
263
+ /* TODO */
264
+
265
+ .tablesaw-bar .tablesaw-bar-section .tablesaw-btn {
266
+ margin-left: .4em;
267
+ margin-top: 0;
268
+ text-transform: uppercase;
269
+ border: none;
270
+ box-shadow: none;
271
+ background: transparent;
272
+ font-size: 1em;
273
+ padding-left: .3em;
274
+ }
275
+
276
+ .tablesaw-bar .tablesaw-bar-section .btn-select {
277
+ min-width: 0;
278
+ }
279
+
280
+ .tablesaw-bar .tablesaw-bar-section .btn-select:after {
281
+ padding-top: .9em;
282
+ }
283
+
284
+ .tablesaw-bar .tablesaw-bar-section select {
285
+ color: #888;
286
+ text-transform: none;
287
+ background: transparent;
288
+ }
289
+
290
+ .tablesaw-bar-section ~ table {
291
+ clear: both;
292
+ }
293
+
294
+ .tablesaw-bar-section .abbreviated {
295
+ display: inline;
296
+ }
297
+
298
+ .tablesaw-bar-section .longform {
299
+ display: none;
300
+ }
301
+
302
+ @media (min-width: 24em) {
303
+ .tablesaw-bar-section .abbreviated {
304
+ display: none;
305
+ }
306
+
307
+ .tablesaw-bar-section .longform {
308
+ display: inline;
309
+ }
310
+ }
311
+
312
+ .tablesaw th,
313
+ .tablesaw td {
314
+ padding: .5em .7em;
315
+ text-align: left;
316
+ vertical-align: middle;
317
+ }
318
+
319
+ .tablesaw-sortable-btn {
320
+ /* same as cell padding above */
321
+ padding: .5em .7em;
322
+ }
323
+
324
+ .tablesaw thead th {
325
+ text-align: left;
326
+ }
327
+
328
+ /* Table rows have a gray bottom stroke by default */
329
+
330
+ .tablesaw-row-border tr {
331
+ border-bottom: 1px solid #dfdfdf;
332
+ }
333
+
334
+ /* Zebra striping */
335
+
336
+ .tablesaw-row-zebra tr:nth-child(2n) {
337
+ background-color: #f8f8f8;
338
+ }
339
+
340
+ .tablesaw caption {
341
+ text-align: left;
342
+ margin: .59375em 0;
343
+ }
344
+
345
+ .tablesaw-swipe .tablesaw-swipe-cellpersist {
346
+ border-right: 2px solid #e4e1de;
347
+ }
348
+
349
+ .tablesaw-swipe-shadow .tablesaw-swipe-cellpersist {
350
+ border-right-width: 1px;
351
+ }
352
+
353
+ .tablesaw-swipe-shadow .tablesaw-swipe-cellpersist {
354
+ box-shadow: 3px 0 4px -1px #e4e1de;
355
+ }
356
+
357
+ .tablesaw-stack td .tablesaw-cell-label,
358
+ .tablesaw-stack th .tablesaw-cell-label {
359
+ display: none;
360
+ }
361
+
362
+ /* Media query to show as a standard table at 560px (35em x 16px) or wider */
363
+
364
+ @media (min-width: 40em) {
365
+ .tablesaw-stack tr {
366
+ display: table-row;
367
+ }
368
+
369
+ /* Show the table header rows */
370
+
371
+ .tablesaw-stack td,
372
+ .tablesaw-stack th,
373
+ .tablesaw-stack thead td,
374
+ .tablesaw-stack thead th {
375
+ display: table-cell;
376
+ margin: 0;
377
+ }
378
+
379
+ /* Hide the labels in each cell */
380
+
381
+ .tablesaw-stack td .tablesaw-cell-label,
382
+ .tablesaw-stack th .tablesaw-cell-label {
383
+ display: none !important;
384
+ }
385
+ }
386
+
387
+ .tablesaw-fix-persist {
388
+ table-layout: fixed;
389
+ }
390
+
391
+ @media only all {
392
+ /* Unchecked manually: Always hide */
393
+
394
+ .tablesaw-swipe th.tablesaw-swipe-cellhidden,
395
+ .tablesaw-swipe td.tablesaw-swipe-cellhidden {
396
+ display: none;
397
+ }
398
+ }
399
+
400
+ .tablesaw-overflow {
401
+ position: relative;
402
+ width: 100%;
403
+ overflow-x: auto;
404
+ -webkit-overflow-scrolling: touch;
405
+ /* More in skin.css */
406
+ }
407
+
408
+ .tablesaw-overflow > .tablesaw {
409
+ margin-top: 2px;
410
+ /* sortable focus rings are clipped */
411
+ }
412
+
413
+ /* Used for a11y text on button: "Columns" */
414
+
415
+ .tablesaw-columntoggle-btn span {
416
+ text-indent: -9999px;
417
+ display: inline-block;
418
+ }
419
+
420
+ .tablesaw-columntoggle-btnwrap {
421
+ position: relative;
422
+ /* for dialog positioning */
423
+ }
424
+
425
+ .tablesaw-columntoggle-btnwrap .dialog-content {
426
+ padding: .5em;
427
+ }
428
+
429
+ .tablesaw-columntoggle tbody td {
430
+ line-height: 1.5;
431
+ }
432
+
433
+ /* Remove top/bottom margins around the fieldcontain on check list */
434
+
435
+ .tablesaw-columntoggle-popup {
436
+ display: none;
437
+ }
438
+
439
+ .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup {
440
+ display: block;
441
+ position: absolute;
442
+ top: 2em;
443
+ right: 0;
444
+ background-color: #fff;
445
+ padding: .5em .8em;
446
+ border: 1px solid #ccc;
447
+ box-shadow: 0 1px 2px #ccc;
448
+ border-radius: .2em;
449
+ z-index: 1;
450
+ }
451
+
452
+ .tablesaw-columntoggle-popup fieldset {
453
+ margin: 0;
454
+ }
455
+
456
+ .tablesaw-columntoggle-btnwrap .dialog-content {
457
+ top: 0 !important;
458
+ right: 1em;
459
+ left: auto !important;
460
+ width: 12em;
461
+ max-width: 18em;
462
+ margin: -.5em auto 0;
463
+ }
464
+
465
+ .tablesaw-columntoggle-btnwrap .dialog-content:focus {
466
+ outline-style: none;
467
+ }
468
+
469
+ /* Preset breakpoints if "" class added to table */
470
+
471
+ /* Show priority 4 at 800px (50em x 16px) */
472
+
473
+ @media (min-width: 50em) {
474
+ .tablesaw-columntoggle th.tablesaw-priority-4,
475
+ .tablesaw-columntoggle td.tablesaw-priority-4 {
476
+ display: table-cell;
477
+ }
478
+ }
479
+
480
+ /* Show priority 5 at 960px (60em x 16px) */
481
+
482
+ @media (min-width: 60em) {
483
+ .tablesaw-columntoggle th.tablesaw-priority-5,
484
+ .tablesaw-columntoggle td.tablesaw-priority-5 {
485
+ display: table-cell;
486
+ }
487
+ }
488
+
489
+ /* Show priority 6 at 1,120px (70em x 16px) */
490
+
491
+ @media (min-width: 70em) {
492
+ .tablesaw-columntoggle th.tablesaw-priority-6,
493
+ .tablesaw-columntoggle td.tablesaw-priority-6 {
494
+ display: table-cell;
495
+ }
496
+ }
497
+
498
+ @media only all {
499
+ /* Unchecked manually: Always hide */
500
+
501
+ .tablesaw-columntoggle th.tablesaw-toggle-cellhidden,
502
+ .tablesaw-columntoggle td.tablesaw-toggle-cellhidden {
503
+ display: none;
504
+ }
505
+
506
+ /* Checked manually: Always show */
507
+
508
+ .tablesaw-columntoggle th.tablesaw-toggle-cellvisible,
509
+ .tablesaw-columntoggle td.tablesaw-toggle-cellvisible {
510
+ display: table-cell;
511
+ }
512
+ }
513
+
514
+ .tablesaw-columntoggle-popup .tablesaw-btn-group > label {
515
+ display: block;
516
+ padding: .2em 0;
517
+ white-space: nowrap;
518
+ cursor: default;
519
+ }
520
+
521
+ .tablesaw-columntoggle-popup .tablesaw-btn-group > label input {
522
+ margin-right: .8em;
523
+ }
524
+
525
+ .tablesaw-sortable-head {
526
+ position: relative;
527
+ vertical-align: top;
528
+ }
529
+
530
+ /* Override */
531
+
532
+ .tablesaw .tablesaw-sortable-head {
533
+ padding: 0;
534
+ }
535
+
536
+ .tablesaw-sortable-btn {
537
+ min-width: 100%;
538
+ color: inherit;
539
+ background: transparent;
540
+ border: 0;
541
+ text-align: inherit;
542
+ font: inherit;
543
+ text-transform: inherit;
544
+ }
545
+
546
+ .tablesaw-sortable-arrow:after {
547
+ display: inline-block;
548
+ width: 10px;
549
+ height: 14px;
550
+ content: " ";
551
+ margin-left: .3125em;
552
+ }
553
+
554
+ .tablesaw-sortable-ascending .tablesaw-sortable-arrow:after,
555
+ .tablesaw-sortable-descending .tablesaw-sortable-arrow:after {
556
+ content: "\0020";
557
+ }
558
+
559
+ .tablesaw-sortable-ascending .tablesaw-sortable-arrow:after {
560
+ content: "\2191";
561
+ }
562
+
563
+ .tablesaw-sortable-descending .tablesaw-sortable-arrow:after {
564
+ content: "\2193";
565
+ }
566
+
567
+ .tablesaw-advance {
568
+ float: right;
569
+ }
570
+
571
+ .tablesaw-advance.minimap {
572
+ margin-right: .4em;
573
+ }
574
+
575
+ .tablesaw-advance-dots {
576
+ float: left;
577
+ margin: 0;
578
+ padding: 0;
579
+ list-style: none;
580
+ }
581
+
582
+ .tablesaw-advance-dots li {
583
+ display: table-cell;
584
+ margin: 0;
585
+ padding: .4em .2em;
586
+ }
587
+
588
+ .tablesaw-advance-dots li i {
589
+ width: .25em;
590
+ height: .25em;
591
+ background: #555;
592
+ border-radius: 100%;
593
+ display: inline-block;
594
+ }
595
+
596
+ .tablesaw-advance-dots-hide {
597
+ opacity: .25;
598
+ cursor: default;
599
+ pointer-events: none;
600
+ }
601
+