slow-steps 0.2.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +1 -1
  3. data/_includes/functions/pull_page_args.html +3 -3
  4. data/_includes/head/head.html +9 -30
  5. data/_includes/head/stylesheets.html +20 -0
  6. data/_includes/navigation/global.html +47 -53
  7. data/_includes/scripts.html +9 -8
  8. data/_includes/vimeoPlayer.html +1 -2
  9. data/_layouts/about.html +6 -1
  10. data/_sass/_colors/README.md +27 -0
  11. data/_sass/_colors/_clinician.sass +7 -0
  12. data/_sass/_colors/_mixins.sass +14 -0
  13. data/_sass/_colors/_pwp.sass +6 -0
  14. data/_sass/{colors → _colors}/_variables.sass +8 -17
  15. data/_sass/_colors/collection.sass +3 -0
  16. data/_sass/_mixins.sass +14 -5
  17. data/_sass/about.sass +7 -6
  18. data/_sass/breakpoints/about.sass +4 -4
  19. data/_sass/contact.sass +8 -39
  20. data/_sass/env/landing.sass +7 -7
  21. data/_sass/faq.sass +2 -2
  22. data/_sass/feed.sass +2 -1
  23. data/_sass/footer.sass +1 -1
  24. data/_sass/footer_full.sass +18 -8
  25. data/_sass/forms/mc-forms.sass +3 -3
  26. data/_sass/global.sass +26 -20
  27. data/_sass/navigation/README.md +35 -0
  28. data/_sass/navigation/_variables.sass +5 -6
  29. data/_sass/navigation/{global.sass → base.sass} +20 -20
  30. data/_sass/navigation/breakpoints/1024.sass +32 -15
  31. data/_sass/navigation/burger.sass +9 -3
  32. data/_sass/navigation/clinician.sass +31 -0
  33. data/_sass/navigation/collection.sass +9 -0
  34. data/_sass/navigation/colors.sass +8 -0
  35. data/_sass/navigation/no-nav.sass +32 -0
  36. data/_sass/navigation/{env/pwp.sass → pwp.sass} +12 -16
  37. data/_sass/post.sass +1 -1
  38. data/_sass/typography/_variables.sass +4 -0
  39. data/assets/css/env/gaitq_clinician.sass +24 -8
  40. data/assets/css/env/gaitq_landing.sass +21 -3
  41. data/assets/css/env/gaitq_pwp.sass +28 -8
  42. data/assets/css/gaitq_errors.sass +9 -3
  43. data/assets/css/gaitq_post.sass +5 -5
  44. metadata +16 -27
  45. data/_includes/head/env/conditional.html +0 -2
  46. data/_sass/colors/breakpoints/1024.sass +0 -20
  47. data/_sass/colors/burger.sass +0 -22
  48. data/_sass/colors/env/_clinician.sass +0 -16
  49. data/_sass/colors/env/_pwp.sass +0 -16
  50. data/_sass/colors/global.sass +0 -2
  51. data/_sass/colors/navigation.sass +0 -13
  52. data/_sass/navigation/env/clinician.sass +0 -38
  53. data/_sass/navigation/env/landing.sass +0 -19
  54. data/assets/css/gaitq_about.sass +0 -22
  55. data/assets/css/gaitq_feed.sass +0 -12
  56. data/assets/css/gaitq_global.sass +0 -34
  57. data/assets/fonts/.DS_Store +0 -0
  58. data/assets/fonts/Quicksand/OFL.txt +0 -93
  59. data/assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf +0 -0
  60. data/assets/fonts/Quicksand/README.txt +0 -67
  61. data/assets/fonts/Quicksand/static/Quicksand-Bold.ttf +0 -0
  62. data/assets/fonts/Quicksand/static/Quicksand-Light.ttf +0 -0
  63. data/assets/fonts/Quicksand/static/Quicksand-Medium.ttf +0 -0
  64. data/assets/fonts/Quicksand/static/Quicksand-Regular.ttf +0 -0
  65. data/assets/fonts/Quicksand/static/Quicksand-SemiBold.ttf +0 -0
  66. data/assets/fonts/fontawesome-free-5.11.2-web/.DS_Store +0 -0
