slow-steps 0.2.1 → 0.4.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_config.yml +3 -3
- data/_includes/contact-form.html +1 -1
- data/_includes/footer/footer.html +64 -7
- data/_includes/footer/footer_redesign.html +107 -0
- data/_includes/forms/mc-register.html +124 -110
- data/_includes/functions/calc-svg-coord.html +2 -0
- data/_includes/functions/reposition-svg-labels.html +44 -0
- data/_includes/head/descriptors/og-meta.html +0 -1
- data/_includes/head/descriptors/structured-data.html +3 -3
- data/_includes/head/descriptors/twitter-meta.html +1 -1
- data/_includes/{google-analytics.html → head/google-analytics.html} +9 -2
- data/_includes/head/head.html +13 -32
- data/_includes/head/stylesheets.html +20 -0
- data/_includes/image-post.html +1 -1
- data/_includes/navigation/global.html +56 -57
- data/_includes/scripts.html +10 -9
- data/_includes/vimeoPlayer.html +1 -2
- data/_layouts/about.html +6 -1
- data/_layouts/default.html +1 -1
- data/_layouts/env/clinician.html +6 -6
- data/_layouts/env/landing.html +4 -4
- data/_layouts/env/pwp.html +3 -3
- data/_layouts/faq.html +3 -0
- data/_layouts/feed.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/_colors/README.md +27 -0
- data/_sass/_colors/_clinician.sass +7 -0
- data/_sass/_colors/_mixins.sass +14 -0
- data/_sass/_colors/_pwp.sass +6 -0
- data/_sass/{colors → _colors}/_variables.sass +9 -16
- data/_sass/_colors/collection.sass +3 -0
- data/_sass/_functions.sass +9 -0
- data/_sass/_mixins.sass +20 -8
- data/_sass/about.sass +9 -6
- data/_sass/breakpoints/about.sass +15 -6
- data/_sass/collage.sass +2 -1
- data/_sass/contact.sass +10 -41
- data/_sass/env/breakpoints/768.sass +16 -11
- data/_sass/env/clinician.sass +12 -7
- data/_sass/env/landing.sass +25 -10
- data/_sass/env/pwp.sass +11 -2
- data/_sass/faq.sass +11 -3
- data/_sass/feed.sass +4 -3
- data/_sass/footer.sass +174 -14
- data/_sass/footer_redesign.sass +349 -0
- data/_sass/forms/mc-forms.sass +12 -3
- data/_sass/global.sass +68 -28
- data/_sass/navigation/README.md +35 -0
- data/_sass/navigation/_variables.sass +8 -9
- data/_sass/navigation/{global.sass → base.sass} +34 -24
- data/_sass/navigation/breakpoints/1024.sass +48 -21
- data/_sass/navigation/burger.sass +9 -3
- data/_sass/navigation/clinician.sass +31 -0
- data/_sass/navigation/collection.sass +9 -0
- data/_sass/navigation/colors.sass +8 -0
- data/_sass/navigation/no-nav.sass +32 -0
- data/_sass/navigation/{env/pwp.sass → pwp.sass} +12 -16
- data/_sass/post.sass +1 -1
- data/_sass/typography/_variables.sass +5 -1
- data/_sass/typography/resets.sass +2 -2
- data/assets/css/env/gaitq_clinician.sass +24 -8
- data/assets/css/env/gaitq_landing.sass +21 -3
- data/assets/css/env/gaitq_pwp.sass +28 -8
- data/assets/css/gaitq_errors.sass +21 -3
- data/assets/css/gaitq_post.sass +5 -5
- data/assets/js/mobile-nav-slider.js +1 -1
- data/assets/js/svg_text_width.js +4 -4
- metadata +20 -31
- data/_includes/footer/footer_full.html +0 -79
- data/_includes/functions/pull_page_args.html +0 -31
- data/_includes/head/env/conditional.html +0 -2
- data/_sass/colors/breakpoints/1024.sass +0 -20
- data/_sass/colors/burger.sass +0 -22
- data/_sass/colors/env/_clinician.sass +0 -16
- data/_sass/colors/env/_pwp.sass +0 -16
- data/_sass/colors/global.sass +0 -2
- data/_sass/colors/navigation.sass +0 -13
- data/_sass/footer_full.sass +0 -173
- data/_sass/navigation/env/clinician.sass +0 -38
- data/_sass/navigation/env/landing.sass +0 -19
- data/assets/css/gaitq_about.sass +0 -22
- data/assets/css/gaitq_feed.sass +0 -12
- data/assets/css/gaitq_global.sass +0 -34
- data/assets/fonts/.DS_Store +0 -0
- data/assets/fonts/Quicksand/OFL.txt +0 -93
- data/assets/fonts/Quicksand/Quicksand-VariableFont_wght.ttf +0 -0
- data/assets/fonts/Quicksand/README.txt +0 -67
- data/assets/fonts/Quicksand/static/Quicksand-Bold.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-Light.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-Medium.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-Regular.ttf +0 -0
- data/assets/fonts/Quicksand/static/Quicksand-SemiBold.ttf +0 -0
- data/assets/fonts/fontawesome-free-5.11.2-web/.DS_Store +0 -0
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
.ft__wrapper
|
|
2
|
+
@include footer-bg($opd-blue)
|
|
3
|
+
color: $white
|
|
4
|
+
padding: 5vh 5vw
|
|
5
|
+
font-size: $sm-font-size
|
|
6
|
+
|
|
7
|
+
.ft__body
|
|
8
|
+
display: flex
|
|
9
|
+
flex-direction: column-reverse
|
|
10
|
+
width: 100%
|
|
11
|
+
padding: 6rem 0
|
|
12
|
+
justify-content: space-between
|
|
13
|
+
|
|
14
|
+
.ft__company
|
|
15
|
+
display: flex
|
|
16
|
+
|
|
17
|
+
.ft__company__logo
|
|
18
|
+
@include logo-color($white)
|
|
19
|
+
padding-bottom: 3rem
|
|
20
|
+
|
|
21
|
+
& > .site__logo
|
|
22
|
+
height: 5rem
|
|
23
|
+
&::after
|
|
24
|
+
content: 'Limited'
|
|
25
|
+
position: absolute
|
|
26
|
+
font-size: $sm-font-size
|
|
27
|
+
transform: translate(-5rem, 4rem)
|
|
28
|
+
|
|
29
|
+
.ft__company__no
|
|
30
|
+
padding-bottom: 2rem
|
|
31
|
+
|
|
32
|
+
.ft__company__add > ul
|
|
33
|
+
list-style: none
|
|
34
|
+
padding: 0
|
|
35
|
+
margin: 0
|
|
36
|
+
text-decoration: none
|
|
37
|
+
|
|
38
|
+
.address
|
|
39
|
+
line-height: $font-size
|
|
40
|
+
& > *
|
|
41
|
+
padding-bottom: 1rem
|
|
42
|
+
|
|
43
|
+
.ft__sitemap
|
|
44
|
+
|
|
45
|
+
//width: 40vw
|
|
46
|
+
|
|
47
|
+
.ft__sitemap
|
|
48
|
+
margin-top: 6rem
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
.ft__sitemap--submenu
|
|
52
|
+
font-size: inherit
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
.ft__sitemap--header
|
|
56
|
+
border-bottom: 1px solid $opd-light-blue
|
|
57
|
+
margin-bottom: 3rem
|
|
58
|
+
width: 100%
|
|
59
|
+
|
|
60
|
+
.ft__sitemap--env-wrap
|
|
61
|
+
display: flex
|
|
62
|
+
flex-direction: column
|
|
63
|
+
|
|
64
|
+
.ft__sitemap--env
|
|
65
|
+
//margin-right: 8rem
|
|
66
|
+
|
|
67
|
+
.ft__sitemap--env-header
|
|
68
|
+
margin-bottom: 2rem
|
|
69
|
+
|
|
70
|
+
.ft__sitemap--submenu
|
|
71
|
+
padding: 0
|
|
72
|
+
|
|
73
|
+
li
|
|
74
|
+
//line-height: 2rem
|
|
75
|
+
list-style: none
|
|
76
|
+
&:last-child
|
|
77
|
+
@include default-trans
|
|
78
|
+
margin: auto
|
|
79
|
+
margin-top: 2rem
|
|
80
|
+
margin-bottom: 4rem
|
|
81
|
+
background-color: $opd-coral
|
|
82
|
+
text-align: center
|
|
83
|
+
padding: 1rem
|
|
84
|
+
width: 70vw
|
|
85
|
+
border-radius: 6px
|
|
86
|
+
cursor: pointer
|
|
87
|
+
text-transform: uppercase
|
|
88
|
+
a
|
|
89
|
+
text-decoration: none
|
|
90
|
+
|
|
91
|
+
.ft__sitemap--link
|
|
92
|
+
//text-decoration: none
|
|
93
|
+
color: inherit
|
|
94
|
+
line-height: 3rem
|
|
95
|
+
|
|
96
|
+
.ft__contact
|
|
97
|
+
//width: 20vw
|
|
98
|
+
text-align: center
|
|
99
|
+
|
|
100
|
+
.ft__contact--header
|
|
101
|
+
padding-bottom: 3rem
|
|
102
|
+
|
|
103
|
+
ul
|
|
104
|
+
list-style: none
|
|
105
|
+
padding: 0
|
|
106
|
+
margin: 0
|
|
107
|
+
|
|
108
|
+
.ft__contact--link
|
|
109
|
+
padding: 1rem 0
|
|
110
|
+
|
|
111
|
+
i
|
|
112
|
+
padding-right: 1rem
|
|
113
|
+
|
|
114
|
+
& > a
|
|
115
|
+
color: inherit
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
.social-media
|
|
119
|
+
padding-top: 4rem
|
|
120
|
+
display: flex
|
|
121
|
+
justify-content: space-around
|
|
122
|
+
i
|
|
123
|
+
font-size: 3rem
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
.ft__base
|
|
127
|
+
|
|
128
|
+
border-top: solid 1px $opd-light-blue
|
|
129
|
+
text-align: center
|
|
130
|
+
|
|
131
|
+
a,
|
|
132
|
+
p
|
|
133
|
+
color: inherit
|
|
134
|
+
font-size: $sm-font-size
|
|
135
|
+
margin: 0
|
|
136
|
+
padding: 1rem .1rem
|
|
137
|
+
text-decoration: none
|
|
138
|
+
|
|
139
|
+
.legal-links
|
|
140
|
+
display: flex
|
|
141
|
+
justify-content: center
|
|
142
|
+
|
|
143
|
+
flex-direction: row
|
|
144
|
+
a
|
|
145
|
+
&::after
|
|
146
|
+
content: " |"
|
|
147
|
+
|
|
148
|
+
&:last-child
|
|
149
|
+
&::after
|
|
150
|
+
content: ""
|
|
151
|
+
|
|
152
|
+
.copyright
|
|
153
|
+
&::after
|
|
154
|
+
content: ' Limited'
|
|
155
|
+
|
|
156
|
+
.ft__sitemap--submenu
|
|
157
|
+
li
|
|
158
|
+
transition: .2s ease-in-out
|
|
159
|
+
|
|
160
|
+
&:hover > li
|
|
161
|
+
opacity: .5
|
|
162
|
+
|
|
163
|
+
li
|
|
164
|
+
&:hover
|
|
165
|
+
opacity: 1
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
@media screen and ( min-width: 768px )
|
|
169
|
+
|
|
170
|
+
.ft__wrapper
|
|
171
|
+
@include footer-bg($opd-blue)
|
|
172
|
+
color: $white
|
|
173
|
+
padding: 5vh 5vw
|
|
174
|
+
font-size: $sm-font-size
|
|
175
|
+
|
|
176
|
+
.ft__body
|
|
177
|
+
display: flex
|
|
178
|
+
flex-direction: row
|
|
179
|
+
width: 90vw
|
|
180
|
+
padding: 10rem 0
|
|
181
|
+
justify-content: space-between
|
|
182
|
+
|
|
183
|
+
.ft__company
|
|
184
|
+
width: 20vw
|
|
185
|
+
display: flex
|
|
186
|
+
|
|
187
|
+
.ft__company__logo
|
|
188
|
+
@include logo-color($white)
|
|
189
|
+
padding-bottom: 3rem
|
|
190
|
+
& > .site__logo
|
|
191
|
+
height: 7rem
|
|
192
|
+
&::after
|
|
193
|
+
content: 'Limited'
|
|
194
|
+
position: absolute
|
|
195
|
+
font-size: $font-size
|
|
196
|
+
transform: translate(-7rem, 6rem)
|
|
197
|
+
|
|
198
|
+
.ft__company__no
|
|
199
|
+
padding-bottom: 2rem
|
|
200
|
+
|
|
201
|
+
.ft__company__add > ul
|
|
202
|
+
list-style: none
|
|
203
|
+
padding: 0
|
|
204
|
+
margin: 0
|
|
205
|
+
text-decoration: none
|
|
206
|
+
|
|
207
|
+
.address
|
|
208
|
+
line-height: $font-size + 1rem
|
|
209
|
+
& > *
|
|
210
|
+
padding-bottom: 1rem
|
|
211
|
+
|
|
212
|
+
.ft__company--link
|
|
213
|
+
padding: 2rem 0
|
|
214
|
+
|
|
215
|
+
& > a
|
|
216
|
+
text-decoration: none
|
|
217
|
+
color: inherit
|
|
218
|
+
|
|
219
|
+
.ft__sitemap
|
|
220
|
+
width: 40vw
|
|
221
|
+
|
|
222
|
+
.ft__sitemap, .ft__contact
|
|
223
|
+
margin-top: 9.5rem
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
.ft__sitemap--submenu
|
|
227
|
+
font-size: inherit
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
.ft__sitemap--header
|
|
231
|
+
border-bottom: 1px solid $opd-light-blue
|
|
232
|
+
margin-bottom: 3rem
|
|
233
|
+
width: 80%
|
|
234
|
+
|
|
235
|
+
.ft__sitemap--env-wrap
|
|
236
|
+
display: flex
|
|
237
|
+
flex-direction: row
|
|
238
|
+
|
|
239
|
+
.ft__sitemap--env
|
|
240
|
+
margin-right: 8rem
|
|
241
|
+
|
|
242
|
+
.ft__sitemap--env-header
|
|
243
|
+
margin-bottom: 2rem
|
|
244
|
+
|
|
245
|
+
.ft__sitemap--submenu
|
|
246
|
+
padding: 0
|
|
247
|
+
|
|
248
|
+
li
|
|
249
|
+
line-height: 3rem
|
|
250
|
+
list-style: none
|
|
251
|
+
|
|
252
|
+
&:last-child
|
|
253
|
+
margin-top: 5rem
|
|
254
|
+
width: auto
|
|
255
|
+
border: solid 1px $opd-coral
|
|
256
|
+
.ft__sitemap--link
|
|
257
|
+
@include default-trans
|
|
258
|
+
text-align: center
|
|
259
|
+
padding: 2rem 3rem
|
|
260
|
+
width: auto
|
|
261
|
+
border-radius: 6px
|
|
262
|
+
cursor: pointer
|
|
263
|
+
text-transform: uppercase
|
|
264
|
+
&:hover
|
|
265
|
+
background-color: rgba($opd-coral,.3)
|
|
266
|
+
border: solid 1px $pure-white
|
|
267
|
+
|
|
268
|
+
.ft__sitemap--link
|
|
269
|
+
text-decoration: none
|
|
270
|
+
color: inherit
|
|
271
|
+
line-height: 4rem
|
|
272
|
+
|
|
273
|
+
.ft__contact
|
|
274
|
+
width: 20vw
|
|
275
|
+
text-align: left
|
|
276
|
+
|
|
277
|
+
.ft__contact--header
|
|
278
|
+
padding-bottom: 3rem
|
|
279
|
+
|
|
280
|
+
ul
|
|
281
|
+
list-style: none
|
|
282
|
+
padding: 0
|
|
283
|
+
margin: 0
|
|
284
|
+
|
|
285
|
+
.ft__contact--link
|
|
286
|
+
padding: 2rem 0
|
|
287
|
+
|
|
288
|
+
i
|
|
289
|
+
padding-right: 2rem
|
|
290
|
+
|
|
291
|
+
& > a
|
|
292
|
+
@include default-trans
|
|
293
|
+
color: inherit
|
|
294
|
+
text-decoration: none
|
|
295
|
+
|
|
296
|
+
&:hover > a
|
|
297
|
+
color: $opd-coral
|
|
298
|
+
|
|
299
|
+
.social-media
|
|
300
|
+
padding-top: 6rem
|
|
301
|
+
justify-content: flex-start
|
|
302
|
+
i
|
|
303
|
+
font-size: 4rem
|
|
304
|
+
padding-right: 5rem
|
|
305
|
+
|
|
306
|
+
.ft__base
|
|
307
|
+
align-items: center
|
|
308
|
+
border-top: solid 1px $opd-light-blue
|
|
309
|
+
display: flex
|
|
310
|
+
flex-wrap: wrap
|
|
311
|
+
|
|
312
|
+
justify-content: space-between
|
|
313
|
+
min-width: 100%
|
|
314
|
+
width: 100%
|
|
315
|
+
a,
|
|
316
|
+
p
|
|
317
|
+
color: inherit
|
|
318
|
+
font-size: $sm-font-size
|
|
319
|
+
margin: 0
|
|
320
|
+
padding: .5rem .1rem
|
|
321
|
+
text-decoration: none
|
|
322
|
+
|
|
323
|
+
.legal-links
|
|
324
|
+
display: flex
|
|
325
|
+
justify-content: space-between
|
|
326
|
+
|
|
327
|
+
flex-direction: row
|
|
328
|
+
a
|
|
329
|
+
&::after
|
|
330
|
+
content: " |"
|
|
331
|
+
|
|
332
|
+
&:last-child
|
|
333
|
+
&::after
|
|
334
|
+
content: ""
|
|
335
|
+
|
|
336
|
+
.copyright
|
|
337
|
+
&::after
|
|
338
|
+
content: ' Limited'
|
|
339
|
+
|
|
340
|
+
.ft__sitemap--submenu
|
|
341
|
+
li
|
|
342
|
+
transition: .2s ease-in-out
|
|
343
|
+
|
|
344
|
+
&:hover > li
|
|
345
|
+
opacity: .5
|
|
346
|
+
|
|
347
|
+
li
|
|
348
|
+
&:hover
|
|
349
|
+
opacity: 1
|
data/_sass/forms/mc-forms.sass
CHANGED
|
@@ -77,7 +77,7 @@ input.switch
|
|
|
77
77
|
input.switch
|
|
78
78
|
&:checked
|
|
79
79
|
+ .icon
|
|
80
|
-
background: $opd-blue
|
|
80
|
+
background: $opd-light-blue
|
|
81
81
|
|
|
82
82
|
~
|
|
83
83
|
.yes
|
|
@@ -126,13 +126,13 @@ input.switch
|
|
|
126
126
|
background: $env-primary
|
|
127
127
|
|
|
128
128
|
.styled-checkbox:checked
|
|
129
|
-
background: $opd-
|
|
129
|
+
background: $opd-coral
|
|
130
130
|
|
|
131
131
|
+ .icon span
|
|
132
132
|
left: calc(100% - 25.732px)
|
|
133
133
|
|
|
134
134
|
&:before
|
|
135
|
-
background: $opd-blue
|
|
135
|
+
background: $opd-light-blue
|
|
136
136
|
|
|
137
137
|
.content__gdpr
|
|
138
138
|
display: flex
|
|
@@ -191,3 +191,12 @@ input.switch
|
|
|
191
191
|
padding: 5rem
|
|
192
192
|
background-color: $pure-white
|
|
193
193
|
border-radius: 20px
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
.response
|
|
197
|
+
padding: 2rem 0
|
|
198
|
+
|
|
199
|
+
.mce_inline_error
|
|
200
|
+
padding: 1rem 0
|
|
201
|
+
font-size: $sm-font-size
|
|
202
|
+
color: $led
|
data/_sass/global.sass
CHANGED
|
@@ -87,6 +87,7 @@ body
|
|
|
87
87
|
object-fit: cover
|
|
88
88
|
object-position: center
|
|
89
89
|
width: 100%
|
|
90
|
+
display: inherit
|
|
90
91
|
|
|
91
92
|
.image__filter--mix
|
|
92
93
|
@include image-filter--mix
|
|
@@ -101,9 +102,35 @@ body
|
|
|
101
102
|
text-align: center
|
|
102
103
|
width: 100vw
|
|
103
104
|
|
|
104
|
-
|
|
105
|
+
|
|
106
|
+
& > p
|
|
107
|
+
opacity: 0
|
|
105
108
|
padding-top: 12px
|
|
109
|
+
animation: fadeInAnimation ease 1s
|
|
110
|
+
animation-delay: .8s
|
|
111
|
+
animation-iteration-count: 1
|
|
112
|
+
animation-fill-mode: forwards
|
|
113
|
+
|
|
114
|
+
& > h1, h2, h3, h4, h5
|
|
115
|
+
animation: zoomInAnimation ease .6s
|
|
116
|
+
animation-iteration-count: 1
|
|
117
|
+
animation-fill-mode: forwards
|
|
118
|
+
|
|
119
|
+
@keyframes zoomInAnimation
|
|
120
|
+
0%
|
|
121
|
+
transform: scale(0)
|
|
122
|
+
opacity: 0
|
|
123
|
+
|
|
124
|
+
100%
|
|
125
|
+
transform: scale(1)
|
|
126
|
+
opacity: 1
|
|
127
|
+
|
|
128
|
+
@keyframes fadeInAnimation
|
|
129
|
+
0%
|
|
130
|
+
opacity: 0
|
|
106
131
|
|
|
132
|
+
100%
|
|
133
|
+
opacity: 1
|
|
107
134
|
|
|
108
135
|
.hero__strap--center
|
|
109
136
|
//padding-top: $navbar-height
|
|
@@ -146,7 +173,7 @@ body
|
|
|
146
173
|
|
|
147
174
|
// Block colors and sizes
|
|
148
175
|
.strap--opd-trust
|
|
149
|
-
@include opd-blue
|
|
176
|
+
@include opd-light-blue
|
|
150
177
|
|
|
151
178
|
|
|
152
179
|
.strap__100
|
|
@@ -180,7 +207,8 @@ body
|
|
|
180
207
|
stroke-width: 1
|
|
181
208
|
|
|
182
209
|
& > .svg--text
|
|
183
|
-
font-size: $font-size
|
|
210
|
+
font-size: $lg-font-size
|
|
211
|
+
font-weight: $heavy-font
|
|
184
212
|
|
|
185
213
|
.svg__labels.hidden
|
|
186
214
|
|
|
@@ -208,6 +236,12 @@ body
|
|
|
208
236
|
& > .trans-right
|
|
209
237
|
animation: trans-in-right .6s ease-in-out
|
|
210
238
|
|
|
239
|
+
// This is digusting! We need to tweak the actual html so we can readilly access these elements.
|
|
240
|
+
.svg__labels--red
|
|
241
|
+
& > svg > * > *
|
|
242
|
+
fill: $opd-coral
|
|
243
|
+
stroke: $opd-coral!important
|
|
244
|
+
|
|
211
245
|
|
|
212
246
|
$svg-text-offset: 60px
|
|
213
247
|
|
|
@@ -256,15 +290,25 @@ $svg-text-offset: 60px
|
|
|
256
290
|
|
|
257
291
|
|
|
258
292
|
// Social icons wraped in <a's
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
293
|
+
|
|
294
|
+
.social-media
|
|
295
|
+
display: flex
|
|
296
|
+
padding: 0
|
|
297
|
+
margin: 0
|
|
298
|
+
line-height: 0
|
|
299
|
+
|
|
300
|
+
.social-media-item
|
|
301
|
+
list-style: none
|
|
302
|
+
|
|
303
|
+
.social-media-link
|
|
304
|
+
@include default-trans
|
|
305
|
+
color: $white
|
|
262
306
|
|
|
263
307
|
.yaml--link
|
|
264
308
|
color: inherit
|
|
265
309
|
text-decoration: none
|
|
266
310
|
&:hover
|
|
267
|
-
color: $opd-blue
|
|
311
|
+
color: $opd-light-blue
|
|
268
312
|
|
|
269
313
|
|
|
270
314
|
@media screen and ( min-width: 768px )
|
|
@@ -284,33 +328,29 @@ $svg-text-offset: 60px
|
|
|
284
328
|
max-width: 600px
|
|
285
329
|
margin: 0 auto
|
|
286
330
|
|
|
287
|
-
.social
|
|
331
|
+
.social-media-item
|
|
288
332
|
&:hover
|
|
289
|
-
|
|
333
|
+
.social--Facebook
|
|
334
|
+
color: $facebook-primary
|
|
290
335
|
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
color: $twitter-primary
|
|
336
|
+
.social--Twitter
|
|
337
|
+
color: $twitter-primary
|
|
294
338
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
color: $linkedin-primary
|
|
339
|
+
.social--LinkedIn
|
|
340
|
+
color: $linkedin-primary
|
|
298
341
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
color: $instagram-primary
|
|
342
|
+
.social--Instagram
|
|
343
|
+
color: $instagram-primary
|
|
302
344
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
color: $opd-blue-trust
|
|
345
|
+
.social--Website,
|
|
346
|
+
.social--Email
|
|
347
|
+
color: $opd-light-blue
|
|
307
348
|
|
|
308
349
|
|
|
309
350
|
// This is basically a button and should to be centralised
|
|
310
351
|
.action__call
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
margin: -100px auto
|
|
352
|
+
font-size: $font-size
|
|
353
|
+
margin: 0 auto
|
|
314
354
|
padding: 2rem
|
|
315
355
|
position: relative
|
|
316
356
|
text-decoration: none
|
|
@@ -321,14 +361,14 @@ $svg-text-offset: 60px
|
|
|
321
361
|
content: ''
|
|
322
362
|
display: block
|
|
323
363
|
height: 6rem
|
|
324
|
-
left:
|
|
364
|
+
left: -1rem
|
|
325
365
|
position: absolute
|
|
326
|
-
top:
|
|
366
|
+
top: .5rem
|
|
327
367
|
transition: .2s ease
|
|
328
368
|
width: 6rem
|
|
329
369
|
|
|
330
370
|
span
|
|
331
|
-
font-weight:
|
|
371
|
+
font-weight: $heavy-font
|
|
332
372
|
position: relative
|
|
333
373
|
|
|
334
374
|
svg
|