slow-steps 0.1.4 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bddbe7e9f546b517ece2c9b205ba6ec42dcd5f2230ce469b6a94f0d7fcba8ef0
4
- data.tar.gz: e96335042acf12c5418a97bdbe7e75fab5147b5b61f68593cc8cea7ade90550c
3
+ metadata.gz: 15001df5eef14e7d413dc8f9dffe536ecb0bb5777d4eeff64644b618dd430500
4
+ data.tar.gz: e77052432ee0d06a9ee9ab75af599c7d42484c34f9bf9ddc2f5d35094f222d6d
5
5
  SHA512:
6
- metadata.gz: 77b937e5f6f7b96742b3ec16dece80c228b7818778fbab1738617580ff888b7aec5da645595fec0143b37dabaeab1c17ea55d6186473225219c638866b4775f2
7
- data.tar.gz: 3f90b61d92705d3f75bfd0800a4d7244e591583d135209ad68ded0f7f3ba092eb67e601d9df1260e5509f30257e1bdcafd6b1a43d2d2169a6d2d8ea77bf147a2
6
+ metadata.gz: fc2c29cde1a9543a90774cd2da6d31eeee04ab7c45f675c52b3db4bf7bc3e9d65d4eb18cfdfc43eabb19d138e5f4c7acffd2eb7b7291f4b5da80cc68652736f9
7
+ data.tar.gz: 348f5178833005714df55d823d9b4d25c440332382ca585d57dc947d9b24bc266d9ca46386c642963abb930db04e489f1c5449983557d806f0e898b8fa01ea0a
File without changes
@@ -0,0 +1,25 @@
1
+ <div class="contact-details">
2
+
3
+ <h4 class="form-instruction">Contact us directly</h4>
4
+
5
+ <p><i class="fas fa-envelope"></i>
6
+ <a href="mailto:{{ site.email }}">{{ site.email }}</a></p>
7
+
8
+ {% if site.phone %}
9
+ <p><i class="fas fa-phone-square"></i>
10
+ <a href="tel:{{ site.phone }}‬" ‬>{{ site.phone }}‬</a></p>
11
+ {% endif %}
12
+
13
+ <h4 class="form-instruction">Connect with us socially</h4>
14
+
15
+ <ul class="social-media">
16
+
17
+ {% for social in site.socials %}
18
+ <li class="social-media-item">
19
+ <a href="{{ social.url }}">
20
+ <i class="fab fa-{{ social.icon }} social--{{ social.name }} social-media-link"></i></a>
21
+ </li>
22
+ {% endfor %}
23
+
24
+ </ul>
25
+ </div>
@@ -0,0 +1,18 @@
1
+ <div class="contact-form">
2
+ <h4 class="form-instruction">Get in touch using the form below</h4>
3
+
4
+ <form action="https://formspree.io/f/{{ site.formspree }}" method="post" >
5
+
6
+ <label for="name">Enter your name</label>
7
+ <input type="text" class="form-element" name="name" id="name" placeholder="Your Name" required>
8
+
9
+ <label for="email">Enter your email</label>
10
+ <input type="text" class="form-element" name="email" id="email" placeholder="Your email" required>
11
+
12
+ <label for="message">Enter your message</label>
13
+ <textarea class="form-element" rows="5" name="message" id="message" placeholder="Your Message" required></textarea>
14
+
15
+ <button class="btn btn-pop btn-outline btn-contact" type="submit">SEND</button>
16
+
17
+ </form>
18
+ </div>
@@ -0,0 +1,5 @@
1
+ <div class="google-map">
2
+ <h4 class="form-instruction">Where to find us</h4>
3
+
4
+ <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2469.4696265600305!2d-1.2640352834469863!3d51.76102127967778!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4876c6a77fce02c7%3A0x1d053d3e05342acd!2s46%20Woodstock%20Rd%2C%20Oxford%20OX2%206HT!5e0!3m2!1sen!2suk!4v1610722975887!5m2!1sen!2suk" frameborder="1" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
5
+ </div>
@@ -0,0 +1,15 @@
1
+ <!-- This goes before </head> closing tag -->
2
+
3
+ <!-- Google site verification -->
4
+ <meta name="google-site-verification" content="{{ site.google.verification }}" />
5
+
6
+ <!-- Google Analytics -->
7
+
8
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google.analytics }}"></script>
9
+
10
+ <script>
11
+ window.dataLayer = window.dataLayer || [];
12
+ function gtag(){dataLayer.push(arguments);}
13
+ gtag('js', new Date());
14
+ gtag('config', '{{ site.google.analytics }}');
15
+ </script>
@@ -56,9 +56,8 @@
56
56
  <link rel="stylesheet" type="text/css" title="made slowly has all the style" href="{{ site.baseurl }}/assets/css/gaitq_feed.css" media="screen" />
