jumbo-jekyll-theme 3.6.4 → 3.7.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 +4 -1
- data/_sass/app/custom.scss +1 -1
- data/_sass/app/overrides.scss +3 -1
- data/_sass/core/homepage.scss +1 -1
- data/_sass/core/jumbotron.scss +2 -1
- data/_sass/core/triangle-divider.scss +27 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 126da407ef4edc5b382bfd110a19cdb1ceafc354f919f4fd0e4371702df6332a
|
4
|
+
data.tar.gz: cabee8242dfcd5e72354f2951b72b695f3dea6dfc11bb18bef6f32e0268a6763
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d20e70b3f4952a5862c01d149432ff9182b9f6e1e1caabcb172b5d87e4b93471757b92c0001a2b203ecc2008c60afcc045e361a401859c8de95df169a988163a
|
7
|
+
data.tar.gz: d968b0aeac9966876b761a62a128ad5c45b67948963820433aa8df455f386794d017bcba4561853c6e4937ba6f65c0eaf4399a151e7e18e2220dfd31038a1a58
|
data/_includes/jumbotron.html
CHANGED
@@ -68,5 +68,8 @@
|
|
68
68
|
{% include {{page.jumbotron.include}} %}
|
69
69
|
{% endif %}
|
70
70
|
</div><!-- End Jumbotron Container Div -->
|
71
|
-
</div> <!--End Jumbotron div -->
|
71
|
+
</div> <!--End Jumbotron div -->
|
72
|
+
{% if page.jumbotron.triangle-divider %}
|
73
|
+
<div class="big-triangle"></div>
|
74
|
+
{% endif %}
|
72
75
|
</div> <!--row -->
|
data/_sass/app/custom.scss
CHANGED
@@ -1 +1 @@
|
|
1
|
-
/* Add your custom styles to this sass partial */
|
1
|
+
/* Add your global custom styles to this sass partial */
|
data/_sass/app/overrides.scss
CHANGED
@@ -48,4 +48,6 @@ $post-tag-bg: #d7d7d7 !default;
|
|
48
48
|
$post-tag-color: #000 !default;
|
49
49
|
$post-tag-border: #8b8b8b !default;
|
50
50
|
$post-tag-hover-bg: #1f1f1f !default;
|
51
|
-
$post-tag-hover-color: #fff !default;
|
51
|
+
$post-tag-hover-color: #fff !default;
|
52
|
+
// Triangle Divider
|
53
|
+
$triangle-divider-bg-color: #fff !default;
|
data/_sass/core/homepage.scss
CHANGED
data/_sass/core/jumbotron.scss
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
/* big triangle */
|
2
|
+
.big-triangle:before {
|
3
|
+
right: 50%;
|
4
|
+
border-right: 1500px solid transparent;
|
5
|
+
border-left: 1500px solid;
|
6
|
+
}
|
7
|
+
|
8
|
+
.big-triangle:after {
|
9
|
+
left: 50%;
|
10
|
+
border-left: 1500px solid transparent;
|
11
|
+
border-right: 1500px solid;
|
12
|
+
}
|
13
|
+
|
14
|
+
.big-triangle:after, .big-triangle:before {
|
15
|
+
content: '';
|
16
|
+
position: absolute;
|
17
|
+
bottom: 0;
|
18
|
+
width: 50%;
|
19
|
+
z-index: 100;
|
20
|
+
/* change the hieght and the color below */
|
21
|
+
border-bottom: 160px solid $triangle-divider-bg-color;
|
22
|
+
-moz-transform: rotate(0.000001deg);
|
23
|
+
-webkit-transform: rotate(0.000001deg);
|
24
|
+
-o-transform: rotate(0.000001deg);
|
25
|
+
-ms-transform: rotate(0.000001deg);
|
26
|
+
transform: rotate(0.000001deg);
|
27
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jumbo-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Kirkby
|
@@ -519,6 +519,7 @@ files:
|
|
519
519
|
- _sass/core/syntax.scss
|
520
520
|
- _sass/core/tables.scss
|
521
521
|
- _sass/core/theme.scss
|
522
|
+
- _sass/core/triangle-divider.scss
|
522
523
|
- _sass/core/universal-nav.scss
|
523
524
|
- _sass/core/youtube-lazy.scss
|
524
525
|
- _sass/core/youtube.scss
|