intia-theme 0.1.1 → 0.1.2
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/hero.html +1 -1
- data/_includes/introduction.html +1 -1
- data/_includes/story-slider.html +1 -1
- data/_sass/_layout.scss +11 -3
- data/assets/img/arrow-down.png +0 -0
- data/assets/img/arrow-left.png +0 -0
- data/assets/js/main.js +4 -1
- metadata +4 -3
- data/assets/img/arrow.png +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d59b8f49344fa7667b64b29875c0ccf80dc98b37635cfb046861a4e2ea1b4078
|
|
4
|
+
data.tar.gz: a2d0b40d0315fabedacb820f9c930c858cfda7dfa985aa3ea37171688a484487
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94c440bde306ad2a798c7bbe1f04d030c47a0f33cd9a5ba29499618dda49ca9e9814118372b4a9b049a4583bb1d05dc17ed291cfe195c4a335f29fa4742f5bd4
|
|
7
|
+
data.tar.gz: e0e851c54fca092d0693c30b886596c73f0f160a1da55ab4427746083b18771b497ec5b70fa3a2ed8ecc85fc1124a33f3337121c97fc33779873766afed6e6ca
|
data/_includes/hero.html
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
</a>
|
|
14
14
|
{% endif %}
|
|
15
15
|
</div>
|
|
16
|
-
<img src="../assets/img/arrow.png" alt="placeholder" class="arrow-image is-pulled-left is-hidden-mobile">
|
|
16
|
+
<img src="../assets/img/arrow-down.png" alt="placeholder" class="arrow-image is-pulled-left is-hidden-mobile">
|
|
17
17
|
</div>
|
|
18
18
|
</section>
|
|
19
19
|
<i class="fas {{ section.icon }}"></i>
|
data/_includes/introduction.html
CHANGED
data/_includes/story-slider.html
CHANGED
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
</div>
|
|
37
37
|
{% endfor %}
|
|
38
38
|
</div>
|
|
39
|
-
<img src="../assets/img/arrow.png" alt="placeholder" class="arrow-image is-pulled-right is-hidden-mobile">
|
|
39
|
+
<img src="../assets/img/arrow-down.png" alt="placeholder" class="arrow-image is-pulled-right is-hidden-mobile">
|
|
40
40
|
</div>
|
|
41
41
|
{% endif %}
|
data/_sass/_layout.scss
CHANGED
|
@@ -105,6 +105,10 @@ img.is-rounded {
|
|
|
105
105
|
.button.is-rounded {
|
|
106
106
|
padding-right: 0em !important;
|
|
107
107
|
}
|
|
108
|
+
.button.button.is-rounded:not(.navbar-item) {
|
|
109
|
+
padding-left: 1.5em !important;
|
|
110
|
+
padding-right: 1.5em !important;
|
|
111
|
+
}
|
|
108
112
|
.navbar-dropdown .button.is-rounded {
|
|
109
113
|
padding-right: auto !important;
|
|
110
114
|
}
|
|
@@ -176,6 +180,7 @@ img.is-rounded {
|
|
|
176
180
|
|
|
177
181
|
.card-content h2 p {
|
|
178
182
|
padding-left: 15px;
|
|
183
|
+
padding-bottom: 0.5em;
|
|
179
184
|
}
|
|
180
185
|
|
|
181
186
|
.card-image:first-child img {
|
|
@@ -227,9 +232,6 @@ img.is-rounded {
|
|
|
227
232
|
.slider {
|
|
228
233
|
box-shadow: none;
|
|
229
234
|
}
|
|
230
|
-
.slider-item {
|
|
231
|
-
// padding-left: 50px;
|
|
232
|
-
}
|
|
233
235
|
.story-carousel-item {
|
|
234
236
|
margin-left: 5%;
|
|
235
237
|
margin-right: 5%;
|
|
@@ -285,6 +287,12 @@ img.is-rounded {
|
|
|
285
287
|
.slider-pagination {
|
|
286
288
|
bottom: -40px !important;
|
|
287
289
|
}
|
|
290
|
+
.slider-navigation-previous,
|
|
291
|
+
.slider-navigation-next {
|
|
292
|
+
background: transparent !important;
|
|
293
|
+
border: 0px !important;
|
|
294
|
+
box-shadow: none !important;
|
|
295
|
+
}
|
|
288
296
|
// Footer
|
|
289
297
|
|
|
290
298
|
.footer {
|
|
Binary file
|
|
Binary file
|
data/assets/js/main.js
CHANGED
|
@@ -2,5 +2,8 @@ import './bulma-carousel/js/bulma-carousel.js';
|
|
|
2
2
|
// Initialize all elements with carousel class.
|
|
3
3
|
const carousels = bulmaCarousel.attach('.carousel',{
|
|
4
4
|
slidesToScroll: 1,
|
|
5
|
-
slidesToShow: 1
|
|
5
|
+
slidesToShow: 1,
|
|
6
|
+
icons: {
|
|
7
|
+
'previous': `<img src="../assets/img/arrow-left.png"></img>`,
|
|
8
|
+
'next': `<img src="../assets/img/arrow-left.png" style="transform: rotate(180deg);"></img>`}
|
|
6
9
|
});
|
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.2
|
|
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-
|
|
11
|
+
date: 2021-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -45,7 +45,8 @@ files:
|
|
|
45
45
|
- _sass/_layout.scss
|
|
46
46
|
- _sass/_main.scss
|
|
47
47
|
- _sass/_print.scss
|
|
48
|
-
- assets/img/arrow.png
|
|
48
|
+
- assets/img/arrow-down.png
|
|
49
|
+
- assets/img/arrow-left.png
|
|
49
50
|
- assets/img/logo-black.png
|
|
50
51
|
- assets/img/logo-dites.png
|
|
51
52
|
- assets/img/logo-green.png
|
data/assets/img/arrow.png
DELETED
|
Binary file
|