slow-steps 0.1.2 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/contact-details.html +25 -0
- data/_includes/contact-form.html +18 -0
- data/_includes/footer/footer_full.html +42 -18
- data/_includes/gmap.html +5 -0
- data/_includes/head/head.html +1 -2
- data/_includes/navigation/global.html +11 -0
- data/_layouts/about.html +53 -21
- data/_layouts/contact.html +39 -0
- data/_layouts/default.html +2 -4
- data/_layouts/env/clinician.html +96 -25
- data/_layouts/env/landing.html +35 -18
- data/_layouts/env/pwp.html +27 -16
- data/_layouts/feed.html +1 -1
- data/_layouts/full-width.html +11 -0
- data/_sass/_functions.sass +2 -0
- data/_sass/_mixins.sass +76 -7
- data/_sass/_variables.sass +2 -0
- data/_sass/about.sass +14 -29
- data/_sass/colors/_variables.sass +25 -6
- data/_sass/colors/breakpoints/{768.sass → 1024.sass} +2 -2
- data/_sass/colors/env/_clinician.sass +1 -1
- data/_sass/colors/global.sass +2 -0
- data/_sass/contact.sass +227 -0
- data/_sass/env/breakpoints/768.sass +5 -46
- data/_sass/env/clinician.sass +35 -133
- data/_sass/env/landing.sass +32 -33
- data/_sass/env/pwp.sass +37 -176
- data/_sass/footer_full.sass +139 -48
- data/_sass/global.sass +304 -4
- data/_sass/navigation/breakpoints/{768.sass → 1024.sass} +6 -3
- data/_sass/navigation/env/clinician.sass +1 -10
- data/_sass/navigation/env/landing.sass +6 -9
- data/_sass/navigation/env/pwp.sass +1 -14
- data/_sass/navigation/global.sass +9 -0
- data/assets/css/env/gaitq_clinician.sass +6 -4
- data/assets/css/env/gaitq_pwp.sass +6 -4
- data/assets/css/gaitq_about.sass +22 -0
- data/assets/css/gaitq_global.sass +4 -4
- data/assets/js/svg_aos.js +3 -3
- data/assets/js/svg_text_width.js +9 -1
- metadata +13 -5
- data/assets/css/img_handler.sass +0 -5
@@ -23,12 +23,14 @@ $baseurl: '{{ site.baseurl }}/'
|
|
23
23
|
|
24
24
|
@import 'env/clinician'
|
25
25
|
|
26
|
+
@import 'env/breakpoints/768'
|
27
|
+
|
28
|
+
@import 'colors/breakpoints/1024'
|
29
|
+
|
26
30
|
@import 'about'
|
27
31
|
|
28
32
|
@import 'breakpoints/about'
|
29
33
|
|
30
|
-
@import '
|
31
|
-
|
32
|
-
@import 'colors/breakpoints/768'
|
34
|
+
@import 'forms/mc-forms'
|
33
35
|
|
34
|
-
@import
|
36
|
+
@import 'contact'
|
@@ -23,12 +23,14 @@ $baseurl: '{{ site.baseurl }}/'
|
|
23
23
|
|
24
24
|
@import 'env/pwp'
|
25
25
|
|
26
|
-
@import '
|
26
|
+
@import 'env/breakpoints/768'
|
27
27
|
|
28
|
-
@import 'breakpoints/
|
28
|
+
@import 'colors/breakpoints/1024'
|
29
29
|
|
30
|
-
@import '
|
30
|
+
@import 'about'
|
31
31
|
|
32
|
-
@import '
|
32
|
+
@import 'breakpoints/about'
|
33
33
|
|
34
34
|
@import 'forms/mc-forms'
|
35
|
+
|
36
|
+
@import 'contact'
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
$baseurl: '{{ site.baseurl }}/'
|
5
|
+
|
6
|
+
@import '_variables'
|
7
|
+
|
8
|
+
@import '_mixins'
|
9
|
+
|
10
|
+
@import 'colors/_variables'
|
11
|
+
|
12
|
+
@import 'navigation/_variables'
|
13
|
+
|
14
|
+
@import 'colors/env/_pwp'
|
15
|
+
|
16
|
+
@import 'typography/_variables'
|
17
|
+
|
18
|
+
@import 'env/pwp'
|
19
|
+
|
20
|
+
@import 'about'
|
21
|
+
|
22
|
+
@import 'breakpoints/about'
|
@@ -11,8 +11,6 @@
|
|
11
11
|
|
12
12
|
@import 'colors/_variables'
|
13
13
|
|
14
|
-
@import 'global'
|
15
|
-
|
16
14
|
@import 'typography/resets'
|
17
15
|
|
18
16
|
@import 'typography/branding'
|
@@ -25,10 +23,12 @@
|
|
25
23
|
|
26
24
|
@import 'navigation/burger'
|
27
25
|
|
28
|
-
@import 'navigation/breakpoints/
|
26
|
+
@import 'navigation/breakpoints/1024'
|
29
27
|
|
30
28
|
// Footer
|
31
29
|
|
32
|
-
@import '
|
30
|
+
@import 'footer_full'
|
33
31
|
|
34
32
|
@import 'aos-overrides'
|
33
|
+
|
34
|
+
@import 'global'
|
data/assets/js/svg_aos.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
// collect all the circles and bubbles so we can ani them in at
|
1
|
+
// collect all the circles and bubbles so we can ani them in at 20%
|
2
2
|
var view_height = document.documentElement.clientHeight;
|
3
3
|
|
4
4
|
var svg_aos = function(e) {
|
@@ -9,7 +9,7 @@ var svg_aos = function(e) {
|
|
9
9
|
|
10
10
|
var abs_path_top = svgs[i].getBoundingClientRect().top;
|
11
11
|
|
12
|
-
if (abs_path_top <= .
|
12
|
+
if (abs_path_top <= .8 * view_height) {
|
13
13
|
svgs[i].classList.remove('hidden');
|
14
14
|
svgs[i].classList.add('not-hidden');
|
15
15
|
} else {
|
@@ -22,4 +22,4 @@ var svg_aos = function(e) {
|
|
22
22
|
|
23
23
|
};
|
24
24
|
|
25
|
-
window.addEventListener('scroll', _.throttle(svg_aos,
|
25
|
+
window.addEventListener('scroll', _.throttle(svg_aos, 500, { leading: true, trailing: true}));
|
data/assets/js/svg_text_width.js
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
|
1
|
+
/* Last full read through 27/12/2020
|
2
|
+
*
|
3
|
+
*##############################################
|
4
|
+
*# svg label calc /assets/js/svg_text_width.js
|
5
|
+
*##############################################
|
6
|
+
*
|
7
|
+
*/
|
8
|
+
|
9
|
+
// Get the svg text elemnets inside .svg__labels, calulate their length and position with 768 clientWidth condition.
|
2
10
|
|
3
11
|
function svg_text_width() {
|
4
12
|
// scren width
|
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.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Made Slowly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -181,6 +181,8 @@ files:
|
|
181
181
|
- _config.yml
|
182
182
|
- _includes/.DS_Store
|
183
183
|
- _includes/branding/site-logo.svg
|
184
|
+
- _includes/contact-details.html
|
185
|
+
- _includes/contact-form.html
|
184
186
|
- _includes/env_filter.html
|
185
187
|
- _includes/errors/robot-403.svg
|
186
188
|
- _includes/errors/robot-404.svg
|
@@ -190,6 +192,7 @@ files:
|
|
190
192
|
- _includes/forms/mc-register.html
|
191
193
|
- _includes/functions/calc-svg-coord.html
|
192
194
|
- _includes/functions/pull_page_args.html
|
195
|
+
- _includes/gmap.html
|
193
196
|
- _includes/head/.DS_Store
|
194
197
|
- _includes/head/README.md
|
195
198
|
- _includes/head/descriptors/og-meta.html
|
@@ -204,25 +207,30 @@ files:
|
|
204
207
|
- _includes/vimeoPlayer.html
|
205
208
|
- _layouts/about.html
|
206
209
|
- _layouts/compress.html
|
210
|
+
- _layouts/contact.html
|
207
211
|
- _layouts/default.html
|
208
212
|
- _layouts/env/clinician.html
|
209
213
|
- _layouts/env/landing.html
|
210
214
|
- _layouts/env/pwp.html
|
211
215
|
- _layouts/error-page.html
|
212
216
|
- _layouts/feed.html
|
217
|
+
- _layouts/full-width.html
|
213
218
|
- _layouts/post.html
|
214
219
|
- _layouts/register.html
|
220
|
+
- _sass/_functions.sass
|
215
221
|
- _sass/_mixins.sass
|
216
222
|
- _sass/_variables.sass
|
217
223
|
- _sass/about.sass
|
218
224
|
- _sass/aos-overrides.sass
|
219
225
|
- _sass/breakpoints/about.sass
|
220
226
|
- _sass/colors/_variables.sass
|
221
|
-
- _sass/colors/breakpoints/
|
227
|
+
- _sass/colors/breakpoints/1024.sass
|
222
228
|
- _sass/colors/burger.sass
|
223
229
|
- _sass/colors/env/_clinician.sass
|
224
230
|
- _sass/colors/env/_pwp.sass
|
231
|
+
- _sass/colors/global.sass
|
225
232
|
- _sass/colors/navigation.sass
|
233
|
+
- _sass/contact.sass
|
226
234
|
- _sass/env/breakpoints/768.sass
|
227
235
|
- _sass/env/clinician.sass
|
228
236
|
- _sass/env/landing.sass
|
@@ -234,7 +242,7 @@ files:
|
|
234
242
|
- _sass/forms/mc-forms.sass
|
235
243
|
- _sass/global.sass
|
236
244
|
- _sass/navigation/_variables.sass
|
237
|
-
- _sass/navigation/breakpoints/
|
245
|
+
- _sass/navigation/breakpoints/1024.sass
|
238
246
|
- _sass/navigation/burger.sass
|
239
247
|
- _sass/navigation/env/clinician.sass
|
240
248
|
- _sass/navigation/env/landing.sass
|
@@ -247,11 +255,11 @@ files:
|
|
247
255
|
- assets/css/env/gaitq_clinician.sass
|
248
256
|
- assets/css/env/gaitq_landing.sass
|
249
257
|
- assets/css/env/gaitq_pwp.sass
|
258
|
+
- assets/css/gaitq_about.sass
|
250
259
|
- assets/css/gaitq_errors.sass
|
251
260
|
- assets/css/gaitq_feed.sass
|
252
261
|
- assets/css/gaitq_global.sass
|
253
262
|
- assets/css/gaitq_post.sass
|
254
|
-
- assets/css/img_handler.sass
|
255
263
|
- assets/fonts/.DS_Store
|
256
264
|
- assets/fonts/Quicksand/OFL.txt
|
257
265
|
- assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf
|