57
57
  {% endif %}
58
58
 
59
- {% if page.id %} <!-- it's a post -->
60
59
  <link rel="stylesheet" type="text/css" title="made slowly has all the style" href="{{ site.baseurl }}/assets/css/gaitq_post.css" media="screen" />
61
- {% endif %}
60
+
62
61
 
63
62
  {% if page.env %}
64
63
  {% include /head/env/conditional.html %}
@@ -71,7 +70,9 @@
71
70
 
72
71
  <link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}{{ site.fallback_path }}{{ site.favicon }}">
73
72
 
74
-
73
+ {% if jekyll.environment == "production" %}
74
+ {% include google-analytics.html %}
75
+ {% endif %}
75
76
 
76
77
  </head>
77
78
 
@@ -9,6 +9,17 @@
9
9
  </a>
10
10
  </div>
11
11
 
12
+ <ul class="social-media">
13
+
14
+ {% for social in site.socials %}
15
+ <li class="social-media-item">
16
+ <a href="{{ social.url }}">
17
+ <i class="fab fa-{{ social.icon }} social--{{ social.name }} social-media-link"></i></a>
18
+ </li>
19
+ {% endfor %}
20
+
21
+ </ul>
22
+
12
23
  {% if page.layout == "env/landing" or page.layout == "error-page" %}
13
24
  </nav>
14
25
  {% else %}
@@ -1,6 +1,7 @@
1
1
 
2
2
  {% assign scripts = page.scripts | split: ', '%}
3
3
  {% if scripts contains 'svg-aos' %}
4
+
4
5
  <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.6.1/lodash.min.js" ></script>
5
6
 
6
7
  <script type="text/javascript" src="{{ "{{ site.baseurl }}/assets/js/svg_text_width.js" | relative_url }}" async></script>
@@ -18,6 +19,8 @@
18
19
 
19
20
  <script type="text/javascript" src="{{ "{{ site.baseurl }}/assets/js/calc-mobile-viewport.js" | relative_url }}" async></script>
20
21
 
22
+ <script type="text/javascript" src="{{ "{{ site.baseurl }}/assets/js/nav-scroll.js" | relative_url }}" async></script>
23
+
21
24
  <script type="text/javascript" src="{{ site.baseurl }}/assets/vendor/aos/aos.js" ></script>
22
25
 
23
26
  <script>
@@ -74,7 +74,7 @@ Last full read through 29/12/2020
74
74
  {% endfor %} ">
75
75
 
76
76
  <div class="single__member__image">
77
- <img class="member--image"src="{{ member.image | prepend: '/assets/images/content/people/' }}" alt="{{ member.name }} is the {{ member.position }}" />
77
+ <img class="member--image" src="{% if member.image %}{{ member.image | prepend: '/assets/images/content/people/' }}{% else %}{{ 'team-placeholder.jpg' | prepend: '/assets/images/defaults/' }}{% endif %}" alt="{{ member.name }} is the {{ member.position }}" />
78
78
  </div>
