intia-theme 0.1.9 → 0.1.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd72e93766460608e71c0175ba728af09e1da5956105b12758fd4e24151f7dec
4
- data.tar.gz: 57b9b1286e1ae0eec1bd47122f986bfe21233d87abfa11acf1403f607f628726
3
+ metadata.gz: b88ed09bc1f742257defe1d4efc91e4a8ed4de01116a8ef9ab09f6cb554cf34c
4
+ data.tar.gz: 6ecbd3fb415169e9adab1f8b886124cddd3ba845a99878248863787e0f5ed8d3
5
5
  SHA512:
6
- metadata.gz: ac8804eae4a7f8a7b6b9715c5b8d4a0af43034106eddd039b9bf176ee2d22d26716012466b11e5a7c7ea2218de80c75a4b68b20fc2986b44b57be83a7dc1891f
7
- data.tar.gz: 0ad0fdc0bec3d40c8a53d7833d4d3cfed6e9bdca0eb7a635304ba144fdbbfaa9d6808036faab330f71ab78291619bc6e2efb78ddda846b7a26b16ae157c1cbb9
6
+ metadata.gz: 7890328c21d1f0d1f495a352e8a7cdce3fca2b623406c2ad04d54801cfde487090f469b3a45d34b3ef57bbb5eb82e5c6c6d55211e594202b20172548898b4759
7
+ data.tar.gz: 003d6fff816a6e60b26ad474d99304f863927f66659e8220250c4ddd8c572d3fe88bcdbfcb60044854eac79144a9fe07f72f9943a74931aa11c57fa49e8887af
@@ -1,10 +1,8 @@
1
1
  {% if page.contact %}
2
2
  <div class="green contact">
3
- <h1>Write us</h1>
4
- Lorem ipsum leo risus, porta ac consectetur ac, vestibulum at eros. Donec id elit non mi porta gravida at eget
5
- metus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras mattis
6
- consectetur purus sit amet fermentum.
7
- <form action="https://submit-form.com/ujaWfjyi" class="columns">
3
+ <h1>{{ site.data.contact.title }}</h1>
4
+ {{ site.data.contact.introduction }}
5
+ <form action="{{ site.data.contact.action }}" class="columns">
8
6
  <div class="column is-6">
9
7
  <div class="field">
10
8
  <label class="label">Name</label>
@@ -60,7 +58,7 @@
60
58
  </div>
61
59
 
62
60
  <div class="column">
63
- <label for="agree">Ich akzeptiere das für die Daten-Erfassung der Dienst Formspark.io genutzt wird. Für nähere Informationen zur Daten-Erfassung <a href="https://formspark.io/legal/privacy-policy/">hier klicken</a>.</label><br><br>
61
+ <label for="agree">{{ site.data.contact.checkbox }}</label><br><br>
64
62
  <button class="button is-rounded is-dark" type="submit">Abschicken</button>
65
63
  </div>
66
64
  </div>
@@ -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 %}
@@ -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
- </div>
39
+ </div>
40
+ </div>
39
41
  </div>
40
42
  {% endif %}
@@ -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,
@@ -218,6 +226,17 @@ img.is-rounded {
218
226
  top: 0;
219
227
  max-width: auto;
220
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
+ }
221
240
  .buttons-hero {
222
241
  display: none;
223
242
  }
@@ -327,8 +346,8 @@ img.is-rounded {
327
346
  box-shadow: none;
328
347
  }
329
348
  .story-carousel-item {
330
- margin-left: 5%;
331
- margin-right: 5%;
349
+ margin-left: 2%;
350
+ margin-right: 2%;
332
351
  }
333
352
  .slider-container .card-content .content {
334
353
  margin: 50px;
@@ -451,6 +470,7 @@ img.is-rounded {
451
470
  background-color: white;
452
471
  padding-left: 0;
453
472
  padding-right: 0;
473
+ object-fit: contain;
454
474
  height: auto;
455
475
  width: auto;
456
476
  }
@@ -536,19 +556,25 @@ footer .columns {
536
556
 
537
557
  // Tool-Tip
538
558
 
539
- a:hover .tooltip-popup {
540
- visibility: visible;
541
- display: block;
542
- }
543
- .tooltip-popup {
544
- position: relative;
559
+ .tooltip-popup {
560
+ position: absolute;
545
561
  width: 20vw;
562
+ z-index: 30;
546
563
  visibility: hidden;
547
564
  display: none;
548
- background: $light;
549
- 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;
550
577
  }
551
-
552
578
  // Contect
553
579
 
554
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.9
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-10-27 00:00:00.000000000 Z
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