intia-theme 0.1.12 → 0.1.13
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/_includes/glossary.html +15 -0
- data/_includes/story-slider.html +3 -1
- data/_layouts/default.html +1 -1
- data/_sass/_layout.scss +42 -18
- data/assets/img/download_link.png +0 -0
- data/assets/img/internal-link.png +0 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b88ed09bc1f742257defe1d4efc91e4a8ed4de01116a8ef9ab09f6cb554cf34c
|
|
4
|
+
data.tar.gz: 6ecbd3fb415169e9adab1f8b886124cddd3ba845a99878248863787e0f5ed8d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7890328c21d1f0d1f495a352e8a7cdce3fca2b623406c2ad04d54801cfde487090f469b3a45d34b3ef57bbb5eb82e5c6c6d55211e594202b20172548898b4759
|
|
7
|
+
data.tar.gz: 003d6fff816a6e60b26ad474d99304f863927f66659e8220250c4ddd8c572d3fe88bcdbfcb60044854eac79144a9fe07f72f9943a74931aa11c57fa49e8887af
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{% assign entries=site.glossary | sort:page.sort %}
|
|
2
|
+
{% for entry in entries %}
|
|
3
|
+
<h2> {{entry.title}} </h2>
|
|
4
|
+
<p class="text-green has-text-weight-bold">{{entry.subtitle}}</p>
|
|
5
|
+
|
|
6
|
+
{{entry.abstract}}
|
|
7
|
+
|
|
8
|
+
<a href="{{ entry.url | relative_url }}" class="button float_right is-rounded has-text-centert is-dark {% if item.link == page.url %}is-active{% endif %}">
|
|
9
|
+
<span>Mehr lesen</span>
|
|
10
|
+
<span class="icon is-small">
|
|
11
|
+
<i class="fas fa-chevron-right fa-xs"></i>
|
|
12
|
+
</span>
|
|
13
|
+
</a>
|
|
14
|
+
|
|
15
|
+
{% endfor %}
|
data/_includes/story-slider.html
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{% if page.story_slider %}
|
|
2
2
|
<div class="green">
|
|
3
|
+
<div class="container">
|
|
3
4
|
<h1 class="slider-titel">Aktuelles</h1>
|
|
4
5
|
|
|
5
6
|
<div class="carousel">
|
|
@@ -35,6 +36,7 @@
|
|
|
35
36
|
</div>
|
|
36
37
|
</div>
|
|
37
38
|
{% endfor %}
|
|
38
|
-
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
39
41
|
</div>
|
|
40
42
|
{% endif %}
|
data/_layouts/default.html
CHANGED
|
@@ -24,7 +24,7 @@ The Default layout that everything is using
|
|
|
24
24
|
{% include latest-story.html %}
|
|
25
25
|
{% include contact.html %}
|
|
26
26
|
<div class="columns is-centered">
|
|
27
|
-
<div id="content" class="column is-10-desktop is-12-tablet">
|
|
27
|
+
<div id="content" class="container column is-10-desktop is-12-tablet">
|
|
28
28
|
{{content | markdownify}}
|
|
29
29
|
</div>
|
|
30
30
|
</div>
|
data/_sass/_layout.scss
CHANGED
|
@@ -65,6 +65,8 @@ div.highlight {
|
|
|
65
65
|
.overtitle {
|
|
66
66
|
margin-bottom: 0 !important;
|
|
67
67
|
padding-bottom: 0 !important;
|
|
68
|
+
text-transform: uppercase;
|
|
69
|
+
letter-spacing: 0.3rem;
|
|
68
70
|
}
|
|
69
71
|
.title-with-overtitle {
|
|
70
72
|
margin-top: 0 !important;
|
|
@@ -103,6 +105,17 @@ img.is-rounded {
|
|
|
103
105
|
display: block;
|
|
104
106
|
width: 100%;
|
|
105
107
|
}
|
|
108
|
+
.text-green {
|
|
109
|
+
color: $primary-dark;
|
|
110
|
+
}
|
|
111
|
+
a.tooltip-link {
|
|
112
|
+
color: $primary-dark;
|
|
113
|
+
font-weight: 600;
|
|
114
|
+
}
|
|
115
|
+
a .tooltip-popup {
|
|
116
|
+
color: #000;
|
|
117
|
+
font-weight: normal;
|
|
118
|
+
}
|
|
106
119
|
|
|
107
120
|
// Buttons - Mybe global in Buttons und raus damit?
|
|
108
121
|
.button.is-dark {
|
|
@@ -176,11 +189,6 @@ img.is-rounded {
|
|
|
176
189
|
top: -175px;
|
|
177
190
|
position: inherit;
|
|
178
191
|
}
|
|
179
|
-
.home .hero-body img {
|
|
180
|
-
max-width: 40%;
|
|
181
|
-
height: 66vh;
|
|
182
|
-
object-fit: cover;
|
|
183
|
-
}
|
|
184
192
|
.hero {
|
|
185
193
|
display: block;
|
|
186
194
|
}
|
|
@@ -197,7 +205,7 @@ img.is-rounded {
|
|
|
197
205
|
padding: 16px !important;
|
|
198
206
|
}
|
|
199
207
|
|
|
200
|
-
.hero-body .container .button {
|
|
208
|
+
.hero-body .container .button, .float_right {
|
|
201
209
|
float: right;
|
|
202
210
|
}
|
|
203
211
|
.home .hero-body h1,
|
|
@@ -216,9 +224,19 @@ img.is-rounded {
|
|
|
216
224
|
margin-right: auto;
|
|
217
225
|
display: block;
|
|
218
226
|
top: 0;
|
|
219
|
-
max-height: 50vh;
|
|
220
227
|
max-width: auto;
|
|
221
228
|
}
|
|
229
|
+
.home .hero-body img {
|
|
230
|
+
max-width: 37%;
|
|
231
|
+
height: auto;
|
|
232
|
+
aspect-ratio: 5 / 7;
|
|
233
|
+
object-fit: cover;
|
|
234
|
+
}
|
|
235
|
+
.subpage .hero-body img {
|
|
236
|
+
object-fit: cover;
|
|
237
|
+
max-height: 30vw;
|
|
238
|
+
width: 100%;
|
|
239
|
+
}
|
|
222
240
|
.buttons-hero {
|
|
223
241
|
display: none;
|
|
224
242
|
}
|
|
@@ -328,8 +346,8 @@ img.is-rounded {
|
|
|
328
346
|
box-shadow: none;
|
|
329
347
|
}
|
|
330
348
|
.story-carousel-item {
|
|
331
|
-
margin-left:
|
|
332
|
-
margin-right:
|
|
349
|
+
margin-left: 2%;
|
|
350
|
+
margin-right: 2%;
|
|
333
351
|
}
|
|
334
352
|
.slider-container .card-content .content {
|
|
335
353
|
margin: 50px;
|
|
@@ -538,19 +556,25 @@ footer .columns {
|
|
|
538
556
|
|
|
539
557
|
// Tool-Tip
|
|
540
558
|
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
display: block;
|
|
544
|
-
}
|
|
545
|
-
.tooltip-popup {
|
|
546
|
-
position: relative;
|
|
559
|
+
.tooltip-popup {
|
|
560
|
+
position: absolute;
|
|
547
561
|
width: 20vw;
|
|
562
|
+
z-index: 30;
|
|
548
563
|
visibility: hidden;
|
|
549
564
|
display: none;
|
|
550
|
-
background:
|
|
551
|
-
border-radius: 65px;
|
|
565
|
+
background: #e7f2ea;
|
|
566
|
+
border-radius: 65px;
|
|
567
|
+
padding: 50px;
|
|
568
|
+
margin-top: -10px;
|
|
569
|
+
margin-right: 30px;
|
|
570
|
+
}
|
|
571
|
+
a:hover .tooltip-popup, .show {
|
|
572
|
+
visibility: visible;
|
|
573
|
+
display: block;
|
|
574
|
+
}
|
|
575
|
+
.tooltip-popup h2{
|
|
576
|
+
padding-top: 0;
|
|
552
577
|
}
|
|
553
|
-
|
|
554
578
|
// Contect
|
|
555
579
|
|
|
556
580
|
.input,
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: intia-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marc Schmidt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -36,6 +36,7 @@ files:
|
|
|
36
36
|
- _includes/button.html
|
|
37
37
|
- _includes/contact.html
|
|
38
38
|
- _includes/footer.html
|
|
39
|
+
- _includes/glossary.html
|
|
39
40
|
- _includes/head-scripts.html
|
|
40
41
|
- _includes/head.html
|
|
41
42
|
- _includes/header.html
|
|
@@ -55,7 +56,9 @@ files:
|
|
|
55
56
|
- assets/img/404.png
|
|
56
57
|
- assets/img/arrow-down.png
|
|
57
58
|
- assets/img/arrow-left.png
|
|
59
|
+
- assets/img/download_link.png
|
|
58
60
|
- assets/img/external-link.png
|
|
61
|
+
- assets/img/internal-link.png
|
|
59
62
|
- assets/img/logo-black.png
|
|
60
63
|
- assets/img/logo-dites.png
|
|
61
64
|
- assets/img/logo-green-white.png
|