slow-steps 0.2.0 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/_config.yml +3 -3
  4. data/_includes/footer/footer.html +64 -7
  5. data/_includes/footer/footer_redesign.html +107 -0
  6. data/_includes/forms/mc-register.html +126 -108
  7. data/_includes/functions/pull_page_args.html +3 -3
  8. data/_includes/head/descriptors/og-meta.html +0 -1
  9. data/_includes/head/descriptors/structured-data.html +3 -3
  10. data/_includes/head/descriptors/twitter-meta.html +1 -1
  11. data/_includes/head/head.html +11 -32
  12. data/_includes/head/stylesheets.html +20 -0
  13. data/_includes/image-post.html +1 -1
  14. data/_includes/navigation/global.html +56 -57
  15. data/_includes/scripts.html +9 -8
  16. data/_includes/vimeoPlayer.html +1 -2
  17. data/_layouts/about.html +6 -1
  18. data/_layouts/default.html +1 -1
  19. data/_layouts/env/clinician.html +2 -2
  20. data/_layouts/env/landing.html +4 -4
  21. data/_layouts/faq.html +3 -0
  22. data/_layouts/feed.html +1 -1
  23. data/_layouts/post.html +1 -1
  24. data/_sass/_colors/README.md +27 -0
  25. data/_sass/_colors/_clinician.sass +7 -0
  26. data/_sass/_colors/_mixins.sass +14 -0
  27. data/_sass/_colors/_pwp.sass +6 -0
  28. data/_sass/{colors → _colors}/_variables.sass +8 -17
  29. data/_sass/_colors/collection.sass +3 -0
  30. data/_sass/_functions.sass +9 -0
  31. data/_sass/_mixins.sass +17 -7
  32. data/_sass/about.sass +9 -6
  33. data/_sass/breakpoints/about.sass +15 -6
  34. data/_sass/collage.sass +2 -1
  35. data/_sass/contact.sass +10 -41
  36. data/_sass/env/clinician.sass +3 -1
  37. data/_sass/env/landing.sass +25 -10
  38. data/_sass/env/pwp.sass +4 -1
  39. data/_sass/faq.sass +11 -3
  40. data/_sass/feed.sass +4 -3
  41. data/_sass/footer.sass +174 -14
  42. data/_sass/footer_redesign.sass +351 -0
  43. data/_sass/forms/mc-forms.sass +3 -3
  44. data/_sass/global.sass +55 -22
  45. data/_sass/navigation/README.md +35 -0
  46. data/_sass/navigation/_variables.sass +8 -9
  47. data/_sass/navigation/{global.sass → base.sass} +34 -24
  48. data/_sass/navigation/breakpoints/1024.sass +44 -20
  49. data/_sass/navigation/burger.sass +9 -3
  50. data/_sass/navigation/clinician.sass +31 -0
  51. data/_sass/navigation/collection.sass +9 -0
  52. data/_sass/navigation/colors.sass +8 -0
  53. data/_sass/navigation/no-nav.sass +32 -0
  54. data/_sass/navigation/{env/pwp.sass → pwp.sass} +12 -16
  55. data/_sass/post.sass +1 -1
  56. data/_sass/typography/_variables.sass +6 -2
  57. data/_sass/typography/resets.sass +2 -2
  58. data/assets/css/env/gaitq_clinician.sass +24 -8
  59. data/assets/css/env/gaitq_landing.sass +21 -3
  60. data/assets/css/env/gaitq_pwp.sass +28 -8
  61. data/assets/css/gaitq_errors.sass +21 -3
  62. data/assets/css/gaitq_post.sass +5 -5
  63. data/assets/js/mobile-nav-slider.js +1 -1
  64. metadata +20 -31
  65. data/_includes/footer/footer_full.html +0 -79
  66. data/_includes/head/env/conditional.html +0 -2
  67. data/_sass/colors/breakpoints/1024.sass +0 -20
  68. data/_sass/colors/burger.sass +0 -22
  69. data/_sass/colors/env/_clinician.sass +0 -16
  70. data/_sass/colors/env/_pwp.sass +0 -16
  71. data/_sass/colors/global.sass +0 -2
  72. data/_sass/colors/navigation.sass +0 -13
  73. data/_sass/footer_full.sass +0 -173
  74. data/_sass/navigation/env/clinician.sass +0 -38
  75. data/_sass/navigation/env/landing.sass +0 -19
  76. data/assets/css/gaitq_about.sass +0 -22
  77. data/assets/css/gaitq_feed.sass +0 -12
  78. data/assets/css/gaitq_global.sass +0 -34
  79. data/assets/fonts/.DS_Store +0 -0
  80. data/assets/fonts/Quicksand/OFL.txt +0 -93
  81. data/assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf +0 -0
  82. data/assets/fonts/Quicksand/README.txt +0 -67
  83. data/assets/fonts/Quicksand/static/Quicksand-Bold.ttf +0 -0
  84. data/assets/fonts/Quicksand/static/Quicksand-Light.ttf +0 -0
  85. data/assets/fonts/Quicksand/static/Quicksand-Medium.ttf +0 -0
  86. data/assets/fonts/Quicksand/static/Quicksand-Regular.ttf +0 -0
  87. data/assets/fonts/Quicksand/static/Quicksand-SemiBold.ttf +0 -0
  88. data/assets/fonts/fontawesome-free-5.11.2-web/.DS_Store +0 -0