79
79
 
80
80
  <div class="single__member__text">
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% assign strap = page.title %}
6
+
7
+
8
+ <div class="hero hero-65">
9
+
10
+ <div class="hero__overlay h-100">
11
+ {% picture {{ page.hero.image | prepend: 'content/' }}
12
+ --img class="hero__image hero__image--fixed hero-65"
13
+ --alt {{ page.hero.alt }} %}</div>
14
+
15
+ <header class="hero__strap hero__strap--center image__filter--blur hero-65" aria-label="{{ strap }}">
16
+
17
+ <h1 aria-hidden="true" >
18
+ {% assign n = strap.size | minus: 1 %}
19
+ {%- for char in (0..n ) -%}
20
+
21
+ <span style="animation-delay: {{ char | times: 40 | plus: 200 }}ms;">{{ strap | slice: char }}</span>
22
+ {%- endfor -%}</h1>
23
+
24
+ </header>
25
+
26
+ </div>
27
+
28
+ <div class="contact__wrapper">
29
+
30
+ <div class="contact--left">
31
+ {% include contact-form.html %}
32
+ </div>
33
+
34
+ <div class="contact--right">
35
+ {% include gmap.html %}
36
+
37
+ {% include contact-details.html %}
38
+ </div>
39
+ </div>
@@ -8,12 +8,6 @@ layout: compress
8
8
 
9
9
  {{ content }}
10
10
 
11
- {% if page.layout == "error-page" %}
12
-
13
- {% else %}
14
-
15
- {% include footer/footer_full.html %}
16
-
17
- {% endif %}
11
+ {% include footer/footer_full.html %}
18
12
 
19
13
  {% include scripts.html %}
@@ -0,0 +1,63 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% assign strap = page.title %}
6
+
7
+
8
+ <div class="hero hero-65">
9
+
10
+ <div class="hero__overlay h-100">
11
+ {% picture {{ page.hero.image | prepend: 'content/' }}
12
+ --img class="hero__image hero__image--fixed hero-65"
13
+ --alt {{ page.hero.alt }} %}</div>
14
+
15
+ <header class="hero__strap hero__strap--center image__filter--blur hero-65" aria-label="{{ strap }}">
16
+
17
+ <h1 aria-hidden="true" >
18
+ {% assign n = strap.size | minus: 1 %}
19
+ {%- for char in (0..n ) -%}
20
+
21
+ <span style="animation-delay: {{ char | times: 40 | plus: 200 }}ms;">{{ strap | slice: char }}</span>
22
+ {%- endfor -%}</h1>
23
+
24
+ </header>
25
+
26
+ </div>
27
+
28
+ <div class="faq__wrapper">
29
+ {% for faq in site.data.faq %}
30
+ <div class="faq__panel">
31
+ <div class="faq__question">
32
+ <h4>{{ faq.question }}</h4>
33
+ </div>
34
+
35
+ <div class="faq__answer faq__answer--reveal">
36
+ <p>{{ faq.answer }}</p>
37
+ </div>
38
+ </div>
39
+ {% endfor %}
40
+ </div>
41
+
42
+
43
+ <script>
44
+ /*
45
+ On load we hide all the answers.
46
+ */
47
+
48
+ const title = document.querySelectorAll(".faq__answer--reveal");
49
+ for(var i = 0; i < title.length; i++)
50
+ title[i].classList.remove('faq__answer--reveal');
51
+
52
+ </script>
53
+
54
+ <script>
55
+ /* Watch for clicks on more info and reveal text */
56
+ document.querySelectorAll('.faq__question').forEach(function(el){
57
+ el.addEventListener('click', function() {
58
+ const n = this.nextElementSibling;
59
+ n.classList.toggle('faq__answer--reveal');
60
+ });
61
+ });
62
+
63
+ </script>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <section class="fullwidth__wrap">
6
+
7
+
8
+ {{ content }}
9
+
10
+
11
+ </section>
@@ -17,6 +17,9 @@
17
17
  filter: grayscale(1) contrast(.2) brightness(1.8)
