slow-steps 0.4.5 → 0.4.10
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/_config.yml +1 -0
- data/_includes/contact-form-faq.html +24 -0
- data/_includes/footer/footer_redesign.html +14 -5
- data/_includes/scripts.html +3 -0
- data/_layouts/about.html +1 -2
- data/_layouts/contact.html +5 -2
- data/_layouts/env/clinician.html +2 -2
- data/_layouts/env/pwp.html +2 -2
- data/_layouts/faq.html +1 -1
- data/_sass/contact.sass +5 -0
- data/_sass/feed.sass +1 -1
- data/_sass/global.sass +1 -0
- data/_sass/navigation/breakpoints/1024.sass +2 -1
- data/_sass/post.sass +2 -2
- data/_sass/product.sass +63 -39
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1dac6e17c47ad6a0d05c9cb5d5ea3b3e9346715404bd65cead12c4303ff741d
|
|
4
|
+
data.tar.gz: ab8509bd4728c1582fce247058bac78a135aabb88dc3adb26b60502f14dd4544
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c51adbd17b2b958bb9ccbb06f7d4936d9b28dbeecd9c087989d11b0c27528aa947890b6ee6b4e476eab1d6fbea29e6e7f0707fa9b171495433c302785bb82726
|
|
7
|
+
data.tar.gz: 35797752c5fc5b5b32c62837c3f19beb1212bfea9df9ac23018624f77564dbd32f3f8d53cd81d8143c059974afaa48f8a00b79fc462174a0c880ad5110e20820
|
data/_config.yml
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
changed from formspree to kwes 25 May 2021 Arran
|
|
3
|
+
-->
|
|
4
|
+
|
|
5
|
+
<!-- script has been moved to slow-steps/_includes/scripts.html -->
|
|
6
|
+
<!--<script src="https://kwes.io/v2/kwes-script.js" defer></script>-->
|
|
7
|
+
<div class="contact-form">
|
|
8
|
+
<h4 class="form-instruction-FAQ">Get in touch using the form below</h4>
|
|
9
|
+
|
|
10
|
+
<form class="kwes-form" action="https://kwes.io/api/foreign/forms/{{ site.kwes }}">
|
|
11
|
+
|
|
12
|
+
<label for="name">Enter your full name</label>
|
|
13
|
+
<input type="text" class="form-element" name="name" id="name" placeholder="Your Name" required>
|
|
14
|
+
|
|
15
|
+
<label for="email">Enter your email</label>
|
|
16
|
+
<input type="text" class="form-element" name="email" id="email" placeholder="Your email" required>
|
|
17
|
+
|
|
18
|
+
<label for="message">Enter your message</label>
|
|
19
|
+
<textarea class="form-element" rows="5" name="message" id="message" placeholder="Your Message" required></textarea>
|
|
20
|
+
|
|
21
|
+
<button class="btn btn-pop btn-outline btn-contact" type="submit">SEND</button>
|
|
22
|
+
|
|
23
|
+
</form>
|
|
24
|
+
</div>
|
|
@@ -29,15 +29,22 @@
|
|
|
29
29
|
<div class="ft__sitemap">
|
|
30
30
|
<div class="ft__sitemap--menu">
|
|
31
31
|
|
|
32
|
-
{% if page.url
|
|
32
|
+
{% if page.url == "/" %}
|
|
33
|
+
{% assign env = "clinician" %}
|
|
33
34
|
|
|
34
|
-
|
|
35
|
+
{% else %}
|
|
36
|
+
|
|
37
|
+
{% assign env = page.env %}
|
|
38
|
+
|
|
39
|
+
{% endif %}
|
|
40
|
+
|
|
41
|
+
<h2 class="ft__sitemap--header">Company Information</h2>
|
|
35
42
|
|
|
36
43
|
<div class="ft__sitemap--env-wrap">
|
|
37
44
|
|
|
38
45
|
{% for item in site.data.menu.navigation %}
|
|
39
46
|
|
|
40
|
-
{% if item.env ==
|
|
47
|
+
{% if item.env == env %}
|
|
41
48
|
|
|
42
49
|
<div class="ft__sitemap--env">
|
|
43
50
|
|
|
@@ -59,10 +66,11 @@
|
|
|
59
66
|
|
|
60
67
|
</div>
|
|
61
68
|
|
|
62
|
-
{% endif %}
|
|
63
69
|
|
|
64
70
|
|
|
65
71
|
|
|
72
|
+
<!--
|
|
73
|
+
Remove Site map for now
|
|
66
74
|
<h2 class="ft__sitemap--header">INFORMATION FOR</h2>
|
|
67
75
|
|
|
68
76
|
<div class="ft__sitemap--env-wrap">
|
|
@@ -85,6 +93,7 @@
|
|
|
85
93
|
{% endfor %}
|
|
86
94
|
|
|
87
95
|
</div>
|
|
96
|
+
-->
|
|
88
97
|
|
|
89
98
|
</div>
|
|
90
99
|
</div>
|
|
@@ -97,7 +106,7 @@
|
|
|
97
106
|
<ul>
|
|
98
107
|
<li class="ft__contact--link"><a href="mailto:{{ site.email }}"><i class="fas fa-envelope"></i>{{ site.email }}</a></li>
|
|
99
108
|
|
|
100
|
-
|
|
109
|
+
<li class="ft__contact--link"><a href="tel:{{ site.phone }}"><i class="fas fa-phone-square"></i>{{ site.phone }}</a></li>
|
|
101
110
|
|
|
102
111
|
</ul>
|
|
103
112
|
|
data/_includes/scripts.html
CHANGED
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
|
|
27
27
|
<script type="text/javascript" src="{{ '/assets/vendor/aos/aos.js' | relative_url }}" ></script>
|
|
28
28
|
|
|
29
|
+
<!-- need to conditional load this. will sort that out after tyding up content repo 25 May 2021 Arran -->
|
|
30
|
+
<script src="https://kwes.io/v2/kwes-script.js" async></script>
|
|
31
|
+
|
|
29
32
|
{% include cookie-consent.html %}
|
|
30
33
|
|
|
31
34
|
<script>
|
data/_layouts/about.html
CHANGED
|
@@ -101,8 +101,7 @@ Last full read through 29/12/2020
|
|
|
101
101
|
{% for socials in member.social %}
|
|
102
102
|
<li>
|
|
103
103
|
<a class="social--{{ socials.name }} social"href="{{ socials.url }}">
|
|
104
|
-
<i class="{{ socials.icon }}"></i>
|
|
105
|
-
</a>
|
|
104
|
+
<i class="{{ socials.icon }}"></i></a>
|
|
106
105
|
</li>
|
|
107
106
|
{% endfor %}
|
|
108
107
|
</ul>
|
data/_layouts/contact.html
CHANGED
|
@@ -2,8 +2,11 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
{%
|
|
6
|
-
|
|
5
|
+
{% if site.data.copy.contact[page.env].title %}
|
|
6
|
+
{% assign strap = site.data.copy.contact[page.env].title %}
|
|
7
|
+
{% else %}
|
|
8
|
+
{% assign strap = site.description %}
|
|
9
|
+
{% endif %}
|
|
7
10
|
|
|
8
11
|
<div class="hero hero-65">
|
|
9
12
|
|
data/_layouts/env/clinician.html
CHANGED
|
@@ -51,7 +51,7 @@ Last full read through 27/12/2020
|
|
|
51
51
|
</radialGradient>
|
|
52
52
|
</defs>
|
|
53
53
|
|
|
54
|
-
<circle class="svg__augment--pulse" cx="
|
|
54
|
+
<circle class="svg__augment--pulse" cx="33%" cy="2%" >
|
|
55
55
|
|
|
56
56
|
<!-- Can't animate with CSS, see https://stackoverflow.com/questions/32409101/resizing-svg-circle-radius-using-css-animation
|
|
57
57
|
-->
|
|
@@ -60,7 +60,7 @@ Last full read through 27/12/2020
|
|
|
60
60
|
<animate attributeName="fill-opacity" attributeType="CSS" begin="0s" dur="2s" repeatCount="indefinite" from="1" to="0" fill="freeze" />
|
|
61
61
|
|
|
62
62
|
</circle>
|
|
63
|
-
<circle class="svg__augment--led" cx="
|
|
63
|
+
<circle class="svg__augment--led" cx="33%" cy="2%" r=".5" />
|
|
64
64
|
|
|
65
65
|
</svg>
|
|
66
66
|
|
data/_layouts/env/pwp.html
CHANGED
|
@@ -63,7 +63,7 @@ Last full read through 27/12/2020
|
|
|
63
63
|
</radialGradient>
|
|
64
64
|
</defs>
|
|
65
65
|
|
|
66
|
-
<circle class="svg__augment--pulse" cx="
|
|
66
|
+
<circle class="svg__augment--pulse" cx="33%" cy="2%" >
|
|
67
67
|
|
|
68
68
|
<!-- Can't animate with CSS, see https://stackoverflow.com/questions/32409101/resizing-svg-circle-radius-using-css-animation
|
|
69
69
|
-->
|
|
@@ -72,7 +72,7 @@ Last full read through 27/12/2020
|
|
|
72
72
|
<animate attributeName="fill-opacity" attributeType="CSS" begin="0s" dur="2s" repeatCount="indefinite" from="1" to="0" fill="freeze" />
|
|
73
73
|
|
|
74
74
|
</circle>
|
|
75
|
-
<circle class="svg__augment--led" cx="
|
|
75
|
+
<circle class="svg__augment--led" cx="33%" cy="2%" r=".5" />
|
|
76
76
|
|
|
77
77
|
</svg>
|
|
78
78
|
|
data/_layouts/faq.html
CHANGED
data/_sass/contact.sass
CHANGED
data/_sass/feed.sass
CHANGED
data/_sass/global.sass
CHANGED
data/_sass/post.sass
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
background-color: $env-primary
|
|
24
24
|
color: $white
|
|
25
25
|
left: 5vw
|
|
26
|
-
max-width:
|
|
26
|
+
max-width: 90vw
|
|
27
27
|
text-transform: uppercase
|
|
28
28
|
//bottom: -10px
|
|
29
29
|
border: solid 1px $white
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
|
|
63
63
|
.image--south
|
|
64
64
|
object-position: bottom
|
|
65
|
-
|
|
65
|
+
|
|
66
66
|
.post__link
|
|
67
67
|
color: $opd-blue
|
|
68
68
|
text-decoration: none
|
data/_sass/product.sass
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
|
|
2
|
+
.product__hero
|
|
3
|
+
|
|
4
|
+
img
|
|
5
|
+
display: block
|
|
6
|
+
object-fit: cover
|
|
7
|
+
transform: translateY(35vh)
|
|
8
|
+
|
|
9
|
+
.product__strap
|
|
10
|
+
text-align: center
|
|
11
|
+
color: $env-primary
|
|
12
|
+
overflow: hidden
|
|
13
|
+
font-size: $lg-font-size
|
|
14
|
+
//overflow-y: visible
|
|
15
|
+
transform: scale(1) translateY(25vh)
|
|
16
|
+
|
|
2
17
|
|
|
3
18
|
@media screen and ( min-width: 768px )
|
|
4
19
|
|
|
20
|
+
|
|
5
21
|
.product__hero
|
|
6
22
|
animation: slide-hero 1.2s
|
|
7
23
|
animation-delay: .6s
|
|
@@ -16,6 +32,7 @@
|
|
|
16
32
|
//height: calc(var(--vh, 1vh) * 100)
|
|
17
33
|
//z-index: 2
|
|
18
34
|
object-fit: cover
|
|
35
|
+
transform: translateY(0)
|
|
19
36
|
|
|
20
37
|
|
|
21
38
|
@keyframes slide-hero
|
|
@@ -31,10 +48,7 @@
|
|
|
31
48
|
animation: slide-strap 1s
|
|
32
49
|
animation-delay: 1s
|
|
33
50
|
animation-fill-mode: forwards
|
|
34
|
-
|
|
35
|
-
overflow: hidden
|
|
36
|
-
font-size: $lg-font-size
|
|
37
|
-
//overflow-y: visible
|
|
51
|
+
transform: scale(1) translateY(25vh)
|
|
38
52
|
|
|
39
53
|
@keyframes slide-strap
|
|
40
54
|
|
|
@@ -45,49 +59,59 @@
|
|
|
45
59
|
transform: scale(1) translateY(25vh)
|
|
46
60
|
|
|
47
61
|
|
|
48
|
-
.product__info
|
|
49
|
-
//height: 100vh
|
|
50
|
-
background-color: $pure-white
|
|
51
|
-
text-align: center
|
|
52
|
-
margin-top: 35vh
|
|
53
|
-
|
|
54
|
-
p
|
|
55
|
-
width: 80vw
|
|
56
|
-
max-width: 800px
|
|
57
|
-
margin: auto
|
|
58
|
-
|
|
59
|
-
.product__title
|
|
60
|
-
padding: 10rem 0 5rem 0
|
|
61
|
-
|
|
62
62
|
.product__wrap
|
|
63
|
-
display: flex
|
|
64
63
|
flex-direction: row
|
|
65
|
-
width: 100%
|
|
66
|
-
background-color: $pure-white
|
|
67
64
|
padding: 20vh 0 0
|
|
68
|
-
margin: auto
|
|
69
|
-
justify-content: center
|
|
70
|
-
overflow: hidden
|
|
71
65
|
|
|
72
66
|
.product__image,
|
|
73
67
|
.product__description
|
|
74
|
-
display: flex
|
|
75
|
-
align-content: center
|
|
76
|
-
align-self: center
|
|
77
|
-
justify-content: center
|
|
78
68
|
width: 40vw
|
|
79
69
|
max-width: 600px
|
|
80
|
-
|
|
70
|
+
padding: 0
|
|
81
71
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
72
|
+
.product__info
|
|
73
|
+
//height: 100vh
|
|
74
|
+
background-color: $pure-white
|
|
75
|
+
text-align: center
|
|
76
|
+
margin-top: 35vh
|
|
85
77
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
width:
|
|
89
|
-
|
|
90
|
-
object-fit: cover
|
|
78
|
+
p
|
|
79
|
+
width: 80vw
|
|
80
|
+
max-width: 800px
|
|
81
|
+
margin: auto
|
|
91
82
|
|
|
92
|
-
|
|
93
|
-
|
|
83
|
+
.product__title
|
|
84
|
+
padding: 10rem 0 5rem 0
|
|
85
|
+
|
|
86
|
+
.product__wrap
|
|
87
|
+
display: flex
|
|
88
|
+
flex-direction: column
|
|
89
|
+
width: 100%
|
|
90
|
+
background-color: $pure-white
|
|
91
|
+
padding: 0
|
|
92
|
+
margin: auto
|
|
93
|
+
justify-content: center
|
|
94
|
+
overflow: hidden
|
|
95
|
+
|
|
96
|
+
.product__image,
|
|
97
|
+
.product__description
|
|
98
|
+
display: flex
|
|
99
|
+
align-content: center
|
|
100
|
+
align-self: center
|
|
101
|
+
justify-content: center
|
|
102
|
+
width: 90vw
|
|
103
|
+
overflow: hidden
|
|
104
|
+
padding: 6rem 0
|
|
105
|
+
|
|
106
|
+
.product__start
|
|
107
|
+
color: $env-primary
|
|
108
|
+
font-weight: $heavy-font
|
|
109
|
+
|
|
110
|
+
.product--image
|
|
111
|
+
display: block
|
|
112
|
+
width: 100%
|
|
113
|
+
max-width: 300px
|
|
114
|
+
object-fit: cover
|
|
115
|
+
|
|
116
|
+
.txt-right
|
|
117
|
+
text-align: right
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slow-steps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Made Slowly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -183,6 +183,7 @@ files:
|
|
|
183
183
|
- _includes/branding/site-logo.svg
|
|
184
184
|
- _includes/build-version.html
|
|
185
185
|
- _includes/contact-details.html
|
|
186
|
+
- _includes/contact-form-faq.html
|
|
186
187
|
- _includes/contact-form.html
|
|
187
188
|
- _includes/cookie-consent.html
|
|
188
189
|
- _includes/env_filter.html
|