@@ -0,0 +1,7 @@
1
+ @import 'collection'
2
+
3
+ // Colouring theme for clinician env
4
+
5
+ $env-primary: $opd-blue
6
+
7
+ $env-secondary: $opd-coral
@@ -0,0 +1,14 @@
1
+ // Color set mixins
2
+
3
+ @mixin opd-light-blue
4
+ background-color: $opd-light-blue
5
+ color: $opd-blue
6
+
7
+
8
+ @mixin opd-blue
9
+ background-color: $opd-blue
10
+ color: $white
11
+
12
+ @mixin opd-coral
13
+ background-color: $opd-coral
14
+ color: $white
@@ -0,0 +1,6 @@
1
+ @import 'collection'
2
+ // Colouring theme for pwp env
3
+
4
+ $env-primary: $opd-coral
5
+
6
+ $env-secondary: $opd-blue
@@ -6,18 +6,21 @@
6
6
  *
7
7
  */
8
8
 
9
+ // $var-name: rgba(r, g, b, a) only
10
+
9
11
  // Oxford Product Design
10
12
 
11
13
  // #46627d
12
- $opd-blue-confidence: rgba(70, 98, 125, 1)
14
+ $opd-blue: rgba(70, 98, 125, 1)
13
15
 
14
16
  // #da5e51
15
- $opd-orange-confidence: rgba(218, 94, 81, 1)
17
+ $opd-coral: rgba(218, 94, 81, 1)
16
18
 
17
- // #9CBBD2
18
- $opd-blue-trust: rgba(174, 201, 229, 1)
19
+ // #a3dbf5
20
+ $opd-light-blue: rgba(174, 201, 229, 1)
19
21
 
20
- $opd-grey-neutral: rgba(178, 178, 178, 1)
22
+ // #b3b2b2
23
+ $opd-grey: rgba(179, 178, 178, 1)
21
24
 
22
25
 
23
26
  // Socials
@@ -50,15 +53,3 @@ $light-grey: rgb(220, 220, 220)
50
53
  $grey: rgb(130, 130, 130)
51
54
 
52
55
  $led: rgb(255, 70, 0)
53
-
54
-
55
- // Object colors
56
-
57
- $secondary-navbar-color: rgba(255, 255, 255, .8)
58
-
59
-
60
- // Color set mixins
61
-
62
- @mixin opd-blue-trust
63
- background-color: $opd-blue-trust
64
- color: $opd-blue-confidence
@@ -0,0 +1,3 @@
1
+ @import '_variables'
2
+
3
+ @import '_mixins'
@@ -1,2 +1,11 @@
1
1
  @function url-friendly-colour($colour)
2
2
  @return '%23' + str-slice('#{$colour}', 2, -1)
3
+
4
+
5
+ // Remove the unit of a length
6
+ // https://css-tricks.com/snippets/sass/strip-unit-function/
7
+ @function strip-unit($number)
8
+ @if type-of($number) == 'number' and not unitless($number)
9
+ @return $number / ($number * 0 + 1)
10
+
11
+ @return $number
@@ -31,8 +31,9 @@
31
31
  // Landing page animations - hover and focus
32
32
 
33
33
  @mixin reveal-landing-strap
34
- height: 30vh
35
- padding: 0 3rem
34
+ height: auto
35
+ max-height: 400px
36
+
36
37
 
37
38
  // Snappy build function, see /_sass/_variables.sass for $bezier-snap
38
39
  @mixin build-in($name)
@@ -68,18 +69,18 @@
68
69
  @mixin logo-primary-colors
69
70
  .site__logo--group
70
71
  .site__logo--curve