18
18
  opacity: .6
19
19
 
20
+ @mixin image-filter-rotate
21
+ filter: grayscale(1) contrast(.8) brightness(.9) sepia(.4) hue-rotate(180deg)
22
+
20
23
  // Applied to an overlaying div
21
24
  @mixin image-filter--blur
22
25
  backdrop-filter: blur(8px)
@@ -35,6 +38,9 @@
35
38
  @mixin build-in($name)
36
39
  animation: .8s $bezier-snap 0s 1 $name
37
40
 
41
+ @mixin default-trans
42
+ transition: all .4s ease-in-out
43
+
38
44
  // Keyframes
39
45
  @mixin slide-from-left
40
46
  @keyframes slide-from-left
@@ -54,7 +54,7 @@ $led: rgb(255, 70, 0)
54
54
 
55
55
  // Object colors
56
56
 
57
- $secondary-navbar-color: rgba(255, 255, 255, .3)
57
+ $secondary-navbar-color: rgba(255, 255, 255, .8)
58
58
 
59
59
 
60
60
  // Color set mixins
@@ -4,7 +4,7 @@
4
4
  // in assets/css/gaitq_env.sass we import this AFTER
5
5
  // @import 'colors/env/env.sass'
6
6
 
7
- @media screen and ( min-width: 768px )
7
+ @media screen and ( min-width: 1024px )
8
8
 
9
9
  .navbar
10
10
  background-color: $env-primary
