elixir-toolkit-theme 1.7.1 → 1.9.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.
- checksums.yaml +4 -4
- data/README.md +82 -24
- data/_includes/affiliation-tiles-selection.html +2 -2
- data/_includes/events.html +14 -1
- data/_includes/footer.html +4 -0
- data/_includes/more-information-tiles.html +24 -8
- data/_includes/news.html +14 -1
- data/_includes/pageids-overview.html +3 -3
- data/_includes/topnav.html +1 -1
- data/_sass/_custom_variables.scss +2 -3
- data/assets/css/main.scss +21 -17
- data/assets/img/{dsw-compact.svg → dsw_compact_logo.svg} +0 -0
- data/assets/img/{fairplus.svg → fairplus_compact_logo.svg} +0 -0
- data/assets/img/{FAIRsharing-small.svg → fairsharing_compact_logo.svg} +0 -0
- data/assets/img/rdmkit_compact_logo.svg +1 -0
- metadata +6 -6
- data/assets/img/bio.tools.svg +0 -76
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 207a325fa96fa5023481284b6824ea600dcb234c26016b44bd330f30fc3e7f20
|
|
4
|
+
data.tar.gz: f8680ad1cac04568b0cb696885342e4fa241f4978e48f02ee2d17915bdf49f15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ad726b98582e9e2d16c0d287b9462a007b7af076fcc2f311b7cfa607366cae37c581e5d19b799886a2b8e6dfb36dd1395116b9a0ed01e8461d514eeace15b00
|
|
7
|
+
data.tar.gz: 89a708688970bdd2d99e91b1164496958f007ff968afa2600457108ce55383d679f269009ec3e15ca6ad379fcd33479f95562c365bcd88aa1f1b0859a67416fb
|
data/README.md
CHANGED
|
@@ -1,41 +1,62 @@
|
|
|
1
|
-
[](https://badge.fury.io/rb/elixir-toolkit-theme)
|
|
1
|
+
[](https://badge.fury.io/rb/elixir-toolkit-theme) [](https://github.com/ELIXIR-Belgium/elixir-toolkit-theme/actions/workflows/jekyll.yml)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="assets/img/main_logo.svg" width="100" float="center"/>
|
|
5
|
+
<h1 align="center">ELIXIR toolkit theme </h1>
|
|
6
|
+
</p>
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
The ELIXIR toolkit theme is a Jekyll theme designed to support easy deployment of documentation websites but also more complex ones that require a central tool table and linking towards ELXIR resources.
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
Its key features:
|
|
11
|
+
- Easy deployment using GitHub pages
|
|
12
|
+
- Advanced content search
|
|
13
|
+
- Create your own look with the many theme variables
|
|
14
|
+
- Change style using custom classes
|
|
15
|
+
- Support for a central tools table
|
|
16
|
+
- Page tagging and listing of those tagged pages
|
|
17
|
+
- Linking to ELIXIR resources including Bio.tools, FAIRSHARING, FAIR Cookbook, TeSS and DSW
|
|
18
|
+
- Easy side navigation, top navigation and footer management
|
|
19
|
+
- Mobile friendly
|
|
20
|
+
- Create website sections with each section having its own sidebar
|
|
21
|
+
- Out of the box search engine optimizations including schema.org attributes and many other matadata attributes
|
|
22
|
+
- Support for Google Analytics and Plausible
|
|
8
23
|
|
|
9
|
-
|
|
10
|
-
- [DataTables](https://datatables.net/examples/styling/bootstrap5.html)
|
|
11
|
-
- [AnchorJS](https://www.bryanbraun.com/anchorjs/)
|
|
12
|
-
- [lunr.js](https://lunrjs.com/)
|
|
13
|
-
- [jQuery](https://jquery.com/)
|
|
14
|
-
- [jekyll-table-of-contents](https://github.com/ghiculescu/jekyll-table-of-contents)
|
|
15
|
-
- [jQuery Navgoco Menus](https://github.com/tefra/navgoco)
|
|
24
|
+
## Installation
|
|
16
25
|
|
|
26
|
+
### via GitHub Pages remote theme
|
|
17
27
|
|
|
18
|
-
|
|
28
|
+
The quickiest way to use Just The Docs is to use GitHub pages [remote theme](https://blog.github.com/2017-11-29-use-any-theme-with-github-pages/) feature in your `config.yml` file:
|
|
19
29
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
30
|
+
```yaml
|
|
31
|
+
remote_theme: ELIXIR-Belgium/elixir-toolkit-theme
|
|
32
|
+
```
|
|
33
|
+
### via RubyGems:
|
|
23
34
|
|
|
24
|
-
|
|
25
|
-
cd jekyll-bootstrap-theme
|
|
35
|
+
Alternatively you can install it as a Ruby Gem (preferred way if you use GitLab).
|
|
26
36
|
|
|
37
|
+
Add this line to your Jekyll site's Gemfile:
|
|
27
38
|
|
|
28
|
-
|
|
39
|
+
```ruby
|
|
40
|
+
gem "elixir-toolkit-theme"
|
|
41
|
+
```
|
|
29
42
|
|
|
30
|
-
|
|
43
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
31
44
|
|
|
32
|
-
|
|
45
|
+
```yaml
|
|
46
|
+
theme: elixir-toolkit-theme
|
|
33
47
|
```
|
|
34
|
-
docker run -it --rm -p 4000:4000 -v $PWD:/srv/jekyll jekyll/jekyll:latest /bin/bash -c "chmod a+w /srv/jekyll/Gemfile.lock && chmod 777 /srv/jekyll && jekyll serve -w"
|
|
35
|
-
```
|
|
36
|
-
This will start the docker container and serve the website locally.
|
|
37
48
|
|
|
38
|
-
|
|
49
|
+
## Usage
|
|
50
|
+
|
|
51
|
+
[View the documentation](https://elixir-belgium.github.io/elixir-toolkit-theme/) for usage information.
|
|
52
|
+
|
|
53
|
+
## Deployment
|
|
54
|
+
|
|
55
|
+
### Using GitHub pages
|
|
56
|
+
|
|
57
|
+
This theme can be used to deploy the website using GitHub pages. Visit the [GitHub documentation](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/) to find out more about how to setup GitHub pages.
|
|
58
|
+
|
|
59
|
+
### Locally using Jekyll
|
|
39
60
|
|
|
40
61
|
1. If not already present on your machine, install ruby. Note that incompatibility issues may arise with ruby 3.0.0 (released 25.12.20) or newer versions.
|
|
41
62
|
|
|
@@ -64,3 +85,40 @@ If you have never installed or run a Jekyll site locally on your computer, follo
|
|
|
64
85
|
|
|
65
86
|
Additional information can be found at the following link: [https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll](https://docs.github.com/en/free-pro-team@latest/github/working-with-github-pages/testing-your-github-pages-site-locally-with-jekyll)
|
|
66
87
|
|
|
88
|
+
|
|
89
|
+
### Using Docker
|
|
90
|
+
|
|
91
|
+
If not already installed on your machine, install Docker. From the root of the `elixir-toolkit-theme` directory, run:
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
docker run -it --rm -p [::1]:4000:4000 -v $PWD:/srv/jekyll jekyll/jekyll:latest /bin/bash -c "chmod a+w /srv/jekyll/Gemfile.lock && chmod 777 /srv/jekyll && bundle install && bundle exec jekyll serve --host 0.0.0.0"
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
This will start the docker container and serve the website locally. Make sure the `.\_site` is not yet created to avoid permission errors.
|
|
98
|
+
|
|
99
|
+
## This theme is known to be used in:
|
|
100
|
+
|
|
101
|
+
- [RDMkit](https://rdmkit.elixir-europe.org/)
|
|
102
|
+
- [RDMGuide](https://rdm.elixir-belgium.org/)
|
|
103
|
+
- [Infectious Diseases Toolkit](https://www.infectious-diseases-toolkit.org/)
|
|
104
|
+
- [Applied Bioinformatics and Biostatistics intranet page](https://intranet.psb.ugent.be/abb/)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
## Used packages
|
|
108
|
+
|
|
109
|
+
This theme would not be possible without following open source projects:
|
|
110
|
+
|
|
111
|
+
- [Bootstrap5](https://github.com/twbs/bootstrap) - As main CSS framework
|
|
112
|
+
- [DataTables](https://github.com/DataTables/DataTablesSrc) - To generate tables that are sortable, searchable and contain pagination
|
|
113
|
+
- [AnchorJS](https://github.com/bryanbraun/anchorjs) - Adds deep anchor links to the headings
|
|
114
|
+
- [lunr.js](https://github.com/olivernn/lunr.js) - Main tool behind the search bar enabling content search
|
|
115
|
+
- [jQuery](https://github.com/jquery/jquery) - A fast, small, and feature-rich JavaScript library for easy scripting
|
|
116
|
+
- [jekyll-table-of-contents](https://github.com/ghiculescu/jekyll-table-of-contents) - Lightweight JS script to render the table of contents
|
|
117
|
+
- [jQuery Navgoco Menus](https://github.com/tefra/navgoco) - Multi-level slide navigation with accordion effect
|
|
118
|
+
- [Font-Awesome](https://github.com/FortAwesome/Font-Awesome) - The famous icon library
|
|
119
|
+
- [flag-icons](https://github.com/lipis/flag-icons) - A curated collection of all country flags in SVG + css integration
|
|
120
|
+
|
|
121
|
+
## License
|
|
122
|
+
|
|
123
|
+
The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
124
|
+
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{%- assign alllogos = site.data.affiliations %}
|
|
2
|
-
<div class="row row-cols-2 row-cols-sm-3 row-cols-md-4 g-5 my-3">
|
|
2
|
+
<div class="affiliation-tiles row row-cols-2 row-cols-sm-3 row-cols-md-4 g-5 my-3">
|
|
3
3
|
{%- assign filtered_logos = alllogos | where: "type", include.type %}
|
|
4
4
|
{%- for affiliation in filtered_logos %}
|
|
5
5
|
{%- if affiliation.image_url and affiliation.expose == true %}
|
|
6
6
|
<div class="col">
|
|
7
7
|
<div class="card h-100 border-0">
|
|
8
8
|
<div class="my-auto">
|
|
9
|
-
{% if affiliation.url %}<a href="{{ affiliation.url }}">{% endif %}<img class="
|
|
9
|
+
{% if affiliation.url %}<a href="{{ affiliation.url }}">{% endif %}<img class="rounded" src="{{ affiliation.image_url | relative_url }}" alt="{{ affiliation.name }}">{%- if affiliation.url %}</a>{% endif %}
|
|
10
10
|
</div>
|
|
11
11
|
</div>
|
|
12
12
|
</div>
|
data/_includes/events.html
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<div class="events {{include.event_type}}s">
|
|
2
2
|
{%- if include.title == "true" %}
|
|
3
|
-
<h2
|
|
3
|
+
<h2>{{include.event_type | replace: "_", " " | capitalize}}s</h2>
|
|
4
4
|
{%- endif %}
|
|
5
5
|
{%- assign events = site.data.events %}
|
|
6
|
+
{%- assign count = 0 %}
|
|
6
7
|
<ul class="list-unstyled mt-3">
|
|
7
8
|
{%- for event in events %}
|
|
8
9
|
<li class='{{include.event_type}}' data-start='{{ event.startDate}}'>
|
|
@@ -14,9 +15,21 @@
|
|
|
14
15
|
<div class="d-inline-block text-muted">{{ event.location | markdownify }}</div>
|
|
15
16
|
{%- endif %}
|
|
16
17
|
{%- if event.description %}
|
|
18
|
+
{%- assign word_count = event.description | split: " " | size %}
|
|
19
|
+
{%- if include.truncate == "true" and word_count > 40 %}
|
|
20
|
+
<p class="mb-0"><a data-bs-toggle="collapse" href="#collapse-{{count}}" role="button" aria-expanded="false" aria-controls="collapse-{{count}}">
|
|
21
|
+
View description
|
|
22
|
+
</a>
|
|
23
|
+
</p>
|
|
24
|
+
<div class="full-description collapse" id="collapse-{{count}}">
|
|
25
|
+
{{ event.description | markdownify }}
|
|
26
|
+
</div>
|
|
27
|
+
{%- else %}
|
|
17
28
|
{{ event.description | markdownify }}
|
|
18
29
|
{%- endif %}
|
|
30
|
+
{%- endif %}
|
|
19
31
|
</li>
|
|
32
|
+
{%- assign count = count | plus: 1 %}
|
|
20
33
|
{%- endfor %}
|
|
21
34
|
</ul>
|
|
22
35
|
{%- if include.caption == "true" %}
|
data/_includes/footer.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
{%- if page.faircookbook or page.fairsharing or page.training or page.dsw %}
|
|
1
|
+
{%- if page.faircookbook or page.fairsharing or page.training or page.dsw or page.rdmkit %}
|
|
2
2
|
<!-- More information -->
|
|
3
3
|
<h2>More information</h2>
|
|
4
4
|
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<div class="row g-1">
|
|
17
17
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
18
18
|
{%- if training.registry == "TeSS" %}
|
|
19
|
-
<img alt="TeSS logo" class="img-fluid
|
|
19
|
+
<img alt="TeSS logo" class="img-fluid" src="assets/img/tess_logo.svg">
|
|
20
20
|
{%- else %}
|
|
21
21
|
<i class="fas fa-external-link-alt text-primary fs-5"></i>
|
|
22
22
|
{%- endif %}
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
</div>
|
|
34
34
|
</div>
|
|
35
35
|
{%- endif %}
|
|
36
|
-
{%- if page.faircookbook or page.fairsharing or page.dsw %}
|
|
36
|
+
{%- if page.faircookbook or page.fairsharing or page.dsw or page.RDMkit%}
|
|
37
37
|
<!-- FAIR Cookbook and FAIRsharing -->
|
|
38
38
|
<div class="col">
|
|
39
39
|
<div class="card h-100 info-card">
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="FAIRCookbook" href="{{ recipe.url }}">
|
|
47
47
|
<div class="row g-1">
|
|
48
48
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
49
|
-
<img alt="FAIRCookbook logo" class="img-fluid
|
|
49
|
+
<img alt="FAIRCookbook logo" class="img-fluid" src="assets/img/fairplus_compact_logo.svg">
|
|
50
50
|
</div>
|
|
51
51
|
<div class="col-10 d-flex align-items-center">
|
|
52
52
|
<span class="text-start">Step-by-step process for: {{recipe.name}}</span>
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="DSW" href="{{ site.dsw_deep_link_prefix | append: question.uuid }}">
|
|
63
63
|
<div class="row g-1">
|
|
64
64
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
65
|
-
<img alt="DSW logo" class="img-fluid
|
|
65
|
+
<img alt="DSW logo" class="img-fluid" src="assets/img/dsw_compact_logo.svg">
|
|
66
66
|
</div>
|
|
67
67
|
<div class="col-10 d-flex align-items-center">
|
|
68
68
|
<span class="text-start">Support for DMP on: {{question.name}}</span>
|
|
@@ -75,13 +75,29 @@
|
|
|
75
75
|
{%- if page.fairsharing %}
|
|
76
76
|
{%- for standard in page.fairsharing %}
|
|
77
77
|
<li class="d-grid">
|
|
78
|
-
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="FAIRsharing" href="{{ standard.
|
|
78
|
+
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="FAIRsharing" href="{{ standard.url }}">
|
|
79
79
|
<div class="row g-1">
|
|
80
80
|
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
81
|
-
<img alt="
|
|
81
|
+
<img alt="FAIRsharing logo" class="img-fluid" src="assets/img/fairsharing_compact_logo.svg">
|
|
82
82
|
</div>
|
|
83
83
|
<div class="col-10 d-flex align-items-center">
|
|
84
|
-
<span class="text-start">FAIRsharing collection about: {{standard.
|
|
84
|
+
<span class="text-start">FAIRsharing collection about: {{standard.name}}</span>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</a>
|
|
88
|
+
</li>
|
|
89
|
+
{%- endfor %}
|
|
90
|
+
{%- endif %}
|
|
91
|
+
{%- if page.rdmkit %}
|
|
92
|
+
{%- for rdmdoc in page.rdmkit %}
|
|
93
|
+
<li class="d-grid">
|
|
94
|
+
<a class="btn bg-white hover-primary text-start" data-bs-toggle="tooltip" data-bs-placement="right" title="RDMkit" href="{{ rdmdoc.url }}">
|
|
95
|
+
<div class="row g-1">
|
|
96
|
+
<div class="col-2 d-flex align-items-center justify-content-center">
|
|
97
|
+
<img alt="RDMkit logo" class="img-fluid" src="assets/img/rdmkit_compact_logo.svg">
|
|
98
|
+
</div>
|
|
99
|
+
<div class="col-10 d-flex align-items-center">
|
|
100
|
+
<span class="text-start">Data management guidelines on: {{rdmdoc.name}}</span>
|
|
85
101
|
</div>
|
|
86
102
|
</div>
|
|
87
103
|
</a>
|
data/_includes/news.html
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="news">
|
|
2
2
|
{%- if include.title == "true" %}
|
|
3
|
-
<h2
|
|
3
|
+
<h2>Whats new?</h2>
|
|
4
4
|
{%- endif %}
|
|
5
5
|
{%- assign news = site.data.news | sort: "date"%}
|
|
6
6
|
{%- assign count = 0 %}
|
|
@@ -9,7 +9,20 @@
|
|
|
9
9
|
<li>
|
|
10
10
|
<span class="title mb-1">{{ new.name | escape }}</span>
|
|
11
11
|
<p class="text-muted"><i class="far fa-calendar me-2"></i><time>{{ new.date | date_to_long_string }}</time>{% if new.linked_pr %}<b> - </b><i class="fas fa-code-branch"></i><a href="{{ site.github.repository_url | append: '/pull/' | append: new.linked_pr }}">{{new.linked_pr }}</a>{% endif %}</p>
|
|
12
|
+
{%- if new.description %}
|
|
13
|
+
{%- assign word_count = new.description | split: " " | size %}
|
|
14
|
+
{%- if include.truncate == "true" and word_count > 40 %}
|
|
15
|
+
<p class="mb-0"><a data-bs-toggle="collapse" href="#collapse-{{count}}" role="button" aria-expanded="false" aria-controls="collapse-{{count}}">
|
|
16
|
+
View description
|
|
17
|
+
</a>
|
|
18
|
+
</p>
|
|
19
|
+
<div class="full-description collapse" id="collapse-{{count}}">
|
|
20
|
+
{{ new.description | markdownify }}
|
|
21
|
+
</div>
|
|
22
|
+
{%- else %}
|
|
12
23
|
{{ new.description | markdownify }}
|
|
24
|
+
{%- endif %}
|
|
25
|
+
{%- endif %}
|
|
13
26
|
</li>
|
|
14
27
|
{%- assign count = count | plus: 1 %}
|
|
15
28
|
{%- if include.limit and count == include.limit %}
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
<th>title</th>
|
|
12
12
|
<th>page_id</th>
|
|
13
13
|
<th>description</th>
|
|
14
|
+
<th>url</th>
|
|
14
15
|
</tr>
|
|
15
16
|
</thead>
|
|
16
17
|
<tbody>
|
|
@@ -19,9 +20,8 @@
|
|
|
19
20
|
<tr>
|
|
20
21
|
<td><a href="{{ section_page.url | relative_url }}">{{section_page.title}}</a></td>
|
|
21
22
|
<td>{{section_page.page_id}}</td>
|
|
22
|
-
{
|
|
23
|
-
<td>{{section_page.
|
|
24
|
-
{%- endif %}
|
|
23
|
+
<td>{{section_page.description | default: "no description"}}</td>
|
|
24
|
+
<td>{{section_page.url}}</td>
|
|
25
25
|
</tr>
|
|
26
26
|
{%- endif %}
|
|
27
27
|
{%- endfor %}
|
data/_includes/topnav.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<a class="visually-hidden-focusable" href='#footer'>Skip to footer</a>
|
|
5
5
|
<nav class="navbar navbar-expand-lg mb-3 mb-lg-5">
|
|
6
6
|
<div class="container">
|
|
7
|
-
<a class="navbar-brand" href="{{ 'index.html' | relative_url }}"><img class="me-3 img-fluid" alt="{{site.title}} logo" src="{{ 'assets/img/main_logo.svg' | relative_url }}">{% if site.topnav_title %}<span>{{site.topnav_title}}</span>{% endif %}</a>
|
|
7
|
+
<a class="navbar-brand" href="{{ 'index.html' | relative_url }}"><img class="me-3 img-fluid" alt="{{site.title}} logo" src="{{ 'assets/img/main_logo.svg' | relative_url }}">{% if site.topnav_title %}<span class="me-3">{{site.topnav_title}}</span>{% endif %}</a>
|
|
8
8
|
<button class="navbar-toggler text-primary" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
|
|
9
9
|
<i title="navbar-toggler" class="fa fa-bars"></i>
|
|
10
10
|
</button>
|
|
@@ -10,7 +10,6 @@ $btn-primary-color-hover: $white;
|
|
|
10
10
|
$topnav-bg: $light;
|
|
11
11
|
$topnav-title-color: $primary;
|
|
12
12
|
$topnav-brand-height: 44px;
|
|
13
|
-
$topnav-border: 0;
|
|
14
13
|
|
|
15
14
|
/*-----Search-----*/
|
|
16
15
|
$search-result-color: $primary;
|
|
@@ -27,7 +26,6 @@ $sidebar-color-active: $white;
|
|
|
27
26
|
|
|
28
27
|
/*-----TOC-----*/
|
|
29
28
|
$toc-bg: $light;
|
|
30
|
-
$toc-border: 0;
|
|
31
29
|
|
|
32
30
|
/*-----Section navigation tiles-----*/
|
|
33
31
|
$nav-card-bg: $white;
|
|
@@ -54,6 +52,8 @@ $contr-crown-color: $white;
|
|
|
54
52
|
|
|
55
53
|
/*-----Events & news-----*/
|
|
56
54
|
$news-title-bg: $primary;
|
|
55
|
+
$news-border-color: $light;
|
|
56
|
+
$news-title-color: $white;
|
|
57
57
|
|
|
58
58
|
/*-----Default badge-----*/
|
|
59
59
|
$badge-color: $body-color;
|
|
@@ -67,5 +67,4 @@ $footer-color: $dark;
|
|
|
67
67
|
$footer-link-color: $dark;
|
|
68
68
|
$footer-link-color-hover: $primary;
|
|
69
69
|
$footer-copyright-bg: $gray-200;
|
|
70
|
-
$footer-border: 0;
|
|
71
70
|
|
data/assets/css/main.scss
CHANGED
|
@@ -44,6 +44,10 @@ main {
|
|
|
44
44
|
|
|
45
45
|
a:not(.btn):hover {
|
|
46
46
|
text-decoration: underline;
|
|
47
|
+
overflow-wrap: break-word;
|
|
48
|
+
word-wrap: break-word;
|
|
49
|
+
-ms-word-break: break-all;
|
|
50
|
+
word-break: break-word;
|
|
47
51
|
}
|
|
48
52
|
|
|
49
53
|
ol li,
|
|
@@ -129,7 +133,6 @@ pre code {
|
|
|
129
133
|
|
|
130
134
|
header .navbar {
|
|
131
135
|
background-color: $topnav-bg;
|
|
132
|
-
border-bottom: $topnav-border;
|
|
133
136
|
.navbar-brand {
|
|
134
137
|
color: $topnav-title-color;
|
|
135
138
|
img {
|
|
@@ -340,7 +343,6 @@ header .navbar {
|
|
|
340
343
|
|
|
341
344
|
#toc {
|
|
342
345
|
background-color: $toc-bg;
|
|
343
|
-
border: $toc-border;
|
|
344
346
|
// Indent the lists and reset any other padding
|
|
345
347
|
|
|
346
348
|
ul {
|
|
@@ -417,7 +419,6 @@ footer {
|
|
|
417
419
|
font-size: 0.9em;
|
|
418
420
|
line-height: 24px;
|
|
419
421
|
background-color: $footer-bg;
|
|
420
|
-
border-top: $footer-border;
|
|
421
422
|
color: $footer-color;
|
|
422
423
|
|
|
423
424
|
a {
|
|
@@ -527,7 +528,6 @@ footer {
|
|
|
527
528
|
position: fixed;
|
|
528
529
|
background-color: $footer-bg;
|
|
529
530
|
color: $footer-color;
|
|
530
|
-
border-top: $footer-border;
|
|
531
531
|
bottom: 0;
|
|
532
532
|
left: 0;
|
|
533
533
|
width: 100%;
|
|
@@ -571,10 +571,6 @@ footer {
|
|
|
571
571
|
|
|
572
572
|
/*-----Size components-----*/
|
|
573
573
|
|
|
574
|
-
.h-40px {
|
|
575
|
-
height: 40px;
|
|
576
|
-
}
|
|
577
|
-
|
|
578
574
|
.h-24px {
|
|
579
575
|
height: 24px;
|
|
580
576
|
}
|
|
@@ -587,13 +583,11 @@ li.past_event,
|
|
|
587
583
|
display: none;
|
|
588
584
|
}
|
|
589
585
|
|
|
590
|
-
.events,
|
|
591
|
-
.news {
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
padding: 0px 11px;
|
|
596
|
-
}
|
|
586
|
+
.events > ul > li,
|
|
587
|
+
.news > ul > li {
|
|
588
|
+
border-left: $news-border-color 5px solid;
|
|
589
|
+
border-radius: $border-radius;
|
|
590
|
+
padding: 0px 11px;
|
|
597
591
|
|
|
598
592
|
i {
|
|
599
593
|
width: 20px;
|
|
@@ -603,13 +597,19 @@ li.past_event,
|
|
|
603
597
|
.title {
|
|
604
598
|
background-color: $news-title-bg;
|
|
605
599
|
font-weight: 600;
|
|
606
|
-
color: $
|
|
600
|
+
color: $news-title-color;
|
|
607
601
|
padding: 0px 11px;
|
|
608
602
|
border-radius: 0px 4px 4px 0px;
|
|
609
603
|
margin-left: -11px;
|
|
610
|
-
border: 1px solid $news-title-bg;
|
|
611
604
|
display: inline-block;
|
|
612
605
|
}
|
|
606
|
+
|
|
607
|
+
.full-description > *:last-child {
|
|
608
|
+
margin-bottom: 0;
|
|
609
|
+
li {
|
|
610
|
+
margin-bottom: 0;
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
613
|
}
|
|
614
614
|
/*-----More information tiles-----*/
|
|
615
615
|
|
|
@@ -630,6 +630,10 @@ li.past_event,
|
|
|
630
630
|
color: $white !important;
|
|
631
631
|
}
|
|
632
632
|
}
|
|
633
|
+
img {
|
|
634
|
+
height: 40px;
|
|
635
|
+
max-width: 45px;
|
|
636
|
+
}
|
|
633
637
|
}
|
|
634
638
|
|
|
635
639
|
/*-----Country flags-----*/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="459.9" height="459.9" viewBox="0 0 459.9 459.9"><defs><style>.cls-1{fill:#2a2e3d;}.cls-2{fill:#fff;}.cls-3{fill:#c23669;}</style></defs><circle class="cls-1" cx="229.95" cy="229.95" r="229.95"/><path class="cls-2" d="M342.47,284.94q-3.41-17.82-11.87-27.35T312.36,244a65.14,65.14,0,0,0-17.81-4.88V236.6q22.9-2.55,35.83-12.3a52.22,52.22,0,0,0,18.24-24.81,97,97,0,0,0,5.3-32.43q0-34.35-12.93-53.64T300.91,86.07Q273.77,78,230.53,78q-29.26,0-49.83.21T143,79.28c-5,.25-10.14.59-15.42,1l64.33,47.92a53.31,53.31,0,1,1-20.65,28.73l-64.94-48.38V374.83H196.6V267.66q12.81.1,28.41.31,11.87,0,17.18,3.82T250,287.9l19.08,86.93h96.26Z"/><circle class="cls-3" cx="222.41" cy="171.92" r="22.14"/></svg>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elixir-toolkit-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bedroesb
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -440,15 +440,14 @@ files:
|
|
|
440
440
|
- assets/flags/za.svg
|
|
441
441
|
- assets/flags/zm.svg
|
|
442
442
|
- assets/flags/zw.svg
|
|
443
|
-
- assets/img/FAIRsharing-small.svg
|
|
444
443
|
- assets/img/Flag_of_Europe.svg
|
|
445
444
|
- assets/img/android-chrome-192x192.png
|
|
446
445
|
- assets/img/android-chrome-512x512.png
|
|
447
446
|
- assets/img/apple-touch-icon.png
|
|
448
|
-
- assets/img/
|
|
449
|
-
- assets/img/dsw-compact.svg
|
|
447
|
+
- assets/img/dsw_compact_logo.svg
|
|
450
448
|
- assets/img/elixir_logo.svg
|
|
451
|
-
- assets/img/
|
|
449
|
+
- assets/img/fairplus_compact_logo.svg
|
|
450
|
+
- assets/img/fairsharing_compact_logo.svg
|
|
452
451
|
- assets/img/favicon-16x16.png
|
|
453
452
|
- assets/img/favicon-32x32.png
|
|
454
453
|
- assets/img/favicon.ico
|
|
@@ -456,6 +455,7 @@ files:
|
|
|
456
455
|
- assets/img/jekyll_theme_question_inverted.svg
|
|
457
456
|
- assets/img/main_logo.svg
|
|
458
457
|
- assets/img/main_logo_condesed.svg
|
|
458
|
+
- assets/img/rdmkit_compact_logo.svg
|
|
459
459
|
- assets/img/safari-pinned-tab.svg
|
|
460
460
|
- assets/img/site.webmanifest
|
|
461
461
|
- assets/img/tess_logo.svg
|
data/assets/img/bio.tools.svg
DELETED
|
@@ -1,76 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
-
viewBox="0 0 684.7 475.1" style="enable-background:new 0 0 684.7 475.1;" xml:space="preserve">
|
|
5
|
-
<style type="text/css">
|
|
6
|
-
.st0{fill:#ffffff;}
|
|
7
|
-
.st1{fill:#544F4C;}
|
|
8
|
-
</style>
|
|
9
|
-
<path class="st0" d="M590.8,0h5.6c12.5,0.8,24.2,8.7,29.6,20c6.4,12.7,4.1,29.1-5.5,39.5c-8.4,9.5-22.1,14-34.5,11
|
|
10
|
-
c-8.7-1.8-16.4-7.3-21.5-14.5c-7.9,4-15.6,8.5-23.4,12.7c1,5.7,1.3,11.9-1,17.4c-3.9,10-14.3,17.2-25.1,16.7
|
|
11
|
-
c-7.1,0.1-13.9-3.2-18.9-8.1c-6.3,3.9-12.6,7.7-18.9,11.5c0.7,5.3,0.4,11-2.5,15.7c-5.1,9.4-18.1,13.4-27.5,8.1
|
|
12
|
-
c-1.5-0.5-3.1-2.5-4.7-1.4c-6.4,4.1-12.6,8.6-19,12.9c0.7,5.4-0.9,11.3-5.3,14.8c-4.8,4.2-12,4.5-17.5,1.6
|
|
13
|
-
c-24.9,18.5-49,38.2-71.1,60c-1.3,1-0.5,2.5-0.1,3.7c13.1,32.6,24.1,66.3,30.5,100.9c1.4,8.5,2.8,17,2.4,25.6
|
|
14
|
-
c-0.7,7.6-3.6,15.1-8.4,21.1c-5.6,7.4-16.4,11-24.9,6.6c-3.1-1.7-1.7-6,1-7.2c5.2-2.7,8.9-7.9,9.3-13.7c0.8-10.3-0.8-20.5-2.5-30.6
|
|
15
|
-
c-5.5-30.3-14.2-60-24.1-89.1c-9.1,10.1-18.2,20.3-26.8,31c4.9-0.2,9.9-0.6,14.8-0.1c3.9,0.2,6.9,4.2,6.3,8
|
|
16
|
-
c-0.4,3.5-3.7,6.4-7.3,6.3c-8.4,0.1-16.8,0-25.1,0c-6.3,8.3-12.4,16.8-18.3,25.4c14.5,0.1,29,0,43.5,0c3.8-0.1,7.4,3.3,7.3,7.2
|
|
17
|
-
c0.1,3.9-3.4,7.3-7.3,7.2c-17.6,0.1-35.2-0.1-52.7,0.1c-5.1,8.8-10.2,17.6-14.3,26.9c22.3,0,44.6,0,67,0c3.9-0.5,7.4,3,7.4,6.8
|
|
18
|
-
c0.3,4-3.4,7.6-7.4,7.4c-24.4,0-48.8,0-73.2,0c-8.5,22.5-13.6,47.9-5.7,71.2c4.3,12.4,12.5,23.6,23.7,30.5c2.8,1.6,2.9,5.5,0.9,7.8
|
|
19
|
-
c-3.6,4.4-10.1,4.3-14.9,2.4c-10.8-4.4-21-10.5-29.1-19c-11.3-11.4-17.2-27.3-17.5-43.2c-0.7-23.3,7.1-45.8,17-66.5
|
|
20
|
-
c9.6-19.9,21.7-38.6,35-56.3c20.4-27,43.6-51.8,69.2-73.8c-9.3-24.1-19.4-47.9-31.2-71c-18.2-35.8-39.6-70.3-67-99.9
|
|
21
|
-
c-1.7-1.7-2.5-3.9-3.1-6.1c3.8-1.1,6.7,1.7,9.1,4.2c46,45.5,81.3,101,107.6,159.8c22.9-19.4,47.5-36.6,72.6-52.9
|
|
22
|
-
c-1.6-7.2,1.9-15.3,8.9-18.1c5.4-2.5,11.4-0.7,16.2,2.1c6.4-3.8,12.7-7.8,19.1-11.6c-2-5.2-3-10.9-1-16.3
|
|
23
|
-
c2.8-8.4,11.3-14.5,20.2-14.2c6.8,0,13.3,3.8,17.1,9.3c6.1-3.3,12.1-6.9,18.2-10.1c-2.9-5.8-4.6-12.5-3-18.9
|
|
24
|
-
c2.1-11.5,12.8-20.7,24.5-21.2c10.4-0.7,20.8,5.4,25.3,14.8c7.8-3.9,15.5-7.9,23.3-11.8c-6.2-11.3-5.6-25.8,1.6-36.5
|
|
25
|
-
C569.9,7,580.1,1.1,590.8,0z"/>
|
|
26
|
-
<path class="st0" d="M294.8,399.7c2.3-1.4,5.5-2,7.8-0.2c1.8,1.7,1.3,4.4,0.6,6.5c-2.3,7.1-4.9,14.2-7.2,21.4c5.1-3.6,10.6-7.4,17-8
|
|
27
|
-
c5.4-0.6,11.8-0.2,15.8,4.1c4.2,4.4,4.4,11.1,3.3,16.7c-2.4,11.3-8.4,22.2-17.7,29.2c-6.6,4.7-15.3,7.4-23.3,4.7
|
|
28
|
-
c-3.9-1.2-6.4-4.6-8.1-8.1c-1.1,3.2-2.7,6.5-5.9,8.1c-2.5,1.4-6.3,1.7-8.1-1c-0.6-2-0.2-4,0.4-5.9c6.7-19.6,13.4-39.3,20-59
|
|
29
|
-
C290.5,405,291.8,401.6,294.8,399.7z M305.5,429.8c-8.6,2.7-14,11.1-16.3,19.4c-1.2,4.2-1.8,9.5,1.7,12.9c3.8,3.3,9.6,2.7,13.7,0.3
|
|
30
|
-
c7.1-4,11.1-11.8,12.9-19.5c0.8-3.8,1-8.4-1.8-11.4C313,428.9,308.9,428.9,305.5,429.8z"/>
|
|
31
|
-
<path class="st0" d="M359.6,399.8c2.6-1.1,6.3-1.1,7.9,1.6c2.4,7-7.5,14.5-13.3,9.5C351.5,406.7,355.5,401.3,359.6,399.8z"/>
|
|
32
|
-
<path class="st0" d="M629.5,399.7c2.4-1.4,5.7-1.9,8.1-0.1c2,2,1.2,5.1,0.5,7.4c-6.7,19.9-13.5,39.8-20.3,59.7c-1.2,3.6-3.8,7-7.6,8
|
|
33
|
-
c-2.2,0.5-5,0.5-6.3-1.8c-1.2-2.4-0.2-5.1,0.5-7.4c6.7-19.7,13.4-39.4,20.1-59C625.4,403.8,627.1,401.2,629.5,399.7z"/>
|
|
34
|
-
<path class="st0" d="M471.2,404.1c2.5-3.7,9.6-6,12-1c0.5,6-3,11.4-4.4,17c2.8,0.2,5.8-0.5,8.4,0.8c2.4,1.9,0.9,5.6-1.1,7.2
|
|
35
|
-
c-3.1,2.3-7.2,1.9-10.8,2.1c-3.1,9.7-6.6,19.3-9.7,29c-0.9,2.1-0.6,5.6,2.4,5.2c3.3,0.3,8.6-2.8,10.2,1.6c0.3,3.9-3.4,6.6-6.7,7.7
|
|
36
|
-
c-5,1.5-10.3,1.9-15.4,0.9c-2.7-0.5-5.4-2.5-5.8-5.4c-0.4-3.8,0.7-7.6,1.8-11.2c3.1-9.3,6.3-18.5,9.4-27.7c-2.3-0.2-6.3,0.1-6.4-3.2
|
|
37
|
-
c-0.2-5.1,5.6-7.4,9.9-6.9C467,414.8,468.1,409,471.2,404.1z"/>
|
|
38
|
-
<path class="st0" d="M352.5,419.7c2.1-0.8,4.6-1,6.6,0c2.3,1.5,2,4.6,1.3,6.8c-4.3,12.9-8.7,25.7-13,38.5c-1.2,3.9-3.4,7.8-7.4,9.3
|
|
39
|
-
c-2.3,0.8-5.7,1-7.1-1.5c-1.3-2.6-0.1-5.5,0.7-8.1c4.3-12.4,8.4-24.9,12.7-37.3C347.4,424.4,349.3,421.1,352.5,419.7z"/>
|
|
40
|
-
<path class="st0" d="M393.4,419.5c7.1-1.1,15.3-0.9,21.1,3.9c4.3,3.5,5.7,9.3,5.3,14.6c-1.5,16.7-14.1,32.4-30.7,36.1
|
|
41
|
-
c-7.1,1.6-15.3,1.6-21.5-2.8c-4.9-3.4-6.9-9.7-6.4-15.4C362.8,438.7,376.1,422.5,393.4,419.5z M392.4,429.7
|
|
42
|
-
c-8.2,2.3-13.1,10.3-15.7,17.8c-1.4,4.5-2.5,10,0.4,14.2c3.3,3.9,9.2,3.5,13.5,1.7c7.4-3.3,12-10.8,14.1-18.4
|
|
43
|
-
c1.2-4.2,1.9-9.2-0.9-12.9C401.1,428.8,396.3,428.8,392.4,429.7z"/>
|
|
44
|
-
<path class="st0" d="M520.1,419c6-0.3,12.5,0.5,17.1,4.7c4.3,3.7,5.6,9.8,5,15.2c-1.3,10.3-6.5,20.1-14.4,26.9
|
|
45
|
-
c-7.9,6.8-18.6,10.4-29,8.9c-5.3-0.7-10.7-3.5-13.2-8.3c-3.5-6.3-2.1-14,0.2-20.5C490.9,431.4,504.5,419.8,520.1,419z M514.5,429.8
|
|
46
|
-
c-8.9,2.7-13.7,11.8-16.1,20.1c-1.1,4.4-1.5,10.1,2.5,13.2c4,2.7,9.5,1.8,13.6-0.4c7.5-4.2,11.6-12.5,13.3-20.6
|
|
47
|
-
c0.8-3.8,0.5-8.5-2.8-11.2C522,428.7,518,428.9,514.5,429.8z"/>
|
|
48
|
-
<path class="st0" d="M577.4,419.5c6.7-1,14.1-0.7,19.8,3.4c4.5,3.2,6.4,8.8,6.2,14.1c-1.1,17.7-14.7,34.4-32.5,37.5
|
|
49
|
-
c-6.5,1-13.8,1-19.5-2.8c-5.1-3.3-7.4-9.7-6.9-15.6C546.1,438.6,559.7,422.2,577.4,419.5z M575.5,429.8
|
|
50
|
-
c-7.9,2.4-12.7,10.1-15.3,17.5c-1.5,4.5-2.7,10.1,0.2,14.3c3.2,4.1,9.3,3.6,13.7,1.8c8-3.6,12.5-12.1,14.5-20.3
|
|
51
|
-
c0.9-3.9,1-8.7-2.1-11.7C583.6,428.7,579.1,428.9,575.5,429.8z"/>
|
|
52
|
-
<path class="st0" d="M657.6,419.9c6.3-1.3,13.1-1.4,19.3,0.6c3.8,1.3,7.5,4.2,7.8,8.5c0.2,5.1-5.5,9.4-10.4,7.6
|
|
53
|
-
c-3.1-1.9-3.3-6.6-6.7-8.1c-4.7-1.5-10.6-0.7-14,3c-1.8,1.8-1.8,5.3,0.8,6.3c7.4,3.8,17.1,3.4,22.9,10.1c3.5,4.2,1.3,10-1.2,14.1
|
|
54
|
-
c-5.3,9-16.1,12.8-26,13c-6.2,0.3-13.2-0.5-17.9-5c-3.8-3.7-3.6-10.8,1.1-13.8c2.2-1.7,6.6-2.5,7.9,0.7c1.1,3,1.8,6.6,5,8.1
|
|
55
|
-
c5.3,2.3,12.1,1.4,16.3-2.6c2.1-2,3-6.1,0.2-7.9c-6.7-3.8-15.2-3.7-21.1-8.9c-3-2.5-3.7-6.9-2.4-10.4
|
|
56
|
-
C641.9,427.2,649.6,421.8,657.6,419.9z"/>
|
|
57
|
-
<path class="st0" d="M423.5,460.6c2.9-1.3,7.3-1,8.8,2.4c2.1,7.4-8.2,15.6-14.6,10.5C414.3,468.7,418.8,462.4,423.5,460.6z"/>
|
|
58
|
-
<path class="st1" d="M169.3,126.2c10.8-0.6,21.6,0,32.4-0.3c-9,42.8-18.5,85.4-27.6,128.2c-2.1,10.4-5,20.8-4.8,31.5
|
|
59
|
-
c-11.6,0-23.1,0-34.7,0c3.4-8.4,6.3-17.1,8.1-26c7.6-35.2,15.2-70.4,22.8-105.5C167.4,144.8,169.7,135.6,169.3,126.2z"/>
|
|
60
|
-
<path class="st1" d="M227.3,130.5c8.8-3.9,20.1,2.8,20.5,12.4c1.2,7.9-5,15.6-12.9,16.5c-7.3,1.1-14.8-3.9-16.6-11
|
|
61
|
-
C216.3,141.4,220.4,133.1,227.3,130.5z"/>
|
|
62
|
-
<path class="st1" d="M38.6,181.4c10.4-1,20.9-0.4,31.4-0.3c12.7-0.2,25.3-0.1,38-0.1c5.8,0.1,11.7,0,17.2,2c4.3,1.6,7.6,5.4,8.3,10
|
|
63
|
-
c0.6,4.3,0.3,8.6-0.5,12.8c-2.7,11.8-5.4,23.6-8,35.5c-30.4,0.1-60.8,0-91.3,0c-1.7,8.9-4.7,17.6-5.5,26.7c-0.4,3.7,4.1,4.1,6.7,4.1
|
|
64
|
-
c19.7,0.1,39.4,0,59.1,0c8.1,0.1,16.3-0.3,24.3-1.8c-2.1,5-4.2,10.1-6.2,15.1c-30,0-60.1,0-90.1,0c-5.9-0.1-12.4-0.5-17.3-4.2
|
|
65
|
-
c-3.1-2.2-4.2-6.1-4.7-9.6v-5.8c2.5-14,6.2-27.7,9.2-41.6c2.9-11,4-22.9,10.5-32.6C23.9,185.4,31.3,182.1,38.6,181.4z M43,200.9
|
|
66
|
-
c-1.9,9-4.2,17.9-6,26.9c20.8,0.1,41.6,0,62.4,0c2-8.4,3.8-16.8,5.9-25.2c0.6-2.2,0.4-4.5,0.1-6.8c-2-0.8-4.2-1.5-6.4-1.4
|
|
67
|
-
c-16,0-31.9-0.1-47.9,0C47.2,194.2,43.7,197.1,43,200.9z"/>
|
|
68
|
-
<path class="st1" d="M212.3,180.9c10.2-0.2,20.3,0.3,30.5-0.1c-5.4,25.4-11.4,50.6-17,76c-2,9.4-4.9,18.9-4.6,28.6
|
|
69
|
-
c-10.9,0.1-21.8,0-32.8,0c3-7.1,5.7-14.4,7.4-22c4.5-19.4,9-38.8,13.4-58.2C210.8,197.2,212.6,189.1,212.3,180.9z"/>
|
|
70
|
-
<path class="st1" d="M389.4,181.1c10.2-0.3,20.4,0.1,30.5-0.2c-5.7,26.4-11.9,52.7-17.8,79.1c-1.8,8.4-4.1,16.8-3.9,25.5
|
|
71
|
-
c-10.9,0-21.8,0-32.8,0c3-7.3,5.8-14.7,7.4-22.4c4.2-18.2,8.4-36.5,12.6-54.7C387.5,199.4,389.7,190.4,389.4,181.1z"/>
|
|
72
|
-
<path class="st1" d="M449.3,181c9.1-0.2,18.2,0,27.2-0.1c-0.2,3.4-0.6,6.9-1,10.3c2.9-5.4,8.3-9.8,14.7-9.9
|
|
73
|
-
c10.3-0.4,20.5-0.5,30.8,0c2,3.9,4.4,7.5,6.1,11.5c-2.1,2.1-3.9,4.6-6.1,6.7c-1.6,0.3-3.3,0-4.9-0.2c-10.3-1.4-20.7-1-31.1-1.1
|
|
74
|
-
c-3.1,0-6.8,0.2-8.9,2.9c-2.5,3.4-2.9,7.8-3.9,11.8c-2.7,12.1-5.4,24.1-8.1,36.2c-2.5,12.1-6.3,24-6.3,36.5c-10.8,0-21.6,0-32.4,0
|
|
75
|
-
c3.5-7.6,5.4-15.8,7.4-24c4.3-18.8,8.5-37.6,12.8-56.3C447.5,197.2,449.6,189.2,449.3,181z"/>
|
|
76
|
-
</svg>
|