jumbo-jekyll-theme 3.0.17 → 3.0.18
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 +12 -3
- data/_sass/bootstrap/_variables.scss +6 -7
- data/assets/js/package-extended.js +0 -2
- 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: 2bfde73fb67fd8f4bd4adcf160aa845b39f01f045b43bca52fa3f35f0ac190a8
|
4
|
+
data.tar.gz: 3e193109b04480735917a5f68190f492a36462b76f5c18247c4a09cc81dd725c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41f1d71b5893ebae7eca689998bef588a2b12da1a38a03b40830419fd76d1bb61c27551db2a2c511db943a4e7fefce1f4d337a579d70f59ffb939d038b88871a
|
7
|
+
data.tar.gz: d582a84d9cd67fc91193a7aab422f02efbefd08a34e0b132a898f14516abd58929c990bc4f52db969e101d6beec58d976c473171ea31e468fb58b3bb89b58bfd
|
data/_includes/jumbotron.html
CHANGED
@@ -7,9 +7,18 @@
|
|
7
7
|
<div id="jumbotron-content" class=" flex-container"> <!--Jumbotron div -->
|
8
8
|
<div class="container flex-center" id="jumbotron-text"> <!--Container -->
|
9
9
|
{% if page.jumbotron.title %}
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
{% if page.jumbotron.title.lines %}
|
11
|
+
<h1>
|
12
|
+
|
13
|
+
{% for line in page.jumbotron.title.lines %}
|
14
|
+
|
15
|
+
{% endfor %}
|
16
|
+
</h1>
|
17
|
+
{% else %}
|
18
|
+
<h1 class="{% if page.jumbotron.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
19
|
+
{{page.jumbotron.title}}
|
20
|
+
</h1>
|
21
|
+
{% endif %}
|
13
22
|
{% elsif page.title %}
|
14
23
|
<h1 class="{% if page.jumbotron.animation == "fade" %}fade-in-one{% endif %}" id="jumbotron-heading">
|
15
24
|
{{page.title}}
|
@@ -342,21 +342,21 @@ $screen-phone: $screen-xs-min !default;
|
|
342
342
|
|
343
343
|
// Small screen / tablet
|
344
344
|
//** Deprecated `$screen-sm` as of v3.0.1
|
345
|
-
$screen-sm:
|
345
|
+
$screen-sm: 1000px !default;
|
346
346
|
$screen-sm-min: $screen-sm !default;
|
347
347
|
//** Deprecated `$screen-tablet` as of v3.0.1
|
348
348
|
$screen-tablet: $screen-sm-min !default;
|
349
349
|
|
350
350
|
// Medium screen / desktop
|
351
351
|
//** Deprecated `$screen-md` as of v3.0.1
|
352
|
-
$screen-md:
|
352
|
+
$screen-md: 1200px !default;
|
353
353
|
$screen-md-min: $screen-md !default;
|
354
354
|
//** Deprecated `$screen-desktop` as of v3.0.1
|
355
355
|
$screen-desktop: $screen-md-min !default;
|
356
356
|
|
357
357
|
// Large screen / wide desktop
|
358
358
|
//** Deprecated `$screen-lg` as of v3.0.1
|
359
|
-
$screen-lg:
|
359
|
+
$screen-lg: 1400px !default;
|
360
360
|
$screen-lg-min: $screen-lg !default;
|
361
361
|
//** Deprecated `$screen-lg-desktop` as of v3.0.1
|
362
362
|
$screen-lg-desktop: $screen-lg-min !default;
|
@@ -366,7 +366,6 @@ $screen-xs-max: ($screen-sm-min - 1) !default;
|
|
366
366
|
$screen-sm-max: ($screen-md-min - 1) !default;
|
367
367
|
$screen-md-max: ($screen-lg-min - 1) !default;
|
368
368
|
|
369
|
-
|
370
369
|
//== Grid system
|
371
370
|
//
|
372
371
|
//## Define your custom responsive grid.
|
@@ -387,17 +386,17 @@ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
|
387
386
|
//## Define the maximum width of `.container` for different screen sizes.
|
388
387
|
|
389
388
|
// Small screen / tablet
|
390
|
-
$container-tablet: (
|
389
|
+
$container-tablet: (970px + $grid-gutter-width) !default;
|
391
390
|
//** For `$screen-sm-min` and up.
|
392
391
|
$container-sm: $container-tablet !default;
|
393
392
|
|
394
393
|
// Medium screen / desktop
|
395
|
-
$container-desktop: (
|
394
|
+
$container-desktop: (1100px + $grid-gutter-width) !default;
|
396
395
|
//** For `$screen-md-min` and up.
|
397
396
|
$container-md: $container-desktop !default;
|
398
397
|
|
399
398
|
// Large screen / wide desktop
|
400
|
-
$container-large-desktop: (
|
399
|
+
$container-large-desktop: (1370px + $grid-gutter-width) !default;
|
401
400
|
//** For `$screen-lg-min` and up.
|
402
401
|
$container-lg: $container-large-desktop !default;
|
403
402
|
|