jumbo-jekyll-theme 3.0.10 → 3.0.11
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 -1
- data/_sass/core/jumbotron.scss +9 -1
- data/_sass/core/theme.scss +20 -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: 3ccb020ad4832b603d292e7cd9dcc56521c6dd1e3e51543c057325c82cb130aa
|
|
4
|
+
data.tar.gz: ab8754ebb16eb42f35e0411c075f243d3b1ec447e43401d6a2ddc4f6290899a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 153697a2ec104d7589a8699890fb3c78985aab1c72a2c75c340c42e7ca3dfe6d97b68bc6638971aa0a913ee20e6f98674460afc0a1daf53d2573e1c56287ef6c
|
|
7
|
+
data.tar.gz: b8816e92c3784283a665ad0f921aa0c3c02c11aa74ed710f5acd15ffade2ec860156a8d6498e5d03e922d5d7284be7984ab4edd9442d889c9053d0a3796ac022
|
data/_includes/jumbotron.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="row {% if site.data.settings.jumbotron.darken %}overlay{% endif %}" id="jumbotron"
|
|
1
|
+
<div class="row {% if page.jumbotron.background-image %}background-image {% endif %}{% if site.data.settings.jumbotron.darken %}overlay{% endif %}" id="jumbotron"
|
|
2
2
|
{% if page.jumbotron.background-image %}
|
|
3
3
|
style="background-image: url('{{page.jumbotron.background-image}}');"
|
|
4
4
|
{% else %}
|
data/_sass/core/jumbotron.scss
CHANGED
|
@@ -21,13 +21,21 @@ div#jumbotron-content {
|
|
|
21
21
|
}
|
|
22
22
|
#jumbotron.overlay:before {
|
|
23
23
|
content: '';
|
|
24
|
-
position:
|
|
24
|
+
position: absolute;
|
|
25
25
|
top: 0;
|
|
26
26
|
right: 0;
|
|
27
27
|
bottom: 0;
|
|
28
|
+
height: $jumbotron-height;
|
|
28
29
|
left: 0;
|
|
29
30
|
background-image: linear-gradient(to bottom right, #000, #000);
|
|
30
31
|
opacity: .5;
|
|
32
|
+
width: 100%;
|
|
33
|
+
z-index: -1;
|
|
34
|
+
}
|
|
35
|
+
div#jumbotron.background-image {
|
|
36
|
+
background-size: cover;
|
|
37
|
+
background-position: center center;
|
|
38
|
+
background-repeat: no-repeat;
|
|
31
39
|
}
|
|
32
40
|
div.jumbotron-image{
|
|
33
41
|
background-repeat: no-repeat;
|
data/_sass/core/theme.scss
CHANGED
|
@@ -637,4 +637,23 @@ ul {
|
|
|
637
637
|
}
|
|
638
638
|
.flex-container {
|
|
639
639
|
display: flex;
|
|
640
|
-
}
|
|
640
|
+
}
|
|
641
|
+
// Email Button
|
|
642
|
+
#wrapper .email {
|
|
643
|
+
height: 50px;
|
|
644
|
+
background-color: $brand-primary;
|
|
645
|
+
width: 200px;
|
|
646
|
+
line-height: 30px;
|
|
647
|
+
text-align: center;
|
|
648
|
+
color: white;
|
|
649
|
+
font-weight: bold;
|
|
650
|
+
border: 1px solid #9e9e9e;
|
|
651
|
+
margin-left: auto;
|
|
652
|
+
margin-right: auto;
|
|
653
|
+
transition: all 200ms ease;
|
|
654
|
+
}
|
|
655
|
+
#wrapper .email:hover {
|
|
656
|
+
background-color: #3a3a3a;
|
|
657
|
+
border: 1px solid #000000;
|
|
658
|
+
color:white;
|
|
659
|
+
}
|