slow-steps 0.3.2 → 0.3.3
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/footer/footer.html +64 -7
- data/_includes/footer/footer_redesign.html +107 -0
- data/_includes/forms/mc-register.html +126 -108
- 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/head/head.html +3 -3
- data/_includes/image-post.html +1 -1
- data/_layouts/default.html +1 -1
- data/_layouts/env/clinician.html +2 -2
- data/_layouts/env/landing.html +2 -2
- data/_layouts/faq.html +3 -0
- data/_layouts/feed.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/_functions.sass +9 -0
- data/_sass/_mixins.sass +3 -2
- data/_sass/about.sass +3 -1
- data/_sass/breakpoints/about.sass +11 -2
- data/_sass/collage.sass +1 -1
- data/_sass/contact.sass +2 -2
- data/_sass/env/clinician.sass +3 -2
- data/_sass/env/landing.sass +18 -3
- data/_sass/env/pwp.sass +4 -2
- data/_sass/faq.sass +9 -1
- data/_sass/feed.sass +2 -2
- data/_sass/footer.sass +174 -14
- data/_sass/footer_redesign.sass +351 -0
- data/_sass/global.sass +29 -2
- data/_sass/navigation/_variables.sass +3 -3
- data/_sass/navigation/base.sass +14 -4
- data/_sass/navigation/breakpoints/1024.sass +13 -6
- data/_sass/navigation/burger.sass +1 -1
- data/_sass/typography/_variables.sass +2 -2
- 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 +1 -1
- data/assets/js/mobile-nav-slider.js +1 -1
- metadata +4 -4
- data/_includes/footer/footer_full.html +0 -79
- data/_sass/footer_full.sass +0 -183
@@ -50,10 +50,19 @@
|
|
50
50
|
height: 5vh
|
51
51
|
padding: 0
|
52
52
|
background-color: inherit
|
53
|
+
box-shadow: none
|
54
|
+
margin-block-start: 0
|
55
|
+
padding: 0
|
56
|
+
overflow: visible
|
53
57
|
|
54
58
|
.nav-group
|
55
59
|
padding: 0 2rem
|
56
60
|
|
61
|
+
.nav-group-content
|
62
|
+
//text-indent: 2rem
|
63
|
+
.nav-link
|
64
|
+
margin: 0
|
65
|
+
|
57
66
|
.nav-link
|
58
67
|
align-items: center
|
59
68
|
padding: 0
|
@@ -76,15 +85,13 @@
|
|
76
85
|
height: 2px
|
77
86
|
position: relative
|
78
87
|
vertical-align: middle
|
79
|
-
width:
|
88
|
+
width: 6px
|
80
89
|
|
81
90
|
&:before
|
82
|
-
right:
|
83
|
-
margin-left: -10%
|
91
|
+
right: 3px
|
84
92
|
|
85
93
|
&:after
|
86
|
-
left:
|
87
|
-
margin-right: -10%
|
94
|
+
left: 3px
|
88
95
|
|
89
96
|
.nav-group-content
|
90
97
|
@include default-trans
|
@@ -139,7 +146,7 @@
|
|
139
146
|
|
140
147
|
.nav-group-container
|
141
148
|
.nav-link
|
142
|
-
font-weight:
|
149
|
+
font-weight: $heavy-font
|
143
150
|
text-transform: uppercase
|
144
151
|
padding: 1rem 3rem
|
145
152
|
&:not(.current--url)
|
@@ -6,7 +6,7 @@ const navSlide = ()=>{
|
|
6
6
|
const navBar = document.querySelector('.navbar');
|
7
7
|
|
8
8
|
// watch for touch clicks on the burger
|
9
|
-
burger.addEventListener('
|
9
|
+
burger.addEventListener('click', () => {
|
10
10
|
// animate accordinaly
|
11
11
|
navSlider.classList.toggle('nav-active');
|
12
12
|
brand.classList.toggle('site__logo-active');
|
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.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Made Slowly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -189,7 +189,7 @@ files:
|
|
189
189
|
- _includes/errors/robot-404.svg
|
190
190
|
- _includes/errors/robot-405.svg
|
191
191
|
- _includes/footer/footer.html
|
192
|
-
- _includes/footer/
|
192
|
+
- _includes/footer/footer_redesign.html
|
193
193
|
- _includes/forms/mc-register.html
|
194
194
|
- _includes/functions/calc-svg-coord.html
|
195
195
|
- _includes/functions/pull_page_args.html
|
@@ -243,7 +243,7 @@ files:
|
|
243
243
|
- _sass/faq.sass
|
244
244
|
- _sass/feed.sass
|
245
245
|
- _sass/footer.sass
|
246
|
-
- _sass/
|
246
|
+
- _sass/footer_redesign.sass
|
247
247
|
- _sass/forms/mc-forms.sass
|
248
248
|
- _sass/global.sass
|
249
249
|
- _sass/navigation/README.md
|
@@ -1,79 +0,0 @@
|
|
1
|
-
<!-- footer -->
|
2
|
-
<footer class="ft__wrapper">
|
3
|
-
|
4
|
-
<div class="ft__head">
|
5
|
-
|
6
|
-
</div>
|
7
|
-
<div class="ft__body">
|
8
|
-
|
9
|
-
<div class="ft__contact ft__col">
|
10
|
-
|
11
|
-
<a href="{{ site.baseurl }}/">
|
12
|
-
{% include /branding/site-logo.svg %}
|
13
|
-
</a>
|
14
|
-
<div class="ft__contact__add">
|
15
|
-
<ul class="ft__contact--list">
|
16
|
-
{% for item in site.postal_add %}
|
17
|
-
<li class="address">{{ item[1] }}</li>
|
18
|
-
{% endfor %}
|
19
|
-
<li><a class="ft--link" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
20
|
-
<li>{{ site.phone }}</li>
|
21
|
-
|
22
|
-
<ul class="social-media">
|
23
|
-
|
24
|
-
{% for social in site.socials %}
|
25
|
-
<li class="social-media-item">
|
26
|
-
<a href="{{ social.url }}">
|
27
|
-
<i class="fab fa-{{ social.icon }} social--{{ social.name }} social-media-link"></i></a>
|
28
|
-
</li>
|
29
|
-
{% endfor %}
|
30
|
-
|
31
|
-
</ul>
|
32
|
-
|
33
|
-
</ul>
|
34
|
-
|
35
|
-
</div>
|
36
|
-
</div>
|
37
|
-
|
38
|
-
<div class="ft__sitemap ft__col">
|
39
|
-
<div class="ft__sitemap--menu">
|
40
|
-
<h3 class="ft__sitemap--header">INFORMATION FOR</h3>
|
41
|
-
|
42
|
-
<div class="ft__sitemap--env-wrap">
|
43
|
-
{% for item in site.data.menu.navigation %}
|
44
|
-
|
45
|
-
<div class="ft__sitemap--env">
|
46
|
-
|
47
|
-
<h4 class="ft__sitemap--env-header">{{ item.name }}</h4>
|
48
|
-
<ul class="ft__sitemap--submenu">
|
49
|
-
{% for sub in item.submenu %}
|
50
|
-
<li><a class="ft--link" href="{{ sub.url | relative_url }}">{{ sub.alt }}</a></li>
|
51
|
-
{% endfor %}
|
52
|
-
</ul>
|
53
|
-
</div>
|
54
|
-
|
55
|
-
{% endfor %}
|
56
|
-
|
57
|
-
</div>
|
58
|
-
</div>
|
59
|
-
</div>
|
60
|
-
|
61
|
-
</div>
|
62
|
-
<!-- footer base and copyright -->
|
63
|
-
|
64
|
-
<div class="ft__base">
|
65
|
-
|
66
|
-
<p class="copyright">© <script>
|
67
|
-
document.write(new Date().getFullYear())
|
68
|
-
</script> {{ site.title }}</p>
|
69
|
-
|
70
|
-
|
71
|
-
<div class="legal-links">
|
72
|
-
{% for item in site.data.menu.legals %}
|
73
|
-
<a href="{{ item.url }}">{{ item.name }}</a>
|
74
|
-
{% endfor %}
|
75
|
-
</div>
|
76
|
-
<a href="{{ site.author.url }}" class="slogan">Jekyll theme Slow Steps</a>
|
77
|
-
</div>
|
78
|
-
|
79
|
-
</footer>
|
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%
|