slow-steps 0.1.2 → 0.1.7

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.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/contact-details.html +25 -0
  3. data/_includes/contact-form.html +18 -0
  4. data/_includes/footer/footer_full.html +42 -18
  5. data/_includes/gmap.html +5 -0
  6. data/_includes/head/head.html +1 -2
  7. data/_includes/navigation/global.html +11 -0
  8. data/_layouts/about.html +53 -21
  9. data/_layouts/contact.html +39 -0
  10. data/_layouts/default.html +2 -4
  11. data/_layouts/env/clinician.html +96 -25
  12. data/_layouts/env/landing.html +35 -18
  13. data/_layouts/env/pwp.html +27 -16
  14. data/_layouts/feed.html +1 -1
  15. data/_layouts/full-width.html +11 -0
  16. data/_sass/_functions.sass +2 -0
  17. data/_sass/_mixins.sass +76 -7
  18. data/_sass/_variables.sass +2 -0
  19. data/_sass/about.sass +14 -29
  20. data/_sass/colors/_variables.sass +25 -6
  21. data/_sass/colors/breakpoints/{768.sass → 1024.sass} +2 -2
  22. data/_sass/colors/env/_clinician.sass +1 -1
  23. data/_sass/colors/global.sass +2 -0
  24. data/_sass/contact.sass +227 -0
  25. data/_sass/env/breakpoints/768.sass +5 -46
  26. data/_sass/env/clinician.sass +35 -133
  27. data/_sass/env/landing.sass +32 -33
  28. data/_sass/env/pwp.sass +37 -176
  29. data/_sass/footer_full.sass +139 -48
  30. data/_sass/global.sass +304 -4
  31. data/_sass/navigation/breakpoints/{768.sass → 1024.sass} +6 -3
  32. data/_sass/navigation/env/clinician.sass +1 -10
  33. data/_sass/navigation/env/landing.sass +6 -9
  34. data/_sass/navigation/env/pwp.sass +1 -14
  35. data/_sass/navigation/global.sass +9 -0
  36. data/assets/css/env/gaitq_clinician.sass +6 -4
  37. data/assets/css/env/gaitq_pwp.sass +6 -4
  38. data/assets/css/gaitq_about.sass +22 -0
  39. data/assets/css/gaitq_global.sass +4 -4
  40. data/assets/js/svg_aos.js +3 -3
  41. data/assets/js/svg_text_width.js +9 -1
  42. metadata +13 -5
  43. 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 'env/breakpoints/768'
31
-
32
- @import 'colors/breakpoints/768'
34
+ @import 'forms/mc-forms'
33
35
 
34
- @import "forms/mc-forms"
36
+ @import 'contact'
@@ -23,12 +23,14 @@ $baseurl: '{{ site.baseurl }}/'
23
23
 
24
24
  @import 'env/pwp'
25
25
 
26
- @import 'about'
26
+ @import 'env/breakpoints/768'
27
27
 
28
- @import 'breakpoints/about'
28
+ @import 'colors/breakpoints/1024'
29
29
 
30
- @import 'env/breakpoints/768'
30
+ @import 'about'
31
31
 
32
- @import 'colors/breakpoints/768'
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/768'
26
+ @import 'navigation/breakpoints/1024'
29
27
 
30
28
  // Footer
31
29
 
32
- @import 'footer'
30
+ @import 'footer_full'
33
31
 
34
32
  @import 'aos-overrides'
33
+
34
+ @import 'global'
@@ -1,4 +1,4 @@
1
- // collect all the circles and bubbles so we can ani them in at 0%
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 <= .6 * view_height) {
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, 100, { leading: true, trailing: true}));
25
+ window.addEventListener('scroll', _.throttle(svg_aos, 500, { leading: true, trailing: true}));
@@ -1,4 +1,12 @@
1
- // Get the svg text elemnets inside svg__labels, calulate their length and position wiith clientWidth conditions.
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.2
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: 2020-12-22 00:00:00.000000000 Z
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/768.sass
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/768.sass
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
@@ -1,5 +0,0 @@
1
- ---
2
- ---
3
- $baseurl: '{{ site.baseurl }}/'
4
- $img: url($baseurl + 'assets/img/pwp_device_group_docked.png')
5
- $img_height: '{% imagesize source:height %} / {% imagesize source:width %}'