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
@@ -4,13 +4,13 @@
|
|
4
4
|
// in assets/css/gaitq_env.sass we import this AFTER
|
5
5
|
// @import 'colors/env/env.sass'
|
6
6
|
|
7
|
-
@media screen and ( min-width:
|
7
|
+
@media screen and ( min-width: 1024px )
|
8
8
|
|
9
9
|
.navbar
|
10
10
|
background-color: $env-primary
|
11
11
|
|
12
12
|
.nav-group-content
|
13
|
-
background-color: $
|
13
|
+
background-color: $secondary-navbar-color
|
14
14
|
|
15
15
|
> *
|
16
16
|
color: $env_primary
|
data/_sass/contact.sass
ADDED
@@ -0,0 +1,227 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
.contact__wrapper
|
4
|
+
display: flex
|
5
|
+
width: 100%
|
6
|
+
background-color: $white
|
7
|
+
padding: 5rem 0
|
8
|
+
flex-direction: column
|
9
|
+
|
10
|
+
.contact--left
|
11
|
+
width: auto
|
12
|
+
padding: 0 1rem
|
13
|
+
padding-bottom: 5rem
|
14
|
+
|
15
|
+
.contact--right
|
16
|
+
//width: 100%
|
17
|
+
padding: 0 1rem
|
18
|
+
|
19
|
+
.form-instruction
|
20
|
+
padding-bottom: 2rem
|
21
|
+
|
22
|
+
.contact-form
|
23
|
+
width: 100%
|
24
|
+
display: block
|
25
|
+
|
26
|
+
form
|
27
|
+
border: solid 1px rgba($env-primary, .2)
|
28
|
+
border-radius: 4px
|
29
|
+
padding: 2rem
|
30
|
+
label
|
31
|
+
font-size: $font-size * .8
|
32
|
+
color: $black
|
33
|
+
|
34
|
+
.google-map
|
35
|
+
//grid-area: googleMap
|
36
|
+
width: 100%
|
37
|
+
|
38
|
+
//padding: 0 5rem
|
39
|
+
//filter: sepia(.3)
|
40
|
+
iframe
|
41
|
+
width: 100%
|
42
|
+
height: 40vh
|
43
|
+
border: solid 1px rgba($env-primary, .2)
|
44
|
+
|
45
|
+
.contact-details
|
46
|
+
display: flex
|
47
|
+
flex-direction: column
|
48
|
+
padding: 4rem 0
|
49
|
+
p
|
50
|
+
padding-bottom: 2rem
|
51
|
+
.fas
|
52
|
+
color: $env-primary
|
53
|
+
a
|
54
|
+
color: $black
|
55
|
+
transition: all .2s ease-in-out
|
56
|
+
//text-decoration: none
|
57
|
+
&:hover
|
58
|
+
color: $env-primary
|
59
|
+
.social-media-link
|
60
|
+
font-size: $font-size * 1.4
|
61
|
+
|
62
|
+
.form-element
|
63
|
+
width: 100%
|
64
|
+
height: 40px
|
65
|
+
border-radius: 4px
|
66
|
+
//font-size: 1rem
|
67
|
+
font-weight: 100
|
68
|
+
margin: 2vh 0
|
69
|
+
border: none
|
70
|
+
background-color: $pure-white
|
71
|
+
padding: .1rem 0 .4rem 0
|
72
|
+
text-indent: 1rem
|
73
|
+
|
74
|
+
&::placeholder
|
75
|
+
color: rgba($env-primary, .3)
|
76
|
+
|
77
|
+
.btn-contact
|
78
|
+
background: $env-primary
|
79
|
+
color: #ffffff
|
80
|
+
cursor: pointer
|
81
|
+
font-size: $font-size * .8
|
82
|
+
padding: 1rem 2rem
|
83
|
+
border: 0
|
84
|
+
transition: all .3s
|
85
|
+
border-radius: 4px
|
86
|
+
width: auto
|
87
|
+
position: relative
|
88
|
+
|
89
|
+
.social-media
|
90
|
+
display: flex
|
91
|
+
justify-content: center
|
92
|
+
padding: 0
|
93
|
+
margin: 0
|
94
|
+
z-index: 9999
|
95
|
+
|
96
|
+
.social-media-item
|
97
|
+
list-style: none
|
98
|
+
padding-right: 2rem
|
99
|
+
|
100
|
+
.social-media-link
|
101
|
+
color: $grey
|
102
|
+
transition: all .3s ease-in-out
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
@media screen and ( min-width: 1024px )
|
107
|
+
|
108
|
+
.contact__wrapper
|
109
|
+
display: flex
|
110
|
+
flex-direction: row
|
111
|
+
width: 100%
|
112
|
+
background-color: $white
|
113
|
+
padding: 5rem 0
|
114
|
+
|
115
|
+
.contact--left
|
116
|
+
width: 40%
|
117
|
+
padding: 0 5rem
|
118
|
+
|
119
|
+
.contact--right
|
120
|
+
width: 60%
|
121
|
+
padding: 0 5rem
|
122
|
+
|
123
|
+
.form-instruction
|
124
|
+
padding-bottom: 2rem
|
125
|
+
|
126
|
+
.contact-form
|
127
|
+
width: 100%
|
128
|
+
display: block
|
129
|
+
|
130
|
+
form
|
131
|
+
border: solid 1px rgba($env-primary, .2)
|
132
|
+
border-radius: 4px
|
133
|
+
padding: 2rem
|
134
|
+
label
|
135
|
+
font-size: $font-size * .8
|
136
|
+
color: $black
|
137
|
+
|
138
|
+
.google-map
|
139
|
+
//grid-area: googleMap
|
140
|
+
width: 100%
|
141
|
+
|
142
|
+
//padding: 0 5rem
|
143
|
+
//filter: sepia(.3)
|
144
|
+
iframe
|
145
|
+
width: 100%
|
146
|
+
height: 40vh
|
147
|
+
border: solid 1px rgba($env-primary, .2)
|
148
|
+
|
149
|
+
.contact-details
|
150
|
+
display: flex
|
151
|
+
flex-direction: column
|
152
|
+
padding: 4rem 0
|
153
|
+
p
|
154
|
+
padding-bottom: 2rem
|
155
|
+
.fas
|
156
|
+
color: $env-primary
|
157
|
+
a
|
158
|
+
color: $black
|
159
|
+
transition: all .2s ease-in-out
|
160
|
+
text-decoration: none
|
161
|
+
&:hover
|
162
|
+
color: $env-primary
|
163
|
+
.social-media-link
|
164
|
+
font-size: $font-size * 2
|
165
|
+
|
166
|
+
.form-element
|
167
|
+
width: 100%
|
168
|
+
height: 40px
|
169
|
+
border-radius: 4px
|
170
|
+
//font-size: 1rem
|
171
|
+
font-weight: 100
|
172
|
+
margin: 2vh 0
|
173
|
+
border: none
|
174
|
+
background-color: $pure-white
|
175
|
+
padding: .1rem 0 .4rem 0
|
176
|
+
text-indent: 1rem
|
177
|
+
|
178
|
+
&::placeholder
|
179
|
+
color: rgba($env-primary, .3)
|
180
|
+
|
181
|
+
.btn-contact
|
182
|
+
background: $env-primary
|
183
|
+
color: #ffffff
|
184
|
+
cursor: pointer
|
185
|
+
font-size: $font-size * .8
|
186
|
+
padding: 1rem 2rem
|
187
|
+
border: 0
|
188
|
+
transition: all .3s
|
189
|
+
border-radius: 4px
|
190
|
+
width: auto
|
191
|
+
position: relative
|
192
|
+
|
193
|
+
&::after
|
194
|
+
content: "\f054"
|
195
|
+
font-family: "Font Awesome 5 Free"
|
196
|
+
font-weight: 900
|
197
|
+
position: absolute
|
198
|
+
//left: 85%
|
199
|
+
top: 28%
|
200
|
+
right: 5%
|
201
|
+
bottom: 0
|
202
|
+
opacity: 0
|
203
|
+
|
204
|
+
&:hover
|
205
|
+
background: rgba($env-primary, .9)
|
206
|
+
transition: all .5s
|
207
|
+
box-shadow: 0px 6px 15px rgba($env-primary, .3)
|
208
|
+
padding: 1rem 3rem 1rem 2.1rem
|
209
|
+
|
210
|
+
&::after
|
211
|
+
opacity: 1
|
212
|
+
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
|
@@ -1,17 +1,7 @@
|
|
1
1
|
|
2
2
|
@media screen and ( min-width: 768px )
|
3
3
|
|
4
|
-
.
|
5
|
-
color: $env-secondary
|
6
|
-
background-color: $opd-blue-trust
|
7
|
-
padding: 10rem 5rem
|
8
|
-
& > h2
|
9
|
-
padding-bottom: 5rem
|
10
|
-
& > p
|
11
|
-
max-width: 800px
|
12
|
-
margin: 0 auto
|
13
|
-
|
14
|
-
.segment-wrap
|
4
|
+
.segment__wrap
|
15
5
|
display: flex
|
16
6
|
flex-wrap: no-wrap
|
17
7
|
flex-direction: row
|
@@ -29,60 +19,29 @@
|
|
29
19
|
.segment__right
|
30
20
|
width: 40vw
|
31
21
|
|
32
|
-
.augment--gaurentee
|
33
|
-
width: 40vw
|
34
|
-
height: 100vh
|
35
|
-
|
36
22
|
.segment__gaurentee
|
37
|
-
display: flex
|
38
|
-
align-items: center
|
39
|
-
justify-content: space-between
|
40
|
-
text-align: left
|
41
23
|
flex-direction: row
|
42
|
-
width: 100%
|
43
24
|
height: 50%
|
44
|
-
|
45
|
-
color: $white
|
25
|
+
justify-content: space-between
|
46
26
|
padding: 0
|
27
|
+
text-align: left
|
47
28
|
|
48
29
|
.site__logo
|
49
|
-
|
50
|
-
justify-content: center
|
51
|
-
align-items: center
|
52
|
-
text-align: center
|
53
|
-
width: 15vw
|
54
|
-
margin: 0 5vw
|
55
|
-
//padding: 8rem
|
30
|
+
width: 140px
|
56
31
|
|
57
|
-
.
|
32
|
+
.strap__guarantee
|
58
33
|
border: none
|
59
34
|
border-left: solid 2px $pure-white
|
60
35
|
width: 35vw
|
61
36
|
margin: 0
|
62
37
|
padding: 0 3rem
|
63
38
|
|
64
|
-
.pwp__grid_img
|
65
|
-
width: 100%
|
66
|
-
min-height: 100vh
|
67
|
-
right: 0
|
68
|
-
background-image: url($baseurl + 'assets/img/pwp__grid_img.png')
|
69
|
-
background-size: cover
|
70
|
-
background-position: center
|
71
|
-
background-repeat: no-repeat
|
72
|
-
padding: 0
|
73
|
-
//padding-top: 100%
|
74
|
-
|
75
|
-
|
76
39
|
.segment__keywords
|
77
40
|
width: 100%
|
78
|
-
height: 50%
|
79
41
|
flex-direction: column
|
80
42
|
align-items: center
|
81
43
|
justify-content: center
|
82
44
|
|
83
|
-
& > *
|
84
|
-
//padding: 2rem 0
|
85
|
-
|
86
45
|
.clinician__strap
|
87
46
|
h1
|
88
47
|
display: block
|
data/_sass/env/clinician.sass
CHANGED
@@ -1,150 +1,52 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
background-size: cover
|
14
|
-
filter: grayscale(1) contrast(.2) brightness(1.6)
|
15
|
-
height: 100%
|
16
|
-
opacity: .7
|
17
|
-
position: relative
|
18
|
-
width: 100%
|
19
|
-
|
20
|
-
.clinician__overlay
|
1
|
+
/* Last full read through 28/12/2020
|
2
|
+
*
|
3
|
+
*##############################################
|
4
|
+
*# clinician landing /_sass/env/clinician.sass
|
5
|
+
*##############################################
|
6
|
+
*
|
7
|
+
*/
|
8
|
+
|
9
|
+
.image__filter--blur
|
10
|
+
@include image-filter--blur
|
11
|
+
|
12
|
+
.hero__overlay
|
21
13
|
background-color: $env-primary
|
22
|
-
height: 70%
|
23
|
-
position: relative
|
24
|
-
width: 100%
|
25
14
|
|
26
|
-
.
|
15
|
+
.bg--env-100
|
27
16
|
background-color: $env-primary
|
28
|
-
color: $white
|
29
|
-
display: flex
|
30
|
-
flex-direction: column
|
31
|
-
height: 30%
|
32
|
-
justify-content: space-around
|
33
|
-
padding-bottom: 3vh
|
34
|
-
text-align: center
|
35
|
-
width: 100%
|
36
17
|
|
37
|
-
|
38
|
-
|
39
|
-
display: none
|
18
|
+
.bg--env-50
|
19
|
+
background-color: rgba($env-primary, .5)
|
40
20
|
|
41
|
-
.
|
42
|
-
color: $env-primary
|
43
|
-
|
44
|
-
.clinician__follow
|
45
|
-
display: flex
|
46
|
-
position: absolute
|
47
|
-
top: 59.5vh
|
48
|
-
width: 30px
|
49
|
-
height: 11vh
|
21
|
+
.hero__follow
|
50
22
|
background-color: $env-primary
|
51
|
-
|
52
|
-
border-radius: 30px
|
53
|
-
color: $white
|
54
|
-
align-items: center
|
55
|
-
justify-content: center
|
56
|
-
&::after
|
57
|
-
content: "\2193"
|
58
|
-
font-size: 20px
|
59
|
-
transform: scaleY(2)
|
60
|
-
|
61
|
-
|
62
|
-
.clinician__hero__2
|
63
|
-
display: block
|
64
|
-
object-fit: cover
|
65
|
-
height: 50vh
|
66
|
-
width: 100vw
|
67
|
-
|
68
|
-
.clinician__device--group
|
69
|
-
background-image: url($baseurl + 'assets/img/pwp_device_group.png')
|
70
|
-
svg
|
71
|
-
position: absolute
|
72
|
-
transform: translateY(-100%)
|
73
|
-
//-height: 100vh
|
74
|
-
|
75
|
-
.clinician__straps
|
76
|
-
text-align: center
|
77
|
-
//padding: 5rem 2rem
|
78
|
-
background-position: center
|
79
|
-
color: $env-secondary
|
80
|
-
& > h2
|
81
|
-
//padding: 2rem 0
|
82
|
-
|
83
|
-
.clinician__device--strap
|
84
|
-
background-color: $opd-blue-trust
|
85
|
-
padding: 5rem 2rem
|
86
|
-
& > h2
|
87
|
-
padding: 2rem 0
|
23
|
+
top: 59.5vh
|
88
24
|
|
89
|
-
.
|
25
|
+
.segment__keywords
|
26
|
+
align-items: center
|
90
27
|
display: flex
|
91
|
-
flex-direction:
|
92
|
-
flex-wrap: wrap
|
93
|
-
|
94
|
-
width: 100vw
|
95
|
-
|
96
|
-
.clinician__grid-col-l, .clinician__grid-col-r
|
28
|
+
flex-direction: column
|
97
29
|
height: 100%
|
98
|
-
|
30
|
+
justify-content: center
|
99
31
|
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
justify-content: space-between
|
104
|
-
flex-direction: column
|
105
|
-
width: 100%
|
106
|
-
background-color: $env-primary
|
107
|
-
color: $white
|
108
|
-
//height: 10rem
|
109
|
-
padding: 5rem 0
|
32
|
+
& > *
|
33
|
+
padding: 5rem 0
|
34
|
+
width: 50%
|
110
35
|
|
111
|
-
.
|
112
|
-
|
36
|
+
.image--guarantee
|
37
|
+
@include image-filter-rotate
|
113
38
|
|
114
39
|
.action__call
|
115
|
-
width: 140px
|
116
|
-
height: 40px
|
117
|
-
background-color: $opd-blue-trust
|
118
|
-
margin: 4rem 0 0
|
119
|
-
border-radius: 20px
|
120
|
-
font-size: 12px
|
121
|
-
font-weight: 500
|
122
|
-
display: flex
|
123
|
-
align-items: center
|
124
|
-
justify-content: center
|
125
|
-
color: $black
|
126
|
-
&::after
|
127
|
-
content: "Get Involved"
|
128
40
|
|
41
|
+
&:before
|
42
|
+
background-color: rgba($env-secondary, .2)
|
129
43
|
|
44
|
+
span
|
45
|
+
color: $env-primary
|
130
46
|
|
131
|
-
|
132
|
-
|
133
|
-
background-size: cover
|
134
|
-
background-repeat: no-repeat
|
135
|
-
padding-top: 150%
|
136
|
-
filter: grayscale(1) contrast(.8) brightness(.9) sepia(.4) hue-rotate(180deg)
|
137
|
-
|
138
|
-
.clinician--guarantee
|
139
|
-
border-top: solid 1px $soft-white
|
140
|
-
width: 80%
|
141
|
-
margin: 3rem 0
|
47
|
+
svg
|
48
|
+
stroke: $env-primary
|
142
49
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
flex-wrap: wrap
|
147
|
-
background-color: $opd-blue-trust
|
148
|
-
& > *
|
149
|
-
padding: 3rem 0
|
150
|
-
width: 50%
|
50
|
+
&:hover
|
51
|
+
&::before
|
52
|
+
background-color: rgba($env-secondary, 1)
|