slow-steps 0.1.12 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +1 -1
  3. data/_includes/footer/footer_full.html +1 -1
  4. data/_includes/functions/calc-svg-coord.html +18 -23
  5. data/_includes/functions/pull_page_args.html +3 -3
  6. data/_includes/head/head.html +9 -30
  7. data/_includes/head/stylesheets.html +20 -0
  8. data/_includes/image-post.html +12 -0
  9. data/_includes/image.html +50 -5
  10. data/_includes/navigation/global.html +47 -53
  11. data/_includes/scripts.html +9 -8
  12. data/_includes/vimeoPlayer.html +1 -2
  13. data/_layouts/about.html +7 -2
  14. data/_layouts/careers.html +1 -1
  15. data/_layouts/contact.html +1 -1
  16. data/_layouts/env/clinician.html +12 -29
  17. data/_layouts/env/landing.html +4 -4
  18. data/_layouts/env/pwp.html +13 -54
  19. data/_layouts/faq.html +1 -1
  20. data/_layouts/feed.html +1 -2
  21. data/_layouts/full-width.html +25 -2
  22. data/_sass/_colors/README.md +27 -0
  23. data/_sass/_colors/_clinician.sass +7 -0
  24. data/_sass/_colors/_mixins.sass +14 -0
  25. data/_sass/_colors/_pwp.sass +6 -0
  26. data/_sass/{colors → _colors}/_variables.sass +8 -17
  27. data/_sass/_colors/collection.sass +3 -0
  28. data/_sass/_mixins.sass +14 -5
  29. data/_sass/about.sass +7 -6
  30. data/_sass/breakpoints/about.sass +4 -4
  31. data/_sass/collage.sass +52 -11
  32. data/_sass/contact.sass +8 -39
  33. data/_sass/env/landing.sass +7 -7
  34. data/_sass/faq.sass +2 -2
  35. data/_sass/feed.sass +17 -5
  36. data/_sass/footer.sass +1 -1
  37. data/_sass/footer_full.sass +18 -8
  38. data/_sass/forms/mc-forms.sass +3 -3
  39. data/_sass/global.sass +37 -35
  40. data/_sass/navigation/README.md +35 -0
  41. data/_sass/navigation/_variables.sass +5 -6
  42. data/_sass/navigation/{global.sass → base.sass} +21 -20
  43. data/_sass/navigation/breakpoints/1024.sass +32 -15
  44. data/_sass/navigation/burger.sass +9 -3
  45. data/_sass/navigation/clinician.sass +31 -0
  46. data/_sass/navigation/collection.sass +9 -0
  47. data/_sass/navigation/colors.sass +8 -0
  48. data/_sass/navigation/no-nav.sass +32 -0
  49. data/_sass/navigation/{env/pwp.sass → pwp.sass} +12 -16
  50. data/_sass/post.sass +2 -7
  51. data/_sass/typography/_variables.sass +4 -0
  52. data/assets/css/env/gaitq_clinician.sass +24 -8
  53. data/assets/css/env/gaitq_landing.sass +21 -3
  54. data/assets/css/env/gaitq_pwp.sass +28 -8
  55. data/assets/css/gaitq_errors.sass +9 -3
  56. data/assets/css/gaitq_post.sass +5 -5
  57. data/assets/images/augmented_image.png +0 -0
  58. metadata +20 -29
  59. data/_includes/head/env/conditional.html +0 -2
  60. data/_sass/colors/breakpoints/1024.sass +0 -20
  61. data/_sass/colors/burger.sass +0 -22
  62. data/_sass/colors/env/_clinician.sass +0 -16
  63. data/_sass/colors/env/_pwp.sass +0 -16
  64. data/_sass/colors/global.sass +0 -2
  65. data/_sass/colors/navigation.sass +0 -13
  66. data/_sass/navigation/env/clinician.sass +0 -38
  67. data/_sass/navigation/env/landing.sass +0 -19
  68. data/assets/css/gaitq_about.sass +0 -22
  69. data/assets/css/gaitq_feed.sass +0 -12
  70. data/assets/css/gaitq_global.sass +0 -34
  71. data/assets/fonts/.DS_Store +0 -0
  72. data/assets/fonts/Quicksand/OFL.txt +0 -93
  73. data/assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf +0 -0
  74. data/assets/fonts/Quicksand/README.txt +0 -67
  75. data/assets/fonts/Quicksand/static/Quicksand-Bold.ttf +0 -0
  76. data/assets/fonts/Quicksand/static/Quicksand-Light.ttf +0 -0
  77. data/assets/fonts/Quicksand/static/Quicksand-Medium.ttf +0 -0
  78. data/assets/fonts/Quicksand/static/Quicksand-Regular.ttf +0 -0
  79. data/assets/fonts/Quicksand/static/Quicksand-SemiBold.ttf +0 -0
  80. data/assets/fonts/fontawesome-free-5.11.2-web/.DS_Store +0 -0
