slow-steps 0.4.6 → 0.4.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76fa1b7db89e11f4a8a61545e8776a63bdbba3ea8ad4251994e0029d021076d9
4
- data.tar.gz: 237de51a201f48a073da012bc55e5b270997fbf01322928ecda1fd70e6b8a33f
3
+ metadata.gz: 0e90b0b3b13cce7940c3fb7bf0923be809db4bf1758c9b1d8e649bf9fab0c6f5
4
+ data.tar.gz: 8f3bac6f2dbede2e07dda859544bd705a21a24e17f27fb6ed273c34a89cc6c87
5
5
  SHA512:
6
- metadata.gz: 60cc19edc62e64866c5df9dfb3e35bea03ea3ff0fd050deb8017b7d4197ab102eb808206a992dab25c721d178ef04013801f4f7c80a9153553a2337a0fc67d7f
7
- data.tar.gz: 72bfac426bbe78dca2f4f27c5d8dab09e632614403f81174094a730d12157015524e00b709888971928b440861b7b88b5e0e1b2ca624a2d8066eb39811d78928
6
+ metadata.gz: e6629281d31776c9c971ebbab595139f5af7ab39c90384b5a49078ffcbb6f401381118f49595447a234aefc4ddb1c343eddcd412d55b89b5e8c34e7984ab8dab
7
+ data.tar.gz: 14e34fe6a2c3f24ee30b777e203d324a999a928bf6afe64a59bbd11437772b7305d522bbcecd2073ca39e1ae7e40e64586294c6d0a11eedf7c10fd66d17b4f0c
@@ -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>
@@ -38,7 +38,7 @@
38
38
 
39
39
  {% endif %}
40
40
 
41
- <h2 class="ft__sitemap--header">COMPANY INFORMATION</h2>
41
+ <h2 class="ft__sitemap--header">Company Information</h2>
42
42
 
43
43
  <div class="ft__sitemap--env-wrap">
44
44
 
@@ -106,7 +106,7 @@
106
106
  <ul>
107
107
  <li class="ft__contact--link"><a href="mailto:{{ site.email }}"><i class="fas fa-envelope"></i>{{ site.email }}</a></li>
108
108
 
109
- <!--- <li class="ft__contact--link"><a href="tel:{{ site.phone }}"><i class="fas fa-phone-square"></i>{{ site.phone }}</a></li> -->
109
+ <li class="ft__contact--link"><a href="tel:{{ site.phone }}"><i class="fas fa-phone-square"></i>{{ site.phone }}</a></li>
110
110
 
111
111
  </ul>
112
112
 
@@ -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>
@@ -2,8 +2,11 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {% assign strap = page.title %}
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/faq.html CHANGED
@@ -70,6 +70,6 @@ document.querySelectorAll('.faq__question').forEach(function(el){
70
70
 
71
71
  <div class="faq__contact">
72
72
  <h2 class="faq__contact--strap">Not found the answer?</h2>
73
- {% include contact-form.html %}
73
+ {% include contact-form-faq.html %}
74
74
 
75
75
  </div>
data/_sass/contact.sass CHANGED
@@ -21,6 +21,11 @@
21
21
  padding-top: $lg-font-size
22
22
  color: $env-primary
23
23
 
24
+ .form-instruction-FAQ
25
+ padding-bottom: $font-size
26
+ padding-top: $lg-font-size
27
+ color: $pure-white
28
+
24
29
  .contact-form
25
30
  width: 100%
26
31
  display: block
data/_sass/feed.sass CHANGED
@@ -36,7 +36,7 @@
36
36
  box-shadow: 0 10px 6px -5px rgba($env-primary,.6)
37
37
  transition: 1s ease-in-out
38
38
  .feed__card--title
39
- color: $pure-black
39
+ color: $opd-coral
40
40
  transition: .4s ease-in-out
41
41
 
42
42
  .feed__card__image
data/_sass/global.sass CHANGED
@@ -20,6 +20,7 @@
20
20
 
21
21
  body
22
22
  background-color: $white
23
+ color: $opd-blue
23
24
 
24
25
  .fullwidth__wrap
25
26
  background-color: $white
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
- color: $env-primary
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
- overflow: hidden
70
+ padding: 0
81
71
 
82
- .product__start
83
- color: $env-primary
84
- font-weight: $heavy-font
72
+ .product__info
73
+ //height: 100vh
74
+ background-color: $pure-white
75
+ text-align: center
76
+ margin-top: 35vh
85
77
 
86
- .product--image
87
- display: block
88
- width: 100%
89
- max-width: 300px
90
- object-fit: cover
78
+ p
79
+ width: 80vw
80
+ max-width: 800px
81
+ margin: auto
91
82
 
92
- .txt-right
93
- text-align: right
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.6
4
+ version: 0.4.11
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-03-19 00:00:00.000000000 Z
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
@@ -268,7 +269,6 @@ files:
268
269
  - assets/css/env/gaitq_pwp.sass
269
270
  - assets/css/gaitq_errors.sass
270
271
  - assets/css/gaitq_post.sass
271
- - assets/fonts/fontawesome-free-5.11.2-web/css/.DS_Store
272
272
  - assets/fonts/fontawesome-free-5.11.2-web/css/all.min.css
273
273
  - assets/fonts/fontawesome-free-5.11.2-web/webfonts/fa-brands-400.eot
274
274
  - assets/fonts/fontawesome-free-5.11.2-web/webfonts/fa-brands-400.svg