scoobr 0.1.2 → 0.1.3
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/_layouts/home.html +3 -3
- data/_sass/components/_layout.scss +13 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a5695a242e01c6eb41d205b42f838084cd9640e
|
4
|
+
data.tar.gz: 0d3c6b400776b82f85c608896a47fc65f1298a11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca5a18a9101a795cdda32ce0b72dcb59339476dd9d33096b1d74dc8d653732417ac7b2791745dcfaf20994fd4707b81240b411d68a6aed5beb3aacf1585c7013
|
7
|
+
data.tar.gz: 38306ffd289dae36d4642c947700edeb4bc6f98121c4b08b54a0624c3597c9e8a3394cfbff42194b193e56e88cfde616c2aa3b9b592bb4400564b7ca1a56c231
|
data/_layouts/home.html
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
-
<header class="text-center vertical-center home-header">
|
5
|
+
<header class="text-center vertical-center home-header" style="background-image: url({{ site.data.home.background_image | default: "/assets/pattern.svg" }});">
|
6
6
|
|
7
7
|
<div class="small-container">
|
8
8
|
|
9
|
-
<h2 class="no-margin-top">One morning, when Gregor Samsa woke from troubled dreams
|
9
|
+
<h2 class="no-margin-top">{{ site.data.home.heading | default: "One morning, when Gregor Samsa woke from troubled dreams." }}</h2>
|
10
10
|
|
11
|
-
|
11
|
+
{{ site.data.home.body_markdown | default: "Ulysses, Ulysses - Soaring through all the galaxies. In search of Earth, flying in to the night. Ulysses, Ulysses - Fighting evil and tyranny, with all his power, and with all of his might. Ulysses - no-one else can do the things you do. Ulysses - like a bolt of thunder from the blue." | markdownify }}
|
12
12
|
|
13
13
|
<div class="mailchimp-form">
|
14
14
|
<input type="text" name="EMAIL" placeholder="Email address">
|
@@ -20,9 +20,17 @@
|
|
20
20
|
height: 420px;
|
21
21
|
}
|
22
22
|
|
23
|
+
.home-header {
|
24
|
+
background-image: url("/assets/pattern.svg");
|
25
|
+
background-repeat: repeat;
|
26
|
+
background-size: 40%;
|
27
|
+
z-index: 1;
|
28
|
+
position: relative;
|
29
|
+
}
|
30
|
+
|
23
31
|
.home-header::after {
|
24
32
|
content: "";
|
25
|
-
z-index:
|
33
|
+
z-index: 3;
|
26
34
|
display: block;
|
27
35
|
position: absolute;
|
28
36
|
top: 0;
|
@@ -30,27 +38,24 @@
|
|
30
38
|
left: 0;
|
31
39
|
right: 0;
|
32
40
|
opacity: 0.15;
|
33
|
-
background-
|
34
|
-
|
35
|
-
background-size: 40%;
|
36
|
-
|
41
|
+
background-color: darken($primary-color, 20%);
|
42
|
+
opacity: 0.9;
|
37
43
|
}
|
38
44
|
|
39
45
|
.post-header::before {
|
40
46
|
content: "";
|
41
|
-
z-index:
|
47
|
+
z-index: 2;
|
42
48
|
display: block;
|
43
49
|
position: absolute;
|
44
50
|
top: 0;
|
45
51
|
bottom: 0;
|
46
52
|
left: 0;
|
47
53
|
right: 0;
|
48
|
-
background-color: darken($primary-color, 20%);
|
49
|
-
opacity: 0.5;
|
50
54
|
}
|
51
55
|
|
52
56
|
.home-header .small-container {
|
53
57
|
padding: 180px $padding;
|
58
|
+
z-index: 4;
|
54
59
|
}
|
55
60
|
|
56
61
|
.post-header .small-container {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scoobr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-07-
|
11
|
+
date: 2017-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|