@@ -22,11 +22,14 @@ body
22
22
  background-color: $white
23
23
 
24
24
  .fullwidth__wrap
25
- width: 90vw
26
- max-width: 800px
27
- margin: auto
28
- margin-top: $navbar-height + $secondary-navbar-height + 5vh
25
+ background-color: $white
26
+ width: 100vw
27
+ padding-top: $navbar-height + $secondary-navbar-height + 5vh
28
+ & > *
29
+ margin: auto
30
+ max-width: 800px
29
31
  & > p
32
+
30
33
  padding: 3rem 0
31
34
  & > ol li, ul li
32
35
  padding: 1rem 0
@@ -135,9 +138,15 @@ body
135
138
  transform: scaleY(2)
136
139
 
137
140
 
141
+ .image--caption
142
+ font-size: $font-size * .7
143
+ color: $grey
144
+ padding: 1rem 0
145
+ text-align: center
146
+
138
147
  // Block colors and sizes
139
148
  .strap--opd-trust
140
- @include opd-blue-trust
149
+ @include opd-light-blue
141
150
 
142
151
 
143
152
  .strap__100
@@ -243,32 +252,28 @@ $svg-text-offset: 60px
243
252
  stop-opacity: 1
244
253
 
245
254
  .svg__augment--pulse
246
- animation: pulse-ring 2s $bezier-pulse infinite
247
255
  fill: $led
248
256
 
249
- @keyframes pulse-ring
250
- 0%
251
- opacity: .5
252
- r: .1
253
257
 
254
- 50%
255
- opacity: .2
258
+ // Social icons wraped in <a's
256
259
 
257
- 100%
258
- opacity: 0
259
- r: 2
260
+ .social-media
261
+ display: flex
262
+ padding: 0
263
+ margin: 0
260
264
 
265
+ .social-media-item
266
+ list-style: none
261
267
 
262
- // Social icons wraped in <a's
263
- .social
264
- color: $grey
265
- text-decoration: none
268
+ .social-media-link
269
+ @include default-trans
270
+ color: $white
266
271
 
267
272
  .yaml--link
268
273
  color: inherit
269
274
  text-decoration: none
270
275
  &:hover
271
- color: $opd-blue-trust
276
+ color: $opd-light-blue
272
277
 
273
278
 
274
279
  @media screen and ( min-width: 768px )
@@ -288,26 +293,23 @@ $svg-text-offset: 60px
288
293
  max-width: 600px
289
294
  margin: 0 auto
290
295
 
291
- .social--Facebook
296
+ .social-media-item
292
297
  &:hover
293
- color: $facebook-primary
298
+ .social--Facebook
299
+ color: $facebook-primary
294
300
 
295
- .social--Twitter
296
- &:hover
297
- color: $twitter-primary
301
+ .social--Twitter
302
+ color: $twitter-primary
298
303
 
299
- .social--LinkedIn
300
- &:hover
301
- color: $linkedin-primary
304
+ .social--LinkedIn
305
+ color: $linkedin-primary
302
306
 
303
- .social--Instagram
304
- &:hover
305
- color: $instagram-primary
307
+ .social--Instagram
308
+ color: $instagram-primary
306
309
 
307
- .social--Website,
308
- .social--Email
309
- &:hover
310
- color: $opd-blue-trust
310
+ .social--Website,
311
+ .social--Email
312
+ color: $opd-light-blue
311
313
 
312
314
 
313
315
  // This is basically a button and should to be centralised
@@ -0,0 +1,35 @@
1
+ # Navbar Sass
2
+
3
+ All the styling for the navbar originates here.
4
+
5
+ ## _variables.sass
6
+
7
+ Sass variable definitions for dimensions and transitions
8
+
9
+ ## colors.sass
10
+
11
+ Collection of color definitions that are not defined by environmental colors
12
+
13
+ ## base.sass
14
+
15
+ Base sass for navigation.
16
+
17
+ ## burger.sass
18
+
19
+ Burger specific sass.
20
+
21
+ ## breakpoints/1024.sass
22
+
23
+ 1024 px breakpoint for navigation
24
+
25
+ ## landing.sass
26
+
27
+ Unique settings for the landing page
28
+
29
+ ## clinician.sass
30
+
31
+ Unique settings for the clinician pages
32
+
33
+ ## pwp.sass
34
+
35
+ Unique settings for the pwp pages
@@ -1,25 +1,24 @@
1
1
  // This is where we setup the apperance of the navigation. Note, the contents is picked up from _data/menu.yml and written into _inludes/navbar.html
2
2
 