@@ -7,25 +7,35 @@ $baseurl: '{{ site.baseurl }}/'
7
7
 
8
8
  @import '_mixins'
9
9
 
10
- @import 'colors/_variables'
11
10
 
12
- @import 'navigation/_variables'
13
-
14
- @import 'colors/env/_pwp'
15
11
 
16
12
  @import 'typography/_variables'
17
13
 
18
- @import 'colors/navigation'
14
+ @import 'typography/resets'
15
+
16
+ @import 'typography/branding'
17
+
18
+
19
+
20
+
21
+ @import '_colors/_pwp'
22
+
23
+
24
+
25
+
26
+
27
+ @import 'navigation/pwp'
28
+
29
+
30
+
19
31
 
20
- @import 'navigation/env/pwp'
21
32
 
22
- @import 'colors/burger'
23
33
 
24
34
  @import 'env/pwp'
25
35
 
26
36
  @import 'env/breakpoints/768'
27
37
 
28
- @import 'colors/breakpoints/1024'
38
+
29
39
 
30
40
  @import 'about'
31
41
 
@@ -36,3 +46,13 @@ $baseurl: '{{ site.baseurl }}/'
36
46
  @import 'contact'
37
47
 
38
48
  @import 'faq'
49
+
50
+ // Footer
51
+
52
+ @import 'footer_full'
53
+
54
+ @import 'aos-overrides'
55
+
56
+ @import 'global'
57
+
58
+ @import 'feed'
@@ -1,8 +1,14 @@
1
1
  ---
2
2
  ---
3
3
 
4
- @import "typography/_variables"
4
+ @import '_variables'
5
5
 
6
- @import "colors/_variables"
6
+ @import '_mixins'
7
7
 
8
- @import "error-page"
8
+ @import 'typography/_variables'
9
+
10
+ @import '_colors/_variables'
11
+
12
+ @import 'error-page'
13
+
14
+ @import 'navigation/no-nav'
@@ -2,12 +2,12 @@
2
2
  ---
3
3
  @import '_mixins'
4
4
 
5
- @import "typography/_variables"
5
+ @import 'typography/_variables'
6
6
 
7
- @import "colors/_variables"
7
+ @import '_colors/_variables'
8
8
 
9
- @import "colors/env/_clinician"
9
+ @import '_colors/_clinician'
10
10
 
11
- @import "navigation/_variables"
11
+ @import 'navigation/_variables'
12
12
 
13
- @import "post"
13
+ @import 'post'
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.2.1
4
+ version: 0.3.0
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-01-20 00:00:00.000000000 Z
11
+ date: 2021-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -199,8 +199,8 @@ files:
199
199
  - _includes/head/descriptors/og-meta.html
200
200
  - _includes/head/descriptors/structured-data.html
201
201
  - _includes/head/descriptors/twitter-meta.html
202
- - _includes/head/env/conditional.html
203
202
  - _includes/head/head.html
203
+ - _includes/head/stylesheets.html
204
204
  - _includes/image-post.html
205
205
  - _includes/image.html
206
206
  - _includes/link.html
@@ -221,6 +221,12 @@ files:
221
221
  - _layouts/full-width.html
222
222
  - _layouts/post.html
223
223
  - _layouts/register.html
224
+ - _sass/_colors/README.md
225
+ - _sass/_colors/_clinician.sass
226
+ - _sass/_colors/_mixins.sass
227
+ - _sass/_colors/_pwp.sass
228
+ - _sass/_colors/_variables.sass
229
+ - _sass/_colors/collection.sass
224
230
  - _sass/_functions.sass
225
231
  - _sass/_mixins.sass
226
232
  - _sass/_variables.sass
@@ -228,13 +234,6 @@ files:
228
234
  - _sass/aos-overrides.sass
229
235
  - _sass/breakpoints/about.sass
230
236
  - _sass/collage.sass
231
- - _sass/colors/_variables.sass
232
- - _sass/colors/breakpoints/1024.sass
233
- - _sass/colors/burger.sass
234
- - _sass/colors/env/_clinician.sass
235
- - _sass/colors/env/_pwp.sass
236
- - _sass/colors/global.sass
237
- - _sass/colors/navigation.sass
238
237
  - _sass/contact.sass
