slow-steps 0.2.1 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_config.yml +1 -1
- data/_includes/functions/pull_page_args.html +3 -3
- data/_includes/head/head.html +9 -30
- data/_includes/head/stylesheets.html +20 -0
- data/_includes/navigation/global.html +47 -53
- data/_includes/scripts.html +9 -8
- data/_includes/vimeoPlayer.html +1 -2
- data/_layouts/about.html +6 -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 +8 -17
- data/_sass/_colors/collection.sass +3 -0
- data/_sass/_mixins.sass +14 -5
- data/_sass/about.sass +7 -6
- data/_sass/breakpoints/about.sass +4 -4
- data/_sass/contact.sass +8 -39
- data/_sass/env/landing.sass +7 -7
- data/_sass/faq.sass +2 -2
- data/_sass/feed.sass +2 -1
- data/_sass/footer.sass +1 -1
- data/_sass/footer_full.sass +18 -8
- data/_sass/forms/mc-forms.sass +3 -3
- data/_sass/global.sass +26 -20
- data/_sass/navigation/README.md +35 -0
- data/_sass/navigation/_variables.sass +5 -6
- data/_sass/navigation/{global.sass → base.sass} +20 -20
- data/_sass/navigation/breakpoints/1024.sass +32 -15
- 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 +4 -0
- 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 +9 -3
- data/assets/css/gaitq_post.sass +5 -5
- metadata +16 -27
- 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/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
@@ -1,13 +1,8 @@
|
|
1
1
|
|
2
|
-
|
3
|
-
// Global navigation Sass
|
4
|
-
|
5
|
-
// Avoid declaring any styling like color etc.
|
6
|
-
// These are defined in _sass/colors/env/_env.sass and called by various functions in _sass/colors/...
|
7
|
-
|
8
|
-
// Everything here will be included in EVERY .html
|
2
|
+
// Navigation styling for base
|
9
3
|
|
10
4
|
.navbar
|
5
|
+
@include default-trans
|
11
6
|
align-items: center
|
12
7
|
display: flex
|
13
8
|
height: $mobile-navbar-height
|
@@ -16,27 +11,26 @@
|
|
16
11
|
top: 0
|
17
12
|
white-space: nowrap
|
18
13
|
width: 100%
|
19
|
-
z-index:
|
14
|
+
z-index: 9998
|
20
15
|
|
21
16
|
.social-media
|
22
|
-
|
17
|
+
margin-left: 3vw
|
18
|
+
z-index: inherit
|
19
|
+
|
23
20
|
.social-media-link
|
24
|
-
|
25
|
-
|
26
|
-
transform: translateY(0)
|
27
|
-
&:hover
|
28
|
-
text-shadow: 3px 3px 6px rgba($black, .2)
|
29
|
-
//font-size: $font-size * 1
|
30
|
-
transform: translateY(-2px)
|
21
|
+
font-size: $sm-font-size
|
22
|
+
padding-right: $sm-font-size
|
31
23
|
|
24
|
+
.nav-scrolled
|
25
|
+
@include navbar-color
|
32
26
|
|
33
27
|
.nav-brand
|
34
28
|
width: 30vw
|
35
29
|
padding-left: 3vw
|
36
|
-
z-index:
|
30
|
+
z-index: 1
|
37
31
|
|
38
32
|
.site__logo *
|
39
|
-
|
33
|
+
@include default-trans
|
40
34
|
|
41
35
|
.nav-list
|
42
36
|
border-bottom-left-radius: 80px
|
@@ -55,6 +49,7 @@
|
|
55
49
|
transition: $nav-slider-transition
|
56
50
|
width: 100vw
|
57
51
|
box-sizing: content-box
|
52
|
+
background-color: $env-primary
|
58
53
|
|
59
54
|
.nav-link
|
60
55
|
margin: 6vh 15vw
|
@@ -62,14 +57,19 @@
|
|
62
57
|
text-decoration: none
|
63
58
|
display: flex
|
64
59
|
|
65
|
-
.nav-group-
|
60
|
+
.nav-group-link
|
61
|
+
color: $nav-link-color
|
62
|
+
|
63
|
+
.nav-link
|
66
64
|
font-size: 1.7rem
|
67
65
|
z-index: 100
|
66
|
+
color: $nav-link-color
|
68
67
|
|
69
68
|
.nav-active
|
70
69
|
// we toggle this class in mobile-nav-slider.js on burger click
|
71
70
|
transform: translateX(0%)
|
72
71
|
|
72
|
+
|
73
73
|
.site__logo-active
|
74
74
|
.site__logo--group
|
75
75
|
.site__logo--curve,
|
@@ -80,4 +80,4 @@
|
|
80
80
|
.site__logo__i *,
|
81
81
|
.site__logo--t,
|
82
82
|
.site__logo--Q
|
83
|
-
|
83
|
+
fill: $env-secondary
|
@@ -1,18 +1,16 @@
|
|
1
|
-
// Navigation styling for breakpoint
|
2
|
-
|
3
|
-
// Avoid declaring any styling like color etc.
|
4
|
-
// These will be decalred in _sass/naviagtion/env/
|
5
|
-
|
6
|
-
// Everything here will be included in EVERY .html
|
7
|
-
|
8
|
-
$brand-height: 55%
|
1
|
+
// Navigation styling for breakpoint 1024
|
9
2
|
|
10
3
|
@media screen and ( min-width: 1024px )
|
11
4
|
|
5
|
+
.pwp-group-link, .clinician-group-link
|
6
|
+
display: flex
|
7
|
+
|
12
8
|
.navbar
|
13
9
|
@include default-trans
|
14
|
-
height: $navbar-height
|
15
10
|
align-items: center
|
11
|
+
background-color: $env-primary
|
12
|
+
height: $navbar-height
|
13
|
+
|
16
14
|
|
17
15
|
.nav-scrolled
|
18
16
|
@include default-trans
|
@@ -23,7 +21,11 @@ $brand-height: 55%
|
|
23
21
|
.nav-brand
|
24
22
|
@include default-trans
|
25
23
|
height: 8vh
|
26
|
-
|
24
|
+
max-height: 100px
|
25
|
+
|
26
|
+
.nav-scrolled
|
27
|
+
background-color: $env-primary
|
28
|
+
// overwrite mobile
|
27
29
|
|
28
30
|
.nav-brand
|
29
31
|
@include default-trans
|
@@ -31,12 +33,10 @@ $brand-height: 55%
|
|
31
33
|
position: absolute
|
32
34
|
max-width: 160px
|
33
35
|
height: 10vh
|
34
|
-
z-index: 999
|
35
36
|
top: 7.5vh
|
36
37
|
|
37
38
|
.site__logo
|
38
39
|
position: absolute
|
39
|
-
top: (100% - $brand-height) / 2
|
40
40
|
height: $brand-height
|
41
41
|
|
42
42
|
.nav-list
|
@@ -63,8 +63,12 @@ $brand-height: 55%
|
|
63
63
|
overflow: hidden
|
64
64
|
position: relative
|
65
65
|
|
66
|
-
|
66
|
+
.sub-link,
|
67
|
+
.subsub-link
|
68
|
+
color: $env-primary
|
67
69
|
|
70
|
+
|
71
|
+
// Surround current link with ticks
|
68
72
|
.current--url
|
69
73
|
&:before, &:after
|
70
74
|
content: ""
|
@@ -84,6 +88,7 @@ $brand-height: 55%
|
|
84
88
|
|
85
89
|
.nav-group-content
|
86
90
|
@include default-trans
|
91
|
+
@include navbar-color
|
87
92
|
align-items: center
|
88
93
|
justify-content: flex-end
|
89
94
|
position: absolute
|
@@ -93,7 +98,10 @@ $brand-height: 55%
|
|
93
98
|
padding: 0
|
94
99
|
height: $secondary-navbar-height
|
95
100
|
//max-height: 100px
|
96
|
-
|
101
|
+
|
102
|
+
.current--url
|
103
|
+
&:before, &:after
|
104
|
+
background-color: $env-primary
|
97
105
|
|
98
106
|
.nav-group-content .nav-link
|
99
107
|
margin: 0
|
@@ -103,7 +111,7 @@ $brand-height: 55%
|
|
103
111
|
|
104
112
|
.nav-subsub-content
|
105
113
|
background-color: $pure-white
|
106
|
-
box-shadow: 1px 1px 1px rgba(
|
114
|
+
box-shadow: 1px 1px 1px rgba($pure-black, .1)
|
107
115
|
visibility: hidden
|
108
116
|
opacity: 0
|
109
117
|
border-radius: 6px
|
@@ -129,6 +137,15 @@ $brand-height: 55%
|
|
129
137
|
transform: rotate(-45deg) translateY(14px)
|
130
138
|
z-index: -1
|
131
139
|
|
140
|
+
.nav-group-container
|
141
|
+
.nav-link
|
142
|
+
font-weight: 400
|
143
|
+
text-transform: uppercase
|
144
|
+
padding: 1rem 3rem
|
145
|
+
&:not(.current--url)
|
146
|
+
&:hover
|
147
|
+
text-decoration: underline
|
148
|
+
|
132
149
|
.nav-group-container:hover > .nav-subsub-content
|
133
150
|
visibility: visible
|
134
151
|
opacity: 1
|
@@ -4,20 +4,26 @@
|
|
4
4
|
cursor: pointer
|
5
5
|
display: block
|
6
6
|
padding-right: 3vw
|
7
|
-
z-index:
|
7
|
+
z-index: 1
|
8
8
|
& > div
|
9
|
+
background-color: $burger-color
|
9
10
|
height: 2px
|
10
11
|
margin: 7px
|
11
12
|
width: 25px
|
12
13
|
|
14
|
+
|
13
15
|
.burger-line-1
|
14
|
-
transition: width .6s ease-in-out
|
16
|
+
transition: width .6s ease-in-out, background-color .3s ease-in-out
|
15
17
|
|
16
18
|
.burger-line-2
|
17
|
-
transition: width .3s ease-in-out
|
19
|
+
transition: width .3s ease-in-out, background-color .3s ease-in-out
|
18
20
|
|
21
|
+
.burger-line-3
|
22
|
+
transition: background-color .3s ease-in-out
|
19
23
|
|
20
24
|
.burger-active
|
25
|
+
& > div
|
26
|
+
background-color: $env-secondary
|
21
27
|
.burger-line-1
|
22
28
|
width: 8px
|
23
29
|
// reduce by 17 px
|
@@ -0,0 +1,31 @@
|
|
1
|
+
// Theme specific for clinician env
|
2
|
+
|
3
|
+
// Navbar site logo
|
4
|
+
.nav-brand
|
5
|
+
@include logo-color($env-primary)
|
6
|
+
|
7
|
+
// Color the navbar once we start scrolling
|
8
|
+
.navbar.nav-scrolled
|
9
|
+
|
10
|
+
.social-media-link
|
11
|
+
color: $env-primary
|
12
|
+
|
13
|
+
.burger > div
|
14
|
+
background-color: $env-primary
|
15
|
+
|
16
|
+
// on mobile and within an env we hide the other submenus
|
17
|
+
.pwp-group
|
18
|
+
display: none
|
19
|
+
|
20
|
+
@media screen and ( min-width: 1024px )
|
21
|
+
|
22
|
+
.clinician-group
|
23
|
+
display: flex
|
24
|
+
align-items: center
|
25
|
+
width: 100vw
|
26
|
+
height: 15vh
|
27
|
+
left: 0
|
28
|
+
flex-direction: row
|
29
|
+
|
30
|
+
|
31
|
+
@import 'collection'
|
@@ -0,0 +1,32 @@
|
|
1
|
+
// Here we only deal with navigation for landing
|
2
|
+
|
3
|
+
// We dont include the naviagtion menu(s) on the landing page. See _includes/naviagtion/global.html
|
4
|
+
|
5
|
+
|
6
|
+
@import '_variables'
|
7
|
+
|
8
|
+
@import 'colors'
|
9
|
+
|
10
|
+
.navbar
|
11
|
+
position: absolute
|
12
|
+
/* fix the brand on the landing page */
|
13
|
+
|
14
|
+
// Navbar site logo
|
15
|
+
// make sure we don't style any other instance so nest with .nav-brand
|
16
|
+
.nav-brand
|
17
|
+
@include logo-color($white)
|
18
|
+
padding-left: 2rem
|
19
|
+
transform: translateY(5vh)
|
20
|
+
height: 10vh
|
21
|
+
|
22
|
+
.site__logo
|
23
|
+
height: $brand-height
|
24
|
+
position: absolute
|
25
|
+
|
26
|
+
|
27
|
+
@media screen and ( min-width: 1024px )
|
28
|
+
.nav-brand
|
29
|
+
padding-left: 3vw
|
30
|
+
|
31
|
+
.site__logo
|
32
|
+
height: $brand-height + 10%
|
@@ -1,17 +1,23 @@
|
|
1
|
+
// Theme specific for clinician env
|
1
2
|
|
2
3
|
// Navbar site logo
|
3
4
|
// make sure we don't style any other instance so nest with .nav-brand
|
4
5
|
.nav-brand
|
5
6
|
@include logo-primary-colors
|
6
7
|
|
8
|
+
.navbar.nav-scrolled
|
9
|
+
|
10
|
+
.social-media-link
|
11
|
+
color: $env-primary
|
12
|
+
|
13
|
+
.burger > div
|
14
|
+
background-color: $env-primary
|
15
|
+
|
7
16
|
// on mobile and within the clinician env we hide the other submenus and show the gaitq env .nav-group-link
|
8
|
-
.clinician-group
|
17
|
+
.clinician-group
|
9
18
|
display: none
|
10
19
|
|
11
|
-
|
12
|
-
@media screen and ( min-width: 768px )
|
13
|
-
.clinician-group-link, .pwp-group-link
|
14
|
-
display: flex
|
20
|
+
@media screen and ( min-width: 1024px )
|
15
21
|
|
16
22
|
.pwp-group
|
17
23
|
display: flex
|
@@ -21,14 +27,4 @@
|
|
21
27
|
left: 0
|
22
28
|
flex-direction: row
|
23
29
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
.nav-link
|
28
|
-
font-weight: 400
|
29
|
-
color: $env-primary
|
30
|
-
text-transform: uppercase
|
31
|
-
padding: 1rem 3rem
|
32
|
-
&:not(.current--url)
|
33
|
-
&:hover
|
34
|
-
text-decoration: underline
|
30
|
+
@import 'collection'
|
data/_sass/post.sass
CHANGED
@@ -7,25 +7,33 @@ $baseurl: '{{ site.baseurl }}/'
|
|
7
7
|
|
8
8
|
@import '_mixins'
|
9
9
|
|
10
|
-
@import 'colors/_variables'
|
11
10
|
|
12
|
-
@import 'navigation/_variables'
|
13
|
-
|
14
|
-
@import 'colors/env/_clinician'
|
15
11
|
|
16
12
|
@import 'typography/_variables'
|
17
13
|
|
18
|
-
@import '
|
14
|
+
@import 'typography/resets'
|
15
|
+
|
16
|
+
@import 'typography/branding'
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
@import '_colors/_clinician'
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
@import 'navigation/clinician'
|
28
|
+
|
29
|
+
|
19
30
|
|
20
|
-
@import 'navigation/env/clinician'
|
21
31
|
|
22
|
-
@import 'colors/burger'
|
23
32
|
|
24
33
|
@import 'env/clinician'
|
25
34
|
|
26
35
|
@import 'env/breakpoints/768'
|
27
36
|
|
28
|
-
@import 'colors/breakpoints/1024'
|
29
37
|
|
30
38
|
@import 'about'
|
31
39
|
|
@@ -38,3 +46,11 @@ $baseurl: '{{ site.baseurl }}/'
|
|
38
46
|
@import 'faq'
|
39
47
|
|
40
48
|
@import 'collage'
|
49
|
+
|
50
|
+
@import 'footer_full'
|
51
|
+
|
52
|
+
@import 'aos-overrides'
|
53
|
+
|
54
|
+
@import 'global'
|
55
|
+
|
56
|
+
@import 'feed'
|
@@ -6,12 +6,30 @@ $baseurl: '{{ site.baseurl }}/'
|
|
6
6
|
|
7
7
|
@import '_mixins'
|
8
8
|
|
9
|
-
@import 'colors/_variables'
|
10
9
|
|
11
|
-
@import 'navigation/_variables'
|
12
10
|
|
13
|
-
@import '
|
11
|
+
@import 'typography/_variables'
|
12
|
+
|
13
|
+
@import 'typography/resets'
|
14
|
+
|
15
|
+
@import 'typography/branding'
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
@import '_colors/collection'
|
20
|
+
|
21
|
+
|
22
|
+
@import 'navigation/no-nav'
|
23
|
+
|
14
24
|
|
15
25
|
@import 'typography/_variables'
|
16
26
|
|
27
|
+
|
28
|
+
|
29
|
+
@import 'footer_full'
|
30
|
+
|
31
|
+
@import 'aos-overrides'
|
32
|
+
|
33
|
+
@import 'global'
|
34
|
+
|
17
35
|
@import 'env/landing'
|