slow-steps 0.3.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_config.yml +3 -3
- data/_includes/contact-form.html +1 -1
- data/_includes/cookie-consent.html +21 -0
- data/_includes/footer/footer.html +64 -7
- data/_includes/footer/footer_redesign.html +139 -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 +6 -4
- data/_includes/head/stylesheets.html +3 -0
- data/_includes/image-post.html +1 -1
- data/_includes/navigation/global.html +57 -44
- data/_includes/scripts.html +3 -1
- data/_layouts/default.html +1 -1
- data/_layouts/env/clinician.html +6 -6
- data/_layouts/env/landing.html +8 -8
- 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/_variables.sass +2 -0
- data/_sass/_functions.sass +9 -0
- data/_sass/_mixins.sass +6 -3
- data/_sass/about.sass +3 -1
- data/_sass/breakpoints/about.sass +11 -2
- data/_sass/collage.sass +2 -1
- data/_sass/contact.sass +2 -2
- data/_sass/env/breakpoints/768.sass +16 -11
- data/_sass/env/clinician.sass +12 -7
- data/_sass/env/landing.sass +18 -3
- data/_sass/env/pwp.sass +11 -2
- data/_sass/faq.sass +9 -1
- data/_sass/feed.sass +2 -2
- data/_sass/footer.sass +174 -14
- data/_sass/footer_redesign.sass +353 -0
- data/_sass/forms/mc-forms.sass +9 -0
- data/_sass/global.sass +79 -8
- data/_sass/navigation/_variables.sass +3 -3
- data/_sass/navigation/base.sass +14 -4
- data/_sass/navigation/breakpoints/1024.sass +33 -8
- data/_sass/navigation/burger.sass +1 -1
- data/_sass/typography/_variables.sass +1 -1
- data/_sass/typography/resets.sass +2 -2
- data/assets/css/env/gaitq_clinician.sass +1 -1
- data/assets/css/env/gaitq_landing.sass +1 -1
- data/assets/css/env/gaitq_pwp.sass +1 -1
- data/assets/css/gaitq_errors.sass +13 -1
- data/assets/js/mobile-nav-slider.js +1 -1
- data/assets/js/svg_text_width.js +4 -4
- metadata +7 -6
- data/_includes/footer/footer_full.html +0 -79
- data/_includes/functions/pull_page_args.html +0 -31
- data/_sass/footer_full.sass +0 -183
data/_sass/footer_full.sass
DELETED
@@ -1,183 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
.ft__wrapper
|
4
|
-
@include footer-bg($opd-blue)
|
5
|
-
border-top: solid 1px $white
|
6
|
-
color: $white
|
7
|
-
display: flex
|
8
|
-
flex-wrap: wrap
|
9
|
-
padding: 5vh 5vw
|
10
|
-
|
11
|
-
.social-media-link
|
12
|
-
font-size: $font-size
|
13
|
-
padding-right: $sm-font-size
|
14
|
-
//color: $white
|
15
|
-
|
16
|
-
|
17
|
-
.ft__head
|
18
|
-
display: flex
|
19
|
-
margin: 5vh 5vw
|
20
|
-
width: 100%
|
21
|
-
|
22
|
-
.ft__body
|
23
|
-
display: flex
|
24
|
-
flex-direction: column-reverse
|
25
|
-
flex-wrap: wrap
|
26
|
-
margin: 5vh 0
|
27
|
-
width: 90vw
|
28
|
-
|
29
|
-
.ft__col
|
30
|
-
//border-left: solid 1px rgba($opd-light-blue, .05)
|
31
|
-
box-sizing: border-box
|
32
|
-
padding: 0 5vw
|
33
|
-
width: 90vw
|
34
|
-
|
35
|
-
.ft__contact--list
|
36
|
-
display: block
|
37
|
-
font-size: $font-size * .8
|
38
|
-
list-style: none
|
39
|
-
padding: 0
|
40
|
-
text-decoration: none
|
41
|
-
li
|
42
|
-
line-height: 5rem
|
43
|
-
.address
|
44
|
-
line-height: 2.5rem
|
45
|
-
|
46
|
-
.ft__contact
|
47
|
-
.site__logo
|
48
|
-
@include logo-color($white)
|
49
|
-
width: 40vw
|
50
|
-
|
51
|
-
.ft__sitemap
|
52
|
-
.ft__sitemap--env-header
|
53
|
-
font-size: $font-size * 1
|
54
|
-
font-weight: 600
|
55
|
-
.ft__sitemap--submenu
|
56
|
-
font-size: $font-size * .8
|
57
|
-
|
58
|
-
.ft__base
|
59
|
-
align-items: center
|
60
|
-
border-top: solid 1px $opd-light-blue
|
61
|
-
display: flex
|
62
|
-
flex-wrap: wrap
|
63
|
-
|
64
|
-
justify-content: space-around
|
65
|
-
min-width: 100%
|
66
|
-
width: 100%
|
67
|
-
a,
|
68
|
-
p
|
69
|
-
color: inherit
|
70
|
-
font-size: $font-size * .7
|
71
|
-
margin: 0
|
72
|
-
padding: .5rem .1rem
|
73
|
-
text-decoration: none
|
74
|
-
|
75
|
-
.legal-links
|
76
|
-
display: flex
|
77
|
-
flex-direction: column
|
78
|
-
justify-content: space-between
|
79
|
-
|
80
|
-
.ft__sitemap--header
|
81
|
-
border-bottom: 1px solid $opd-light-blue
|
82
|
-
color: $pure-white
|
83
|
-
font-size: 2rem
|
84
|
-
font-weight: 600
|
85
|
-
margin-bottom: 3rem
|
86
|
-
width: 100%
|
87
|
-
|
88
|
-
.ft__sitemap--menu,
|
89
|
-
.ft__sitemap--submenu
|
90
|
-
padding: 0
|
91
|
-
width: 100%
|
92
|
-
|
93
|
-
.ft__sitemap--submenu
|
94
|
-
padding-bottom: 2rem
|
95
|
-
li
|
96
|
-
display: block
|
97
|
-
line-height: 3rem
|
98
|
-
list-style: none
|
99
|
-
|
100
|
-
.ft--link
|
101
|
-
color: $pure-white
|
102
|
-
|
103
|
-
.ft__sitemap--env-wrap
|
104
|
-
display: flex
|
105
|
-
flex-direction: column
|
106
|
-
flex-wrap: wrap
|
107
|
-
|
108
|
-
.ft__sitemap--env
|
109
|
-
width: 100%
|
110
|
-
|
111
|
-
@media screen and ( min-width: 768px )
|
112
|
-
|
113
|
-
.ft__wrapper
|
114
|
-
border: none
|
115
|
-
|
116
|
-
.ft__body
|
117
|
-
flex-direction: row
|
118
|
-
|
119
|
-
.ft__col
|
120
|
-
width: 30vw
|
121
|
-
|
122
|
-
.ft__col.ft__sitemap
|
123
|
-
width: 60vw
|
124
|
-
|
125
|
-
.ft__contact--list
|
126
|
-
font-size: $font-size * .8
|
127
|
-
li
|
128
|
-
line-height: 4rem
|
129
|
-
.address
|
130
|
-
line-height: 2rem
|
131
|
-
|
132
|
-
.ft__contact
|
133
|
-
.site__logo
|
134
|
-
width: 10vw
|
135
|
-
|
136
|
-
.ft__sitemap
|
137
|
-
.ft__sitemap--env-header
|
138
|
-
font-size: $font-size * .9
|
139
|
-
.ft__sitemap--submenu
|
140
|
-
font-size: $font-size * .8
|
141
|
-
|
142
|
-
.ft__base
|
143
|
-
justify-content: space-between
|
144
|
-
a,
|
145
|
-
p
|
146
|
-
font-size: $font-size * .7
|
147
|
-
|
148
|
-
.legal-links
|
149
|
-
flex-direction: row
|
150
|
-
a
|
151
|
-
&::after
|
152
|
-
content: " |"
|
153
|
-
|
154
|
-
&:last-child
|
155
|
-
&::after
|
156
|
-
content: ""
|
157
|
-
|
158
|
-
.copyright
|
159
|
-
&::after
|
160
|
-
content: ' Ltd.'
|
161
|
-
|
162
|
-
.ft__sitemap--header
|
163
|
-
font-size: 1.8rem
|
164
|
-
|
165
|
-
.ft__sitemap--submenu li a
|
166
|
-
text-decoration: none
|
167
|
-
|
168
|
-
.ft__sitemap--submenu
|
169
|
-
li
|
170
|
-
transition: .2s ease-in-out
|
171
|
-
|
172
|
-
&:hover > li
|
173
|
-
opacity: .5
|
174
|
-
|
175
|
-
li
|
176
|
-
&:hover
|
177
|
-
opacity: 1
|
178
|
-
|
179
|
-
.ft__sitemap--env-wrap
|
180
|
-
flex-direction: row
|
181
|
-
|
182
|
-
.ft__sitemap--env
|
183
|
-
width: 50%
|