239
238
  - _sass/env/breakpoints/768.sass
240
239
  - _sass/env/clinician.sass
@@ -247,13 +246,16 @@ files:
247
246
  - _sass/footer_full.sass
248
247
  - _sass/forms/mc-forms.sass
249
248
  - _sass/global.sass
249
+ - _sass/navigation/README.md
250
250
  - _sass/navigation/_variables.sass
251
+ - _sass/navigation/base.sass
251
252
  - _sass/navigation/breakpoints/1024.sass
252
253
  - _sass/navigation/burger.sass
253
- - _sass/navigation/env/clinician.sass
254
- - _sass/navigation/env/landing.sass
255
- - _sass/navigation/env/pwp.sass
256
- - _sass/navigation/global.sass
254
+ - _sass/navigation/clinician.sass
255
+ - _sass/navigation/collection.sass
256
+ - _sass/navigation/colors.sass
257
+ - _sass/navigation/no-nav.sass
258
+ - _sass/navigation/pwp.sass
257
259
  - _sass/post.sass
258
260
  - _sass/typography/_variables.sass
259
261
  - _sass/typography/branding.sass
@@ -261,21 +263,8 @@ files:
261
263
  - assets/css/env/gaitq_clinician.sass
262
264
  - assets/css/env/gaitq_landing.sass
263
265
  - assets/css/env/gaitq_pwp.sass
264
- - assets/css/gaitq_about.sass
265
266
  - assets/css/gaitq_errors.sass
266
- - assets/css/gaitq_feed.sass
267
- - assets/css/gaitq_global.sass
268
267
  - assets/css/gaitq_post.sass
269
- - assets/fonts/.DS_Store
270
- - assets/fonts/Quicksand/OFL.txt
271
- - assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf
272
- - assets/fonts/Quicksand/README.txt
273
- - assets/fonts/Quicksand/static/Quicksand-Bold.ttf
274
- - assets/fonts/Quicksand/static/Quicksand-Light.ttf
275
- - assets/fonts/Quicksand/static/Quicksand-Medium.ttf
276
- - assets/fonts/Quicksand/static/Quicksand-Regular.ttf
277
- - assets/fonts/Quicksand/static/Quicksand-SemiBold.ttf
278
- - assets/fonts/fontawesome-free-5.11.2-web/.DS_Store
279
268
  - assets/fonts/fontawesome-free-5.11.2-web/css/.DS_Store
280
269
  - assets/fonts/fontawesome-free-5.11.2-web/css/all.min.css
281
270
  - assets/fonts/fontawesome-free-5.11.2-web/webfonts/fa-brands-400.eot