71
- fill: $opd-orange-confidence
72
+ fill: $opd-coral
72
73
  .site__logo--legvert
73
- fill: $opd-blue-confidence
74
+ fill: $opd-blue
74
75
  .site__logo--leg45
75
- fill: $opd-blue-trust
76
+ fill: $opd-light-blue
76
77
  .site__logo--g,
77
78
  .site__logo--a,
78
79
  .site__logo__i,
79
80
  .site__logo--t
80
- fill: $opd-blue-confidence
81
+ fill: $opd-blue
81
82
  .site__logo--Q
82
- fill: $opd-orange-confidence
83
+ fill: $opd-coral
83
84
 
84
85
 
85
86
 
@@ -101,3 +102,12 @@
101
102
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='1278' height='600' %3E%3Cpath d='M1019,600 C1019,600 1019,600 1019,600 C1019,600 1279,600 1279,600 C1279,600 1279,0 1279,0 C1279,0 413,0 413,0 C413,0 413,0 413,0' fill= '#{url-friendly-colour($footer-bg-color)}' fill-opacity='0.99'/%3E%3Cpath d='M1220,600 C1220,600 0,600 0,600 C0,600 0,0 0,0 C0,0 414,0 414,0 C414,0 1020,600 1020,600' fill= '#{url-friendly-colour($footer-bg-color)}' /%3E%3C/svg%3E")
102
103
  background-position: center
103
104
  background-size: cover
105
+
106
+
107
+ @mixin text-shadow
108
+ text-shadow: 3px 3px 6px rgba($pure-black, .2)
109
+
110
+
111
+ @mixin navbar-color
112
+ backdrop-filter: blur(20px)
113
+ background-color: $secondary-navbar-color
@@ -35,7 +35,7 @@
35
35
 
36
36
  .about--video
37
37
  width: 100vw
38
- background-color: $opd-grey-neutral
38
+ //background-color: $opd-grey
39
39
  display: flex
40
40
  flex-direction: column
41
41
  padding: 5rem 0
@@ -45,6 +45,7 @@
45
45
  color: $env-primary
46
46
  text-align: center
47
47
  padding: 1rem
48
+
48
49
  .video__container
49
50
  display: block
50
51
  position: relative
@@ -64,7 +65,7 @@
64
65
  display: flex
65
66
  flex-direction: column
66
67
  background-color: $pure-white
67
- border-top: solid 1px $opd-blue-confidence
68
+ border-top: solid 1px $opd-blue
68
69
 
69
70
  .about__team--title
70
71
  padding-top: 3rem
@@ -73,14 +74,14 @@
73
74
 
74
75
  .team__head
75
76
  align-items: flex-end
76
- border-bottom: solid 1px $opd-blue-confidence
77
+ border-bottom: solid 1px $opd-blue
77
78
  display: flex
78
79
  height: 10rem
79
80
  justify-content: space-around
80
81
  width: 100vw
81
82
 
82
83
  .team__title
83
- color: $opd-blue-confidence
84
+ color: $opd-blue
84
85
  padding-bottom: 2rem
85
86
  transition: .4s ease-out
86
87
  cursor: pointer
@@ -92,7 +93,7 @@
92
93
  color: $env-primary
93
94
  padding-bottom: 2.3rem
94
95
  i
95
- text-shadow: 0px 12px 10px rgba($pure-black, .3)
96
+ @include text-shadow
96
97
  font-size: $font-size * 1.5
97
98
 
98
99
  .team__title.team__title--active
@@ -111,7 +112,7 @@
111
112
 
112
113
  .team__members
113
114
  background-color: $white
114
- color: $opd-blue-confidence
115
+ color: $opd-blue
115
116
  padding-top: 10rem
116
117
 
117
118
  .single__member
@@ -149,6 +150,7 @@
149
150
  display: flex
150
151
  align-items: center
151
152
  color: $grey
153
+ font-size: $font-size
152
154
 
153
155
  .member__socials
154
156
  align-items: center
@@ -193,6 +195,7 @@
193
195
  font-size: $font-size * .6
194
196
 
195
197
  .info__reveal
198
+ align-items: baseline
196
199
  height: $font-size * 1
197
200
  padding-bottom: $font-size * 2
198
201
  transform: translateY(0)
@@ -1,5 +1,5 @@
1
1
 
2
- @media screen and ( min-width: 768px )
2
+ @media screen and ( min-width: 1024px )
3
3
 
4
4
  .about--copy
5
5
  max-width: 800px
@@ -20,12 +20,21 @@
20
20
  text-align: left