@@ -0,0 +1,227 @@
1
+
2
+
3
+ .contact__wrapper
4
+ display: flex
5
+ width: 100%
6
+ background-color: $white
7
+ padding: 5rem 0
8
+ flex-direction: column
9
+
10
+ .contact--left
11
+ width: auto
12
+ padding: 0 1rem
13
+ padding-bottom: 5rem
14
+
15
+ .contact--right
16
+ //width: 100%
17
+ padding: 0 1rem
18
+
19
+ .form-instruction
20
+ padding-bottom: 2rem
21
+
22
+ .contact-form
23
+ width: 100%
24
+ display: block
25
+
26
+ form
27
+ border: solid 1px rgba($env-primary, .2)
28
+ border-radius: 4px
29
+ padding: 2rem
30
+ label
31
+ font-size: $font-size * .8
32
+ color: $black
33
+
34
+ .google-map
35
+ //grid-area: googleMap
36
+ width: 100%
37
+
38
+ //padding: 0 5rem
39
+ //filter: sepia(.3)
40
+ iframe
41
+ width: 100%
42
+ height: 40vh
43
+ border: solid 1px rgba($env-primary, .2)
44
+
45
+ .contact-details
46
+ display: flex
47
+ flex-direction: column
48
+ padding: 4rem 0
49
+ p
50
+ padding-bottom: 2rem
51
+ .fas
52
+ color: $env-primary
53
+ a
54
+ color: $black
55
+ transition: all .2s ease-in-out
56
+ //text-decoration: none
57
+ &:hover
58
+ color: $env-primary
59
+ .social-media-link
60
+ font-size: $font-size * 1.4
61
+
62
+ .form-element
63
+ width: 100%
64
+ height: 40px
65
+ border-radius: 4px
66
+ //font-size: 1rem
67
+ font-weight: 100
68
+ margin: 2vh 0
69
+ border: none
70
+ background-color: $pure-white
71
+ padding: .1rem 0 .4rem 0
72
+ text-indent: 1rem
73
+
74
+ &::placeholder
75
+ color: rgba($env-primary, .3)
76
+
77
+ .btn-contact
78
+ background: $env-primary
79
+ color: #ffffff
80
+ cursor: pointer
81
+ font-size: $font-size * .8
82
+ padding: 1rem 2rem
83
+ border: 0
84
+ transition: all .3s
85
+ border-radius: 4px
86
+ width: auto
87
+ position: relative
88
+
89
+ .social-media
90
+ display: flex
91
+ justify-content: center
92
+ padding: 0
93
+ margin: 0
94
+ z-index: 9999
95
+
96
+ .social-media-item
97
+ list-style: none
98
+ padding-right: 2rem
99
+
100
+ .social-media-link
101
+ color: $grey
102
+ transition: all .3s ease-in-out
103
+
104
+
105
+
106
+ @media screen and ( min-width: 1024px )
107
+
108
+ .contact__wrapper
109
+ display: flex
110
+ flex-direction: row
111
+ width: 100%
112
+ background-color: $white
113
+ padding: 5rem 0
114
+
115
+ .contact--left
116
+ width: 40%
117
+ padding: 0 5rem
118
+
119
+ .contact--right
120
+ width: 60%
121
+ padding: 0 5rem
122
+
123
+ .form-instruction
124
+ padding-bottom: 2rem
125
+
126
+ .contact-form
127
+ width: 100%
128
+ display: block
129
+
130
+ form
131
+ border: solid 1px rgba($env-primary, .2)
132
+ border-radius: 4px
133
+ padding: 2rem
134
+ label
135
+ font-size: $font-size * .8
136
+ color: $black
137
+
138
+ .google-map
139
+ //grid-area: googleMap
140
+ width: 100%
141
+
142
+ //padding: 0 5rem
143
+ //filter: sepia(.3)
144
+ iframe
145
+ width: 100%
146
+ height: 40vh
147
+ border: solid 1px rgba($env-primary, .2)
148
+
149
+ .contact-details
150
+ display: flex
151
+ flex-direction: column
152
+ padding: 4rem 0
153
+ p
154
+ padding-bottom: 2rem
155
+ .fas
156
+ color: $env-primary
157
+ a
158
+ color: $black
159
+ transition: all .2s ease-in-out
160
+ text-decoration: none
161
+ &:hover
162
+ color: $env-primary
163
+ .social-media-link
164
+ font-size: $font-size * 2
165
+
166
+ .form-element
167
+ width: 100%
168
+ height: 40px
169
+ border-radius: 4px
170
+ //font-size: 1rem
171
+ font-weight: 100
172
+ margin: 2vh 0
173
+ border: none
174
+ background-color: $pure-white
175
+ padding: .1rem 0 .4rem 0
176
+ text-indent: 1rem
177
+
178
+ &::placeholder
179
+ color: rgba($env-primary, .3)
180
+
181
+ .btn-contact
182
+ background: $env-primary
183
+ color: #ffffff
184
+ cursor: pointer
185
+ font-size: $font-size * .8
186
+ padding: 1rem 2rem
187
+ border: 0
188
+ transition: all .3s
189
+ border-radius: 4px
190
+ width: auto
191
+ position: relative
192
+
193
+ &::after
194
+ content: "\f054"
195
+ font-family: "Font Awesome 5 Free"
196
+ font-weight: 900
197
+ position: absolute
198
+ //left: 85%
199
+ top: 28%
200
+ right: 5%
201
+ bottom: 0
202
+ opacity: 0
203
+
204
+ &:hover
205
+ background: rgba($env-primary, .9)
206
+ transition: all .5s
207
+ box-shadow: 0px 6px 15px rgba($env-primary, .3)
208
+ padding: 1rem 3rem 1rem 2.1rem
209
+
210
+ &::after
211
+ opacity: 1
212
+ transition: all 0.3s
213
+
214
+ .social-media
215
+ display: flex
216
+ justify-content: flex-start
217
+ padding: 0
218
+ margin: 0
219
+ z-index: 9999
220
+
221
+ .social-media-item
222
+ list-style: none
223
+ padding-right: 2rem
224
+
225
+ .social-media-link
226
+ color: $grey
227
+ transition: all .3s ease-in-out
@@ -33,6 +33,8 @@
33
33
  padding: 5rem 0