@@ -1,2 +0,0 @@
1
-
2
- <link rel="stylesheet" type="text/css" title="made slowly has all the style" href="{{ site.baseurl }}/assets/css/env/gaitq_{{ page.env }}.css" media="screen" />
@@ -1,20 +0,0 @@
1
-
2
- // Color breakpoint function, unlikely to involve more than navbar stuff.
3
-
4
- // in assets/css/gaitq_env.sass we import this AFTER
5
- // @import 'colors/env/env.sass'
6
-
7
- @media screen and ( min-width: 1024px )
8
-
9
- .navbar
10
- background-color: $env-primary
11
-
12
- .nav-group-content
13
- background-color: $secondary-navbar-color
14
-
15
- > *
16
- color: $env_primary
17
-
18
- .current--url
19
- &:before, &:after
20
- background-color: $env_primary
@@ -1,22 +0,0 @@
1
- // Color function for the burger.
2
-
3
- // in assets/css/gaitq_env.sass we import this AFTER
4
- // @import 'colors/env/env.sass'
5
-
6
- .burger > div
7
- background-color: $burger-color
8
-
9
- .burger-active > div
10
- background-color: $burger-active-color
11
-
12
- .site__logo-active
13
- .site__logo--group
14
- .site__logo--curve,
15
- .site__logo--legvert,
16
- .site__logo--leg45,
17
- .site__logo--g,
18
- .site__logo--a,
19
- .site__logo__i *,
20
- .site__logo--t,
21
- .site__logo--Q
22
- fill: $site__logo-active
@@ -1,16 +0,0 @@
1
-
2
- // Colouring theme for clinician env
3
-
4
- $env-primary: $opd-blue-confidence
5
-
6
- $env-secondary: $opd-orange-confidence
7
-
8
- $burger-color: $white
9
-
10
- $burger-active-color: $env-secondary
11
-
12
- $nav-link-color: $white
13
-
14
- $nav-list-bg-color: $env-primary
15
-
16
- $site__logo-active: $env-secondary
@@ -1,16 +0,0 @@
1
-
2
- // Colouring theme for pwp env
3
-
4
- $env-primary: $opd-orange-confidence
5
-
6
- $env-secondary: $opd-blue-confidence
7
-
8
- $burger-color: $white
9
-
10
- $burger-active-color: $env-secondary
11
-
12
- $nav-link-color: $white
13
-
14
- $nav-list-bg-color: $env-primary
15
-
16
- $site__logo-active: $env-secondary
@@ -1,2 +0,0 @@
1
- .white
2
- color: $white
@@ -1,13 +0,0 @@
1
- // Color function for naviagtion links.
2
-
3
- // in assets/css/gaitq_env.sass we import this AFTER
4
- // @import 'colors/env/env.sass'
5
-
6
- .nav-list
7
- background-color: $nav-list-bg-color
8
-
9
- .nav-group-link
10
- color: $nav-link-color
11
-
12
- .nav-group-content > *
13
- color: $white
@@ -1,38 +0,0 @@
1
- // Navbar site logo
2
- // make sure we don't style any other instance so nest with .nav-brand
3
- .nav-brand
4
- @include logo-color($env-primary)
5
-
6
-
7
- // on mobile and within the clinician env we hide the other submenus and show the gaitq env .nav-group-link
8
- .pwp-group, .gaitq-group
9
- display: none
10
-
11
-
12
- @media screen and ( min-width: 768px )
13
- .pwp-group-link, .clinician-group-link
14
- display: flex
15
-
16
- .nav-group-content
17
- background-color: $env-primary
18
- border-top: 1px solid rgb(118, 133, 164)
19
-
20
- .clinician-group
21
- display: flex
22
- align-items: center
23
- width: 100vw
24
- height: 15vh
25
- left: 0
26
- flex-direction: row
27
-
28
- .nav-group-container
29
-
30
-
31
- .nav-link
32
- font-weight: 400
33
- color: $env-primary
34
- text-transform: uppercase
35
- padding: 1rem 3rem
36
- &:not(.current--url)
37
- &:hover
38
- text-decoration: underline
@@ -1,19 +0,0 @@
1
-
2
-
3
- // Here we only deal with navigation within env: landing
4
-
5
- // We dont include any navbar on the landing page. See _includes/naviagtion/global.html
6
-
7
- // Navbar site logo
8
- // make sure we don't style any other instance so nest with .nav-brand
9
- .nav-brand
10
- @include logo-color($white)
11
- height: 14rem
12
- transform: translateY(15vh)
13
-
14
- @media screen and ( min-width: 1024px )
15
- .nav-brand
16
- transform: translateY(-7.5vh)
17
-
18
- .social-media
19
- display: none
@@ -1,22 +0,0 @@
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'
@@ -1,12 +0,0 @@
1
- ---
2
- ---
3
-
4
- @import "typography/_variables"
5
-
6
- @import "colors/_variables"
7
-
8
- @import "colors/env/_clinician"
9
-
10
- @import "navigation/_variables"
11
-
12
- @import "feed"
@@ -1,34 +0,0 @@
1
- ---
2
- ---
3
-
4
- // Site wide styling
5
-
6
- @import '_variables'
7
-
8
- @import '_mixins'
9
-
10
- @import 'typography/_variables'
11
-
12
- @import 'colors/_variables'
13
-
14
- @import 'typography/resets'
15
-
16
- @import 'typography/branding'
17
-
18
- // Navigation --> structural only
19
-
20
- @import 'navigation/_variables'
21
-
22
- @import 'navigation/global'
23
-
24
- @import 'navigation/burger'
25
-
26
- @import 'navigation/breakpoints/1024'
27
-
28
- // Footer
29
-
30
- @import 'footer_full'
31
-
32
- @import 'aos-overrides'
33
-
34
- @import 'global'
Binary file
@@ -1,93 +0,0 @@
1
- Copyright 2011 The Quicksand Project Authors (https://github.com/andrew-paglinawan/QuicksandFamily), with Reserved Font Name “Quicksand”.
2
-
3
- This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
- This license is copied below, and is also available with a FAQ at:
5
- http://scripts.sil.org/OFL
6
-
7
-
8
- -----------------------------------------------------------
9
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
- -----------------------------------------------------------
11
-
12
- PREAMBLE
13
- The goals of the Open Font License (OFL) are to stimulate worldwide
14
- development of collaborative font projects, to support the font creation
15
- efforts of academic and linguistic communities, and to provide a free and
16
- open framework in which fonts may be shared and improved in partnership
17
- with others.
18
-
19
- The OFL allows the licensed fonts to be used, studied, modified and
20
- redistributed freely as long as they are not sold by themselves. The
21
- fonts, including any derivative works, can be bundled, embedded,
22
- redistributed and/or sold with any software provided that any reserved
23
- names are not used by derivative works. The fonts and derivatives,
24
- however, cannot be released under any other type of license. The
25
- requirement for fonts to remain under this license does not apply
26
- to any document created using the fonts or their derivatives.
27
-
28
- DEFINITIONS
29
- "Font Software" refers to the set of files released by the Copyright
30
- Holder(s) under this license and clearly marked as such. This may
31
- include source files, build scripts and documentation.
32
-
33
- "Reserved Font Name" refers to any names specified as such after the
34
- copyright statement(s).
35
-
36
- "Original Version" refers to the collection of Font Software components as
37
- distributed by the Copyright Holder(s).
38
-
39
- "Modified Version" refers to any derivative made by adding to, deleting,
40
- or substituting -- in part or in whole -- any of the components of the
41
- Original Version, by changing formats or by porting the Font Software to a
42
- new environment.
43
-
44
- "Author" refers to any designer, engineer, programmer, technical
45
- writer or other person who contributed to the Font Software.
46
-
47
- PERMISSION & CONDITIONS
48
- Permission is hereby granted, free of charge, to any person obtaining
49
- a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
- redistribute, and sell modified and unmodified copies of the Font
51
- Software, subject to the following conditions:
52
-
53
- 1) Neither the Font Software nor any of its individual components,
54
- in Original or Modified Versions, may be sold by itself.
55
-
56
- 2) Original or Modified Versions of the Font Software may be bundled,
57
- redistributed and/or sold with any software, provided that each copy
58
- contains the above copyright notice and this license. These can be
59
- included either as stand-alone text files, human-readable headers or
60
- in the appropriate machine-readable metadata fields within text or
61
- binary files as long as those fields can be easily viewed by the user.
62
-
63
- 3) No Modified Version of the Font Software may use the Reserved Font
64
- Name(s) unless explicit written permission is granted by the corresponding
65
- Copyright Holder. This restriction only applies to the primary font name as
66
- presented to the users.
67
-
68
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
- Software shall not be used to promote, endorse or advertise any
70
- Modified Version, except to acknowledge the contribution(s) of the
71
- Copyright Holder(s) and the Author(s) or with their explicit written
72
- permission.
73
-
74
- 5) The Font Software, modified or unmodified, in part or in whole,
75
- must be distributed entirely under this license, and must not be
76
- distributed under any other license. The requirement for fonts to
77
- remain under this license does not apply to any document created
78
- using the Font Software.
79
-
80
- TERMINATION
81
- This license becomes null and void if any of the above conditions are
82
- not met.
83
-
84
- DISCLAIMER
85
- THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
- OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
- COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
- INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
- DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
- FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
- OTHER DEALINGS IN THE FONT SOFTWARE.