3
- // We have two key sass files, _sass/navbar/mobile.sass and .../desktop.sass
4
-
5
- // The mobile.sass is loaded first whilst a breakpoint controls the desktop.sass
6
-
7
-
8
3
  // ************* Dimesions *************
9
4
 
10
5
  // Applies to ALL displays
6
+
11
7
  $navbar-height: 5vh
12
8
 
13
9
  $mobile-navbar-height: 10vh
14
10
 
15
11
  $secondary-navbar-height: 10vh
16
12
 
13
+ $brand-height: 55%
14
+
17
15
  // change .nav-list.height manually in _sass/navbar/mobile.sass, can't figure out how to use calc --vh whith sass var
16
+
18
17
  $nav-list-height: 85vh
19
18
 
20
19
  // ************* Colours *************
21
20
 
22
- // see _sass/colors/_variables.sass
21
+ // see _sass/navigation/colors.sass
23
22
 
24
23
  // ************* Animations *************
25
24
 
@@ -1,13 +1,8 @@
1
1
 
2
-
3
- // Global navigation Sass
4
-
5
- // Avoid declaring any styling like color etc.
6
- // These are defined in _sass/colors/env/_env.sass and called by various functions in _sass/colors/...
7
-
8
- // Everything here will be included in EVERY .html
2
+ // Navigation styling for base
9
3
 
10
4
  .navbar
5
+ @include default-trans
11
6
  align-items: center
12
7
  display: flex
13
8
  height: $mobile-navbar-height
@@ -16,27 +11,26 @@
16
11
  top: 0
17
12
  white-space: nowrap
18
13
  width: 100%
19
- z-index: 99
14
+ z-index: 9998
20
15
 
21
16
  .social-media
22
- padding-left: 4rem
17
+ margin-left: 3vw
18
+ z-index: inherit
19
+
23
20
  .social-media-link
24
- color: $white
25
- font-size: $font-size * .8
26
- transform: translateY(0)
27
- &:hover
28
- text-shadow: 3px 3px 6px rgba($black, .2)
29
- //font-size: $font-size * 1
30
- transform: translateY(-2px)
21
+ font-size: $sm-font-size
22
+ padding-right: $sm-font-size
31
23
 
24
+ .nav-scrolled
25
+ @include navbar-color
32
26
 
33
27
  .nav-brand
34
28
  width: 30vw
35
29
  padding-left: 3vw
36
- z-index: 100
30
+ z-index: 1
37
31
 
38
32
  .site__logo *
39
- transition: 2s ease-in
33
+ @include default-trans
40
34
 
41
35
  .nav-list
42
36
  border-bottom-left-radius: 80px
@@ -54,6 +48,8 @@
54
48
  transform: translateX(100%)
55
49
  transition: $nav-slider-transition
56
50
  width: 100vw
51
+ box-sizing: content-box
52
+ background-color: $env-primary
57
53
 
58
54
  .nav-link
59
55
  margin: 6vh 15vw
@@ -61,14 +57,19 @@
61
57
  text-decoration: none
62
58
  display: flex
63
59
 
64
- .nav-group-content .nav-link
60
+ .nav-group-link
61
+ color: $nav-link-color
62
+
63
+ .nav-link
65
64
  font-size: 1.7rem
66
65
  z-index: 100
66
+ color: $nav-link-color
67
67
 
68
68
  .nav-active
69
69
  // we toggle this class in mobile-nav-slider.js on burger click
70
70
  transform: translateX(0%)
71
71
 
72
+
72
73
  .site__logo-active
73
74
  .site__logo--group
74
75
  .site__logo--curve,
@@ -79,4 +80,4 @@
79
80
  .site__logo__i *,
80
81
  .site__logo--t,
81
82
  .site__logo--Q
82
- transition: 1.2s ease-in
83
+ fill: $env-secondary
@@ -1,18 +1,16 @@
1
- // Navigation styling for breakpoint 768
2
-
3
- // Avoid declaring any styling like color etc.
4
- // These will be decalred in _sass/naviagtion/env/
5
-
6
- // Everything here will be included in EVERY .html
7
-
8
- $brand-height: 55%
1
+ // Navigation styling for breakpoint 1024
9
2
 
10
3
  @media screen and ( min-width: 1024px )
11
4
 
5
+ .pwp-group-link, .clinician-group-link
6
+ display: flex
7
+
12
8
  .navbar
13
9
  @include default-trans
14
- height: $navbar-height
15
10
  align-items: center
11
+ background-color: $env-primary
12
+ height: $navbar-height
13
+
16
14
 
17
15
  .nav-scrolled
18
16
  @include default-trans
@@ -23,7 +21,11 @@ $brand-height: 55%
23
21
  .nav-brand
24
22
  @include default-trans
25
23
  height: 8vh
