jumbo-jekyll-theme 3.9.9 → 4.0.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/_includes/jumbotron.html +1 -0
- data/_sass/core/jumbotron.scss +17 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa18396e23ec3a35a2fdae4a3f90f986812bcf73bccc2a2c10389201b4a09547
|
|
4
|
+
data.tar.gz: d09b383d2877266c23a8930664f1d143bc9e35d78e202ead51faeccb64860f14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46fbd0bc641f01cea43f90b0d2374d4b03b08189ad278535b7d2ac3ae3fd6f5ead088f807cf849753576528e743780c8032374dc1b98c952e6006eebf5cb3cf6
|
|
7
|
+
data.tar.gz: 5c564e9d8354bd7e751ed09c4012dfbe463f873c8ea011ad9d502eb49d62cbcdfd2a7cdb94f67e4b4178847bb42686246b64e4805b3f8a1825f522e71c9186cc
|
data/_includes/jumbotron.html
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
</div>
|
|
33
33
|
{% else %}
|
|
34
34
|
<div class="{% if page.jumbotron.video %}video {% endif %}row {% if page.jumbotron.background-image %}background-image {% endif %}
|
|
35
|
+
{% if page.jumbotron.carousel-images %}carousel-header{% endif %}
|
|
35
36
|
{% if page.image.background-class %}{{page.image.background-class}}{% endif %}{% if site.data.settings.jumbotron.darken %}overlay{% endif %}" id="jumbotron"
|
|
36
37
|
{% if page.jumbotron.background-image %}
|
|
37
38
|
style="background-image: url('{{page.jumbotron.background-image}}');"
|
data/_sass/core/jumbotron.scss
CHANGED
|
@@ -154,6 +154,9 @@ div.jumbotron-image{
|
|
|
154
154
|
h2.slide-title.big-title {
|
|
155
155
|
font-size: 60px;
|
|
156
156
|
font-weight: bold;
|
|
157
|
+
@media(max-width: $screen-sm-min) {
|
|
158
|
+
font-size: 38px !important;
|
|
159
|
+
}
|
|
157
160
|
}
|
|
158
161
|
.owl-slide {
|
|
159
162
|
background-image: url('https://staging.linaro.org/assets/images/content/bkk19-website-banner.png');
|
|
@@ -173,6 +176,9 @@ div.jumbotron-image{
|
|
|
173
176
|
}
|
|
174
177
|
h2.slide-title.desc-title {
|
|
175
178
|
margin-bottom: 0px;
|
|
179
|
+
@media(max-width: $screen-sm-min) {
|
|
180
|
+
font-size: 24px !important;
|
|
181
|
+
}
|
|
176
182
|
}
|
|
177
183
|
|
|
178
184
|
div.owl--text {
|
|
@@ -195,6 +201,9 @@ div.jumbotron-image{
|
|
|
195
201
|
p {
|
|
196
202
|
color: white;
|
|
197
203
|
margin-bottom: 5px;
|
|
204
|
+
@media(max-width: $screen-sm-min) {
|
|
205
|
+
font-size: 12px !important;
|
|
206
|
+
}
|
|
198
207
|
}
|
|
199
208
|
a.btn {
|
|
200
209
|
position: relative;
|
|
@@ -245,7 +254,14 @@ div.jumbotron-image{
|
|
|
245
254
|
}
|
|
246
255
|
}
|
|
247
256
|
}
|
|
248
|
-
|
|
257
|
+
#wrapper .carousel-header .big-triangle {
|
|
258
|
+
z-index: -1;
|
|
259
|
+
position: absolute;
|
|
260
|
+
bottom: 0px;
|
|
261
|
+
}
|
|
262
|
+
.item.owl-slide.flex-center.overlay {
|
|
263
|
+
padding: 10px;
|
|
264
|
+
}
|
|
249
265
|
body,
|
|
250
266
|
html {
|
|
251
267
|
height: 100%;
|