slow-steps 0.1.3 → 0.1.8
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 +3 -3
- 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 +1 -3
- data/_layouts/env/clinician.html +4 -4
- data/_layouts/env/landing.html +2 -2
- data/_layouts/env/pwp.html +4 -5
- data/_layouts/full-width.html +11 -0
- data/_sass/_functions.sass +2 -0
- data/_sass/_mixins.sass +29 -8
- data/_sass/about.sass +13 -29
- data/_sass/colors/_variables.sass +7 -4
- data/_sass/colors/breakpoints/{768.sass → 1024.sass} +1 -1
- data/_sass/colors/env/_clinician.sass +1 -1
- data/_sass/colors/global.sass +2 -0
- data/_sass/contact.sass +227 -0
- data/_sass/env/clinician.sass +9 -44
- data/_sass/env/landing.sass +1 -1
- data/_sass/env/pwp.sass +10 -5
- data/_sass/footer_full.sass +104 -57
- data/_sass/global.sass +143 -9
- data/_sass/navigation/breakpoints/{768.sass → 1024.sass} +6 -3
- data/_sass/navigation/env/clinician.sass +1 -10
- data/_sass/navigation/env/landing.sass +10 -1
- 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 +1 -1
- metadata +13 -4
@@ -1,16 +1,7 @@
|
|
1
1
|
// Navbar site logo
|
2
2
|
// make sure we don't style any other instance so nest with .nav-brand
|
3
3
|
.nav-brand
|
4
|
-
|
5
|
-
.site__logo--curve,
|
6
|
-
.site__logo--legvert,
|
7
|
-
.site__logo--leg45,
|
8
|
-
.site__logo--g,
|
9
|
-
.site__logo--a,
|
10
|
-
.site__logo__i,
|
11
|
-
.site__logo--t,
|
12
|
-
.site__logo--Q
|
13
|
-
fill: $env-primary
|
4
|
+
@include logo-color($env-primary)
|
14
5
|
|
15
6
|
|
16
7
|
// on mobile and within the clinician env we hide the other submenus and show the gaitq env .nav-group-link
|
@@ -7,4 +7,13 @@
|
|
7
7
|
// Navbar site logo
|
8
8
|
// make sure we don't style any other instance so nest with .nav-brand
|
9
9
|
.nav-brand
|
10
|
-
@include logo-
|
10
|
+
@include logo-color($white)
|
11
|
+
height: 14rem
|
12
|
+
transform: translateY(15vh)
|
13
|
+
|
14
|
+
@media screen and ( min-width: 1024px )
|
15
|
+
.nav-brand
|
16
|
+
transform: translateY(-7.5vh)
|
17
|
+
|
18
|
+
.social-media
|
19
|
+
display: none
|
@@ -18,6 +18,15 @@
|
|
18
18
|
width: 100%
|
19
19
|
z-index: 99
|
20
20
|
|
21
|
+
.social-media-link
|
22
|
+
color: $white
|
23
|
+
transform: translateX(20px)
|
24
|
+
font-size: $font-size * .8
|
25
|
+
&:hover
|
26
|
+
text-shadow: 3px 3px 6px rgba($black, .2)
|
27
|
+
font-size: $font-size * 1.2
|
28
|
+
|
29
|
+
|
21
30
|
.nav-brand
|
22
31
|
width: 30vw
|
23
32
|
padding-left: 3vw
|
@@ -23,12 +23,14 @@ $baseurl: '{{ site.baseurl }}/'
|
|
23
23
|
|
24
24
|
@import 'env/clinician'
|
25
25
|
|
26
|
+
@import 'env/breakpoints/768'
|
27
|
+
|
28
|
+
@import 'colors/breakpoints/1024'
|
29
|
+
|
26
30
|
@import 'about'
|
27
31
|
|
28
32
|
@import 'breakpoints/about'
|
29
33
|
|
30
|
-
@import '
|
31
|
-
|
32
|
-
@import 'colors/breakpoints/768'
|
34
|
+
@import 'forms/mc-forms'
|
33
35
|
|
34
|
-
@import
|
36
|
+
@import 'contact'
|
@@ -23,12 +23,14 @@ $baseurl: '{{ site.baseurl }}/'
|
|
23
23
|
|
24
24
|
@import 'env/pwp'
|
25
25
|
|
26
|
-
@import '
|
26
|
+
@import 'env/breakpoints/768'
|
27
27
|
|
28
|
-
@import 'breakpoints/
|
28
|
+
@import 'colors/breakpoints/1024'
|
29
29
|
|
30
|
-
@import '
|
30
|
+
@import 'about'
|
31
31
|
|
32
|
-
@import '
|
32
|
+
@import 'breakpoints/about'
|
33
33
|
|
34
34
|
@import 'forms/mc-forms'
|
35
|
+
|
36
|
+
@import 'contact'
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
---
|
3
|
+
|
4
|
+
$baseurl: '{{ site.baseurl }}/'
|
5
|
+
|
6
|
+
@import '_variables'
|
7
|
+
|
8
|
+
@import '_mixins'
|
9
|
+
|
10
|
+
@import 'colors/_variables'
|
11
|
+
|
12
|
+
@import 'navigation/_variables'
|
13
|
+
|
14
|
+
@import 'colors/env/_pwp'
|
15
|
+
|
16
|
+
@import 'typography/_variables'
|
17
|
+
|
18
|
+
@import 'env/pwp'
|
19
|
+
|
20
|
+
@import 'about'
|
21
|
+
|
22
|
+
@import 'breakpoints/about'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slow-steps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Made Slowly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -181,6 +181,8 @@ files:
|
|
181
181
|
- _config.yml
|
182
182
|
- _includes/.DS_Store
|
183
183
|
- _includes/branding/site-logo.svg
|
184
|
+
- _includes/contact-details.html
|
185
|
+
- _includes/contact-form.html
|
184
186
|
- _includes/env_filter.html
|
185
187
|
- _includes/errors/robot-403.svg
|
186
188
|
- _includes/errors/robot-404.svg
|
@@ -190,6 +192,7 @@ files:
|
|
190
192
|
- _includes/forms/mc-register.html
|
191
193
|
- _includes/functions/calc-svg-coord.html
|
192
194
|
- _includes/functions/pull_page_args.html
|
195
|
+
- _includes/gmap.html
|
193
196
|
- _includes/head/.DS_Store
|
194
197
|
- _includes/head/README.md
|
195
198
|
- _includes/head/descriptors/og-meta.html
|
@@ -204,25 +207,30 @@ files:
|
|
204
207
|
- _includes/vimeoPlayer.html
|
205
208
|
- _layouts/about.html
|
206
209
|
- _layouts/compress.html
|
210
|
+
- _layouts/contact.html
|
207
211
|
- _layouts/default.html
|
208
212
|
- _layouts/env/clinician.html
|
209
213
|
- _layouts/env/landing.html
|
210
214
|
- _layouts/env/pwp.html
|
211
215
|
- _layouts/error-page.html
|
212
216
|
- _layouts/feed.html
|
217
|
+
- _layouts/full-width.html
|
213
218
|
- _layouts/post.html
|
214
219
|
- _layouts/register.html
|
220
|
+
- _sass/_functions.sass
|
215
221
|
- _sass/_mixins.sass
|
216
222
|
- _sass/_variables.sass
|
217
223
|
- _sass/about.sass
|
218
224
|
- _sass/aos-overrides.sass
|
219
225
|
- _sass/breakpoints/about.sass
|
220
226
|
- _sass/colors/_variables.sass
|
221
|
-
- _sass/colors/breakpoints/
|
227
|
+
- _sass/colors/breakpoints/1024.sass
|
222
228
|
- _sass/colors/burger.sass
|
223
229
|
- _sass/colors/env/_clinician.sass
|
224
230
|
- _sass/colors/env/_pwp.sass
|
231
|
+
- _sass/colors/global.sass
|
225
232
|
- _sass/colors/navigation.sass
|
233
|
+
- _sass/contact.sass
|
226
234
|
- _sass/env/breakpoints/768.sass
|
227
235
|
- _sass/env/clinician.sass
|
228
236
|
- _sass/env/landing.sass
|
@@ -234,7 +242,7 @@ files:
|
|
234
242
|
- _sass/forms/mc-forms.sass
|
235
243
|
- _sass/global.sass
|
236
244
|
- _sass/navigation/_variables.sass
|
237
|
-
- _sass/navigation/breakpoints/
|
245
|
+
- _sass/navigation/breakpoints/1024.sass
|
238
246
|
- _sass/navigation/burger.sass
|
239
247
|
- _sass/navigation/env/clinician.sass
|
240
248
|
- _sass/navigation/env/landing.sass
|
@@ -247,6 +255,7 @@ files:
|
|
247
255
|
- assets/css/env/gaitq_clinician.sass
|
248
256
|
- assets/css/env/gaitq_landing.sass
|
249
257
|
- assets/css/env/gaitq_pwp.sass
|
258
|
+
- assets/css/gaitq_about.sass
|
250
259
|
- assets/css/gaitq_errors.sass
|
251
260
|
- assets/css/gaitq_feed.sass
|
252
261
|
- assets/css/gaitq_global.sass
|