21
21
 
22
22
  .video__container
23
+ display: block
24
+ position: relative
25
+ width: 100%
23
26
  padding-top: 56.25%
24
- //margin-right: 5rem
27
+ background-color: $env-primary
28
+ iframe
29
+ position: absolute
30
+ margin: auto
31
+ width: 75%
32
+ height: 100%
33
+
25
34
 
26
35
  .team__head
27
36
  border-bottom: none
28
- border-right: solid 1px $opd-blue-confidence
37
+ border-right: solid 1px $opd-blue
29
38
  display: block
30
39
  height: auto
31
40
  width: auto
@@ -49,7 +58,7 @@
49
58
  padding: 2rem 4rem 2rem 2rem
50
59
  transform: rotate(0)
51
60
  white-space: nowrap
52
- color: $opd-blue-confidence
61
+ color: $opd-blue
53
62
  border: solid 1px rgba($env-primary, 0)
54
63
  margin: 2rem 0
55
64
  &:not(.team__title--active)
@@ -71,7 +80,7 @@
71
80
 
72
81
  .team__members
73
82
  //padding: 10rem
74
- color: $opd-blue-confidence
83
+ color: $opd-blue
75
84
  background-color: $white
76
85
 
77
86
  .team__title--active
@@ -80,7 +89,7 @@
80
89
  padding-right: 1rem !important
81
90
  color: $env-primary !important
82
91
  background-color: $white
83
- border: solid 1px $opd-blue-confidence
92
+ border: solid 1px $opd-blue
84
93
  border-right: solid 1px $white
85
94
  transform: translateX(1px)
86
95
  text-align: right
@@ -60,6 +60,7 @@
60
60
 
61
61
  .collage__image__wrap-2
62
62
  height: 50%
63
+ top: 0
63
64
  width: 40%
64
65
  left: 30%
65
66
  animation-delay: 100ms
@@ -115,7 +116,7 @@ p.job__links
115
116
  background-color: $env-primary
116
117
  padding: 1rem 2.5rem
117
118
  border-radius: 8px
118
- font-weight: 600
119
+ font-weight: $heavy-font
119
120
  margin-right: 3rem
120
121
  @include default-trans
121
122
  &:hover
@@ -17,7 +17,9 @@
17
17
  padding: 0 1rem
18
18
 
19
19
  .form-instruction
20
- padding-bottom: 2rem
20
+ padding-bottom: $font-size
21
+ padding-top: $lg-font-size
22
+ color: $env-primary
21
23
 
22
24
  .contact-form
23
25
  width: 100%
@@ -30,7 +32,7 @@
30
32
  padding: 2rem
31
33
  label
32
34
  font-size: $font-size * .8
33
- color: $black
35
+ color: $env-secondary
34
36
 
35
37
  .google-map
36
38
  width: 100%
@@ -52,20 +54,22 @@
52
54
  .fas
53
55
  color: $env-primary
54
56
  a
55
- color: $black
57
+ color: $env-secondary
56
58
  transition: all .2s ease-in-out
57
59
  //text-decoration: none
58
60
  &:hover
59
61
  color: $env-primary
60
62
  .social-media-link
61
- font-size: $font-size * 1.4
63
+ font-size: $lg-font-size
64
+ color: $env-secondary
65
+ padding-right: $lg-font-size
62
66
 
63
67
  .form-element
64
68
  width: 100%
65
69
  height: 40px
66
70
  border-radius: 4px
67
71
  //font-size: 1rem
68
- font-weight: 100
72
+ font-weight: $medium-font
69
73
  margin: 2vh 0
70
74
  border: none
71
75
  background-color: $pure-white
@@ -87,22 +91,6 @@
87
91
  width: auto
88
92
  position: relative
89
93
 
90
- .social-media
91
- display: flex
92
- justify-content: center
93
- padding: 0
94
- margin: 0
95
- z-index: 9999
96
-
97
- .social-media-item
98
- list-style: none
99
- padding-right: 2rem
100
-
101
- .social-media-link
102
- color: $grey
103
- transition: all .3s ease-in-out
104
-
105
-
106
94
 
107
95
  @media screen and ( min-width: 1024px )
108
96
 
@@ -120,9 +108,6 @@
120
108
  width: 60%
121
109
  padding: 0 5rem
122
110
 
123
- .form-instruction
124
- padding-bottom: 2rem
125
-
126
111
  .contact-form
127
112
  width: 100%
128
113
  display: block
@@ -155,7 +140,6 @@
155
140
  .fas
156
141
  color: $env-primary