34
34
  width: 50%
35
35
 
36
+ .image--guarantee
37
+ @include image-filter-rotate
36
38
 
37
39
  .action__call
38
40
 
@@ -53,7 +53,7 @@
53
53
  height: 50%
54
54
 
55
55
  .image--guarantee
56
- filter: grayscale(1) contrast(.8) brightness(.9) sepia(.4) hue-rotate(180deg)
56
+ @include image-filter-rotate
57
57
 
58
58
  .strap__guarantee
59
59
  border-top: solid 1px $soft-white
@@ -0,0 +1,37 @@
1
+ .faq__wrapper
2
+ display: flex
3
+ flex-direction: column
4
+ background-color: $pure-white
5
+ padding: 10vh 0
6
+
7
+ .faq__panel
8
+ border: solid 1px rgba($env-primary, .4)
9
+ margin: 2rem auto
10
+ border-radius: 4px
11
+ width: 60%
12
+
13
+ .faq__question
14
+ width: 100%
15
+ padding: 1rem 0
16
+ background-color: rgba($opd-blue-trust, .2)
17
+ border-radius: 4px
18
+ cursor: pointer
19
+ transition: .2s ease-in-out
20
+
21
+ &:hover
22
+ background-color: rgba($opd-blue-trust, 1)
23
+
24
+ & > *
25
+ padding-left: 1rem
26
+
27
+ .faq__answer
28
+ max-height: 0
29
+ overflow: hidden
30
+ transition: .4s ease-in-out
31
+
32
+ & > *
33
+ padding: 1rem
34
+
35
+ .faq__answer--reveal
36
+ max-height: 1000px
37
+ transition: .6s ease-in-out
@@ -19,7 +19,7 @@
19
19
  width: 90vw
20
20
 
21
21
  .ft__col
22
- border-left: solid 1px rgba($opd-blue-trust, .05)
22
+ //border-left: solid 1px rgba($opd-blue-trust, .05)
23
23
  box-sizing: border-box
24
24
  padding: 0 5vw
25
25
  width: 90vw
@@ -99,7 +99,6 @@
99
99
  .ft__sitemap--env
100
100
  width: 100%
101
101
 
102
-
103
102
  @media screen and ( min-width: 768px )
104
103
 
105
104
  .ft__wrapper
@@ -15,8 +15,33 @@
15
15
  -ms-transition: none !important
16
16
  -o-transition: none !important
17
17
 
18
+ body
19
+ background-color: $white
20
+
18
21
  .fullwidth__wrap
19
- width: 100vw
22
+ width: 90vw
23
+ max-width: 800px
24
+ margin: auto
25
+ margin-top: $navbar-height + $secondary-navbar-height + 5vh
26
+ & > p
27
+ padding: 3rem 0
28
+ & > ol li, ul li
29
+ padding: 1rem 0
30
+
31
+ .two__col
32
+ display: flex
33
+ flex-wrap: wrap
34
+ width: 100%
35
+
36
+ .two__col--elem
37
+ padding: 1rem 0
38
+
39
+ .two__col--left,
40
+ .two__col--right
41
+ width: 100%
42
+
43
+ .no--mobile
44
+ display: none
20
45
 
21
46
  .h-100
22
47
  height: 100%
@@ -75,7 +100,7 @@
75
100
 
76
101
 
77
102
  .hero__strap--center
78
- padding-top: $navbar-height
103
+ //padding-top: $navbar-height
79
104
 
80
105
  span
81
106
  animation-duration: .1s
@@ -245,11 +270,25 @@ $svg-text-offset: 60px
245
270
 
246
271
  @media screen and ( min-width: 768px )
247
272
 