26
- top: 6vh
24
+ max-height: 100px
25
+
26
+ .nav-scrolled
27
+ background-color: $env-primary
28
+ // overwrite mobile
27
29
 
28
30
  .nav-brand
29
31
  @include default-trans
@@ -31,12 +33,10 @@ $brand-height: 55%
31
33
  position: absolute
32
34
  max-width: 160px
33
35
  height: 10vh
34
- z-index: 999
35
36
  top: 7.5vh
36
37
 
37
38
  .site__logo
38
39
  position: absolute
39
- top: (100% - $brand-height) / 2
40
40
  height: $brand-height
41
41
 
42
42
  .nav-list
@@ -63,8 +63,12 @@ $brand-height: 55%
63
63
  overflow: hidden
64
64
  position: relative
65
65
 
66
- // Surround current link with lines
66
+ .sub-link,
67
+ .subsub-link
68
+ color: $env-primary
67
69
 
70
+
71
+ // Surround current link with ticks
68
72
  .current--url
69
73
  &:before, &:after
70
74
  content: ""
@@ -84,6 +88,7 @@ $brand-height: 55%
84
88
 
85
89
  .nav-group-content
86
90
  @include default-trans
91
+ @include navbar-color
87
92
  align-items: center
88
93
  justify-content: flex-end
89
94
  position: absolute
@@ -93,7 +98,10 @@ $brand-height: 55%
93
98
  padding: 0
94
99
  height: $secondary-navbar-height
95
100
  //max-height: 100px
96
- backdrop-filter: blur(20px)
101
+
102
+ .current--url
103
+ &:before, &:after
104
+ background-color: $env-primary
97
105
 
98
106
  .nav-group-content .nav-link
99
107
  margin: 0
@@ -103,7 +111,7 @@ $brand-height: 55%
103
111
 
104
112
  .nav-subsub-content
105
113
  background-color: $pure-white
106
- box-shadow: 1px 1px 1px rgba(0, 0, 0, .1)
114
+ box-shadow: 1px 1px 1px rgba($pure-black, .1)
107
115
  visibility: hidden
108
116
  opacity: 0
109
117
  border-radius: 6px
@@ -129,6 +137,15 @@ $brand-height: 55%
129
137
  transform: rotate(-45deg) translateY(14px)
130
138
  z-index: -1
131
139
 
140
+ .nav-group-container
141
+ .nav-link
142
+ font-weight: 400
143
+ text-transform: uppercase
144
+ padding: 1rem 3rem
145
+ &:not(.current--url)
146
+ &:hover
147
+ text-decoration: underline
148
+
132
149
  .nav-group-container:hover > .nav-subsub-content
133
150
  visibility: visible
134
151
  opacity: 1
@@ -4,20 +4,26 @@
4
4
  cursor: pointer
5
5
  display: block
6
6
  padding-right: 3vw
7
- z-index: 9999
7
+ z-index: 1
8
8
  & > div
9
+ background-color: $burger-color
9
10
  height: 2px
10
11
  margin: 7px
11
12
  width: 25px
12
13
 
14
+
13
15
  .burger-line-1
14
- transition: width .6s ease-in-out
16
+ transition: width .6s ease-in-out, background-color .3s ease-in-out
15
17
 
16
18
  .burger-line-2
17
- transition: width .3s ease-in-out
19
+ transition: width .3s ease-in-out, background-color .3s ease-in-out
18
20
 
21
+ .burger-line-3
22
+ transition: background-color .3s ease-in-out
19
23
 
20
24
  .burger-active
25
+ & > div
26
+ background-color: $env-secondary
21
27
  .burger-line-1
22
28
  width: 8px
23
29
  // reduce by 17 px
@@ -0,0 +1,31 @@
1
+ // Theme specific for clinician env
2
+
3
+ // Navbar site logo
4
+ .nav-brand
5
+ @include logo-color($env-primary)
6
+
7
+ // Color the navbar once we start scrolling
8
+ .navbar.nav-scrolled
9
+
10
+ .social-media-link
11
+ color: $env-primary
12
+
13
+ .burger > div
14
+ background-color: $env-primary
15
+
16
+ // on mobile and within an env we hide the other submenus
17
+ .pwp-group
18
+ display: none
19
+
20
+ @media screen and ( min-width: 1024px )
21
+
22
+ .clinician-group
23
+ display: flex
24
+ align-items: center
25
+ width: 100vw
26
+ height: 15vh
27
+ left: 0
28
+ flex-direction: row
29
+
30
+
31
+ @import 'collection'
@@ -0,0 +1,9 @@
1
+ @import '_variables'
2
+
3
+ @import 'colors'
4
+
5
+ @import 'base'
6
+
7
+ @import 'burger'
8
+
9
+ @import 'breakpoints/1024'