157
142
  a
158
- color: $black
159
143
  transition: all .2s ease-in-out
160
144
  text-decoration: none
161
145
  &:hover
@@ -168,7 +152,7 @@
168
152
  height: 40px
169
153
  border-radius: 4px
170
154
  //font-size: 1rem
171
- font-weight: 100
155
+ font-weight: $medium-font
172
156
  margin: 2vh 0
173
157
  border: none
174
158
  background-color: $pure-white
@@ -210,18 +194,3 @@
210
194
  &::after
211
195
  opacity: 1
212
196
  transition: all 0.3s
213
-
214
- .social-media
215
- display: flex
216
- justify-content: flex-start
217
- padding: 0
218
- margin: 0
219
- z-index: 9999
220
-
221
- .social-media-item
222
- list-style: none
223
- padding-right: 2rem
224
-
225
- .social-media-link
226
- color: $grey
227
- transition: all .3s ease-in-out
@@ -5,6 +5,7 @@
5
5
  *##############################################
6
6
  *
7
7
  */
8
+ $hero-follow-bottom: 59.5vh
8
9
 
9
10
  .image__filter--blur
10
11
  @include image-filter--blur
@@ -20,7 +21,8 @@
20
21
 
21
22
  .hero__follow
22
23
  background-color: $env-primary
23
- top: 59.5vh
24
+ top: $hero-follow-bottom
25
+ top: calc(var(--vh, 1vh) * #{strip-unit($hero-follow-bottom)})
24
26
 
25
27
  .segment__keywords
26
28
  align-items: center
@@ -9,11 +9,23 @@
9
9
  // Fallback for browsers that do not support Custom Properties
10
10
  $landing-height: 100vh
11
11
 
12
+ body
13
+ animation: fadeInAnimation ease 1s
14
+ animation-iteration-count: 1
15
+ animation-fill-mode: forwards
16
+
17
+ @keyframes fadeInAnimation
18
+ 0%
19
+ opacity: 0
20
+
21
+ 100%
22
+ opacity: 1
23
+
12
24
  .landing__page
13
25
  display: flex
14
26
  flex-direction: column
15
27
  height: $landing-height
16
- height: calc(var(--vh, 1vh) * 100)
28
+ height: calc(var(--vh, 1vh) * #{strip-unit($landing-height)})
17
29
 
18
30
  .page__half
19
31
  align-items: flex-end
@@ -48,10 +60,10 @@ $landing-height: 100vh
48
60
  @include image-filter--mix
49
61
 
50
62
  .env--pwp
51
- background-color: $opd-orange-confidence
63
+ background-color: $opd-coral
52
64
 
53
65
  .env--clinician
54
- background-color: $opd-blue-confidence
66
+ background-color: $opd-blue
55
67
 
56
68
  @media screen and ( min-width: 768px )
57
69
 
@@ -76,19 +88,22 @@ $landing-height: 100vh
76
88
  @include reveal-landing-strap
77
89
 
78
90
  .landing__strap
91
+ @include default-trans
79
92
  display: flex
80
93
  flex-direction: column
81
- height: 0
94
+ max-height: 0
82
95
  justify-content: space-around
83
96
  max-width: 400px
84
97
  overflow: hidden
85
- transition: .2s ease-in-out
86
98
  width: 40vw
99
+ padding: 0 3rem
87
100
 
88
101
  .landing__cta
102
+ font-size: $sm-font-size
89
103
  display: flex
90
104
  flex-direction: row
91
105
  justify-content: space-between
106
+ padding: $font-size 0
92
107
 
93
108
  > a
94
109
  align-self: center
@@ -101,12 +116,12 @@ $landing-height: 100vh
101
116
  width: 40%
102
117
 
103
118
  .primary__cta
104
- background-color: $opd-blue-trust
105
- border: solid 1px $opd-blue-trust
106
- color: $opd-blue-confidence
119
+ background-color: $opd-light-blue
120
+ border: solid 1px $opd-light-blue
121
+ color: $opd-blue
107
122
  &:hover
108
123
  background-color: transparent
109
- color: $opd-blue-trust
124
+ color: $opd-light-blue
110
125
 
111
126
  .secondary__cta
112
127
  background-color: transparent
@@ -114,7 +129,7 @@ $landing-height: 100vh
114
129
  color: $white
115
130
  &:hover
116
131
  background-color: $white
117
- color: $opd-blue-confidence
132
+ color: $opd-blue
118
133
 
119
134
  .primary__cta, .secondary__cta
120
135
  &:hover