273
+ .fullwidth__wrap
274
+ .two__col--left
275
+ width: 30%
276
+
277
+ .two__col--right
278
+ width: 70%
279
+
280
+ .no--mobile
281
+ display: block
282
+
248
283
  .narrow__wrap
249
284
  width: 80vw
250
285
  max-width: 600px
251
286
  margin: 0 auto
252
287
 
288
+ .social--Facebook
289
+ &:hover
290
+ color: $facebook-primary
291
+
253
292
  .social--Twitter
254
293
  &:hover
255
294
  color: $twitter-primary
@@ -5,13 +5,28 @@
5
5
 
6
6
  // Everything here will be included in EVERY .html
7
7
 
8
- @media screen and ( min-width: 768px )
8
+ $brand-height: 55%
9
+
10
+ @media screen and ( min-width: 1024px )
9
11
 
10
12
  .navbar
13
+ @include default-trans
11
14
  height: $navbar-height
12
15
  align-items: center
13
16
 
17
+ .nav-scrolled
18
+ @include default-trans
19
+ top: -$navbar-height
20
+ .nav-group-content
21
+ @include default-trans
22
+ height: 10vh
23
+ .nav-brand
24
+ @include default-trans
25
+ height: 8vh
26
+ top: 6vh
27
+
14
28
  .nav-brand
29
+ @include default-trans
15
30
  display: flex
16
31
  position: absolute
17
32
  max-width: 160px
@@ -21,8 +36,8 @@
21
36
 
22
37
  .site__logo
23
38
  position: absolute
24
- top: 30%
25
- height: 40%
39
+ top: (100% - $brand-height) / 2
40
+ height: $brand-height
26
41
 
27
42
  .nav-list
28
43
  display: flex
@@ -67,6 +82,7 @@
67
82
  margin-right: -10%
68
83
 
69
84
  .nav-group-content
85
+ @include default-trans
70
86
  align-items: center
71
87
  justify-content: flex-end
72
88
  position: absolute
@@ -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
- .site__logo--group
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-primary-colors
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,18 @@
18
18
  width: 100%
19
19
  z-index: 99
20
20
 
21
+ .social-media
22
+ padding-left: 4rem
23
+ .social-media-link
24
+ color: $white
25
+ font-size: $font-size * .8
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)
31
+
32
+
21
33
  .nav-brand
22
34
  width: 30vw
23
35
  padding-left: 3vw
@@ -25,10 +25,14 @@ $baseurl: '{{ site.baseurl }}/'
25
25
 
26
26
  @import 'env/breakpoints/768'
27
27
 
28
- @import 'colors/breakpoints/768'
28
+ @import 'colors/breakpoints/1024'
29
29
 
30
30
  @import 'about'
31
31
 
32
32
  @import 'breakpoints/about'
33
33
 
34
34
  @import 'forms/mc-forms'
35
+
36
+ @import 'contact'
37
+
38
+ @import 'faq'
@@ -25,10 +25,12 @@ $baseurl: '{{ site.baseurl }}/'
25
25
 
26
26
  @import 'env/breakpoints/768'
27
27
 
28
- @import 'colors/breakpoints/768'
28
+ @import 'colors/breakpoints/1024'
29
29
 
30
30
  @import 'about'
31
31
 
32
32
  @import 'breakpoints/about'
33
33
 
34
34
  @import 'forms/mc-forms'
35
+
36
+ @import 'contact'
@@ -23,7 +23,7 @@
23
23
 
24
24
  @import 'navigation/burger'
25
25
 
26
- @import 'navigation/breakpoints/768'
26
+ @import 'navigation/breakpoints/1024'
27
27
 
28
28
  // Footer
29
29
 
@@ -0,0 +1,16 @@
1
+ navbar = document.querySelector('nav');
2
+
3
+ function navBarScroll() {
4
+ var currentScrollPos = window.pageYOffset;
5
+ if (window.pageYOffset != 0) {
6
+ navbar.classList.add('nav-scrolled');
7
+ } else {
8
+ navbar.classList.remove('nav-scrolled');
9
+ }
10
+ };
11
+
12
+ /* load nav color if reloading and pageYOffset != 0 */
13
+ /* moved to scripts to avoid conflicts with other onloads */
14
+ /*window.onload = function() { navBarScroll() };*/
15
+
16
+ window.onscroll = function() { navBarScroll() };
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
4
+ version: 0.1.9
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-09 00:00:00.000000000 Z
11
+ date: 2021-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -181,6 +181,9 @@ files:
181
181
  - _config.yml
182
182
  - _includes/.DS_Store
183
183
  - _includes/branding/site-logo.svg
184
+ - _includes/build-version.html
185
+ - _includes/contact-details.html
186
+ - _includes/contact-form.html
184
187
  - _includes/env_filter.html
185
188
  - _includes/errors/robot-403.svg
186
189
  - _includes/errors/robot-404.svg
@@ -190,6 +193,8 @@ files:
190
193
  - _includes/forms/mc-register.html
191
194
  - _includes/functions/calc-svg-coord.html
192
195
  - _includes/functions/pull_page_args.html
196
+ - _includes/gmap.html
197
+ - _includes/google-analytics.html
193
198
  - _includes/head/.DS_Store
194
199
  - _includes/head/README.md
195
200
  - _includes/head/descriptors/og-meta.html
@@ -204,12 +209,15 @@ files:
204
209
  - _includes/vimeoPlayer.html
205
210
  - _layouts/about.html
206
211
  - _layouts/compress.html
212
+ - _layouts/contact.html
207
213
  - _layouts/default.html
208
214
  - _layouts/env/clinician.html
209
215
  - _layouts/env/landing.html
210
216
  - _layouts/env/pwp.html
211
217
  - _layouts/error-page.html
218
+ - _layouts/faq.html
212
219
  - _layouts/feed.html
220
+ - _layouts/full-width.html
213
221
  - _layouts/post.html
214
222
  - _layouts/register.html
215
223
  - _sass/_functions.sass
@@ -219,24 +227,26 @@ files:
219
227
  - _sass/aos-overrides.sass
220
228
  - _sass/breakpoints/about.sass
221
229
  - _sass/colors/_variables.sass
222
- - _sass/colors/breakpoints/768.sass
230
+ - _sass/colors/breakpoints/1024.sass
223
231
  - _sass/colors/burger.sass
224
232
  - _sass/colors/env/_clinician.sass
225
233
  - _sass/colors/env/_pwp.sass
226
234
  - _sass/colors/global.sass
227
235
  - _sass/colors/navigation.sass
236
+ - _sass/contact.sass
228
237
  - _sass/env/breakpoints/768.sass
229
238
  - _sass/env/clinician.sass
230
239
  - _sass/env/landing.sass
231
240
  - _sass/env/pwp.sass
232
241
  - _sass/error-page.sass
242
+ - _sass/faq.sass
233
243
  - _sass/feed.sass
234
244
  - _sass/footer.sass
235
245
  - _sass/footer_full.sass
236
246
  - _sass/forms/mc-forms.sass
237
247
  - _sass/global.sass
238
248
  - _sass/navigation/_variables.sass
239
- - _sass/navigation/breakpoints/768.sass
249
+ - _sass/navigation/breakpoints/1024.sass
240
250
  - _sass/navigation/burger.sass
241
251
  - _sass/navigation/env/clinician.sass
242
252
  - _sass/navigation/env/landing.sass
@@ -284,6 +294,7 @@ files:
284
294
  - assets/js/animate_after_load.js
285
295
  - assets/js/calc-mobile-viewport.js
286
296
  - assets/js/mobile-nav-slider.js
297
+ - assets/js/nav-scroll.js
287
298
  - assets/js/svg_aos.js
288
299
  - assets/js/svg_text_width.js
289
300
  - assets/vendor/aos/aos.css