slow-steps 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +35 -37
- data/_includes/footer/footer_full.html +15 -3
- data/_includes/vimeoPlayer.html +10 -10
- data/_layouts/about.html +10 -1
- data/_layouts/careers.html +22 -0
- data/_layouts/faq.html +11 -2
- data/_sass/about.sass +41 -0
- data/_sass/breakpoints/about.sass +24 -0
- data/_sass/collage.sass +89 -0
- data/_sass/contact.sass +3 -3
- data/_sass/faq.sass +26 -1
- data/_sass/footer_full.sass +5 -5
- data/_sass/global.sass +3 -0
- data/_sass/navigation/breakpoints/1024.sass +1 -0
- data/assets/css/env/gaitq_clinician.sass +2 -0
- metadata +5 -4
- data/_includes/.DS_Store +0 -0
- data/_includes/head/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05bd2b6e5c0020cb8c9e141e5ef424b1d96e6b94e831031006ad9e7b05858184
|
4
|
+
data.tar.gz: a25dbf1aec46fd111662f6395a4b5ed08b9a7a3bc94810510dc039348e4c06f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79c36b139da45d35a18b43f1cf2c62f8456310e389dc0843ea1a6af95e7e8e66b6807796b497534f12b53abf7b4d419b7a966a2369b4b898d7bab2a51e1c1a24
|
7
|
+
data.tar.gz: 5d9d3842bccfc26c126c1f48311fb433f07a1c10a1989d4f1474171a4db0873bf810541e676b61555068b5333f989de19fb5b3e04406c3d504c2f75286cdef0a
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021 Made Slowly and contributors
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,55 +1,53 @@
|
|
1
1
|
---
|
2
2
|
---
|
3
|
-
# Slow Steps, a Jekyll theme
|
3
|
+
# [Slow Steps, a Jekyll theme](https://www.gaitq.madeslowly.xyz/clinician/about/)
|
4
4
|
|
5
|
-
|
5
|
+
[![Ruby gem](https://badge.fury.io/rb/slow-steps.svg)](https://badge.fury.io/rb/slow-steps)
|
6
|
+
|
7
|
+
[![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/madeslowly/slow-steps/blob/master/LICENSE)
|
8
|
+
|
9
|
+
[![Jekyll](https://img.shields.io/badge/jekyll-%3E%3D%203.7-blue.svg)](https://jekyllrb.com/)
|
10
|
+
|
11
|
+
A bold jekyll theme built for gaitQ. Designed to have two distinct styling, depending on current URL.
|
6
12
|
|
7
13
|
## Jekyll Theme Scaffolding
|
8
14
|
|
9
|
-
How this repo is organised and what the various files are. All posts, layouts, includes, stylesheets, assets, and whatever else is grouped
|
15
|
+
How this repo is organised and what the various files are. All posts, layouts, includes, stylesheets, assets, and whatever else is grouped under the root folder. The compiled Jekyll site outputs to `_site/`, which is never pushed to this repo, see https://www.gaitq.madeslowly.xyz/. General flow starts with a `.md` file in our root. With Front Matter, we declare our layout which points to a structural `.html` file in `_layouts`. From here, the layout file can call in data from our `_config.yml` with `{{ site.variable }}` and from any of our `YAML` files in `_data/file.yml` with `{{ site.data.file.variable }}`. The layout can also pull in other structural html snippets from `_includes` with `{% raw %}{% include relative/path/file.html %}{% endraw %}`.
|
10
16
|
|
11
17
|
It is worth noting that _include files can also perform the tasks just described. So, for example, when the `deafult.html` layout is executed (the penultimate step for *all* `.md` files), the `head.html` snippet is called, which in turn calls `og-meta.html`. Based on our sites settings and any relevant Front Matter belonging to the calling file, `og-meta.html` compiles all our `og:meta` tags and passes them to `head.html` which after adding further code, passes on to our default layout where it is placed at the top of our webpages `html`.
|
12
18
|
|
13
19
|
```
|
14
20
|
https://github.com/madeslowly/slow-steps/
|
15
21
|
|
|
16
|
-
├─ _config.yml/ #
|
22
|
+
├─ _config.yml/ # Website settings
|
17
23
|
|
|
18
|
-
├─ _data/ # Site
|
24
|
+
├─ _data/ # Site data
|
19
25
|
| | |
|
20
|
-
| | ├─ forms/ #
|
26
|
+
| | ├─ forms/ # Inputs for MailChimp forms
|
21
27
|
| |
|
22
|
-
| ├─ copy.yml # Website copy
|
28
|
+
| ├─ copy.yml # Website copy
|
23
29
|
| |
|
24
|
-
| ├─ menu.yml # Menu structure
|
30
|
+
| ├─ menu.yml # Menu structure
|
25
31
|
|
|
26
32
|
├─ _includes/ # HTML and Liquid templating
|
27
33
|
| |
|
28
34
|
| ├─ branding/ # Site branding SVGs
|
29
35
|
| | |
|
30
|
-
| | ├─ site__logo.svg # Site wide logo
|
31
|
-
| |
|
32
|
-
| ├─ errors/ # Error page SVGs
|
33
|
-
| | |
|
34
|
-
| | ├─ robot-403.svg # 403 - Forbidden
|
35
|
-
| | |
|
36
|
-
| | ├─ robot-404.svg # 404 - Not Found
|
37
|
-
| | |
|
38
|
-
| | ├─ robot-405.svg # 405 - Method Not Allowed
|
36
|
+
| | ├─ site__logo.svg # Site wide logo
|
39
37
|
| |
|
40
38
|
| ├─ footer/ # Site wide footers
|
41
39
|
| | |
|
42
|
-
| | ├─ footer_full.html # Multi
|
40
|
+
| | ├─ footer_full.html # Multi col footer
|
43
41
|
| | |
|
44
|
-
| | ├─ footer.html # Simple
|
42
|
+
| | ├─ footer.html # Simple footer
|
45
43
|
| |
|
46
|
-
| ├─ forms/ #
|
44
|
+
| ├─ forms/ # Form scaffolding
|
47
45
|
| | |
|
48
|
-
| | ├─ mc-register.html #
|
46
|
+
| | ├─ mc-register.html # MailChimp registration form
|
49
47
|
| |
|
50
|
-
| ├─ head/ # Header partials
|
48
|
+
| ├─ head/ # Header partials
|
51
49
|
| | |
|
52
|
-
| | ├─ descriptor/ # Site wide descriptors
|
50
|
+
| | ├─ descriptor/ # Site wide descriptors
|
53
51
|
| | | |
|
54
52
|
| | | ├─ og-meta.html
|
55
53
|
| | | ├─ structured-data.html
|
@@ -59,7 +57,7 @@ https://github.com/madeslowly/slow-steps/
|
|
59
57
|
| | | |
|
60
58
|
| | | ├─ conditional.html # Page env: condition --> gaitq_env.css
|
61
59
|
| | |
|
62
|
-
| | ├─ head.html # Routine to
|
60
|
+
| | ├─ head.html # Routine to collate header partials
|
63
61
|
| |
|
64
62
|
| ├─ navigation/ # HTML and Liquid templating
|
65
63
|
| | |
|
@@ -69,7 +67,7 @@ https://github.com/madeslowly/slow-steps/
|
|
69
67
|
|
|
70
68
|
├─ _layouts/ # HTML and Liquid templating
|
71
69
|
| |
|
72
|
-
| ├─ env/ # Environmental specific layouts
|
70
|
+
| ├─ env/ # Environmental specific layouts
|
73
71
|
| | |
|
74
72
|
| | ├─ clinician.html # Professionals and press
|
75
73
|
| | ├─ pwp.html # Patients and carers
|
@@ -77,9 +75,9 @@ https://github.com/madeslowly/slow-steps/
|
|
77
75
|
| |
|
78
76
|
| ├─ compress.html # Final step for all pages. Strips html comments, carriage returns and white space.
|
79
77
|
| |
|
80
|
-
| ├─ default.html # Wraps page content with header, nav
|
78
|
+
| ├─ default.html # Wraps page content with header, nav, scripts and footer.
|
81
79
|
| |
|
82
|
-
| ├─ error-page.html #
|
80
|
+
| ├─ error-page.html # HTTP error pages
|
83
81
|
|
|
84
82
|
├─ _plugins/ # Custom Ruby plugins
|
85
83
|
| |
|
@@ -135,17 +133,17 @@ https://github.com/madeslowly/slow-steps/
|
|
135
133
|
|
136
134
|
`_config.yml` is where most variables are set.
|
137
135
|
|
138
|
-
#### title
|
136
|
+
#### `title:`
|
139
137
|
|
140
138
|
The global title of the website.
|
141
139
|
|
142
|
-
#### subtitle
|
140
|
+
#### `subtitle:`
|
143
141
|
|
144
142
|
The global subtitle of the website.
|
145
143
|
|
146
144
|
#### Page Titling
|
147
145
|
|
148
|
-
|
146
|
+
Each pages is given a title according to,
|
149
147
|
|
150
148
|
```Liquid
|
151
149
|
{% if page.title %}
|
@@ -155,11 +153,11 @@ Pages are given titles according to,
|
|
155
153
|
{% endif %}
|
156
154
|
```
|
157
155
|
|
158
|
-
#### description
|
156
|
+
#### `description:`
|
159
157
|
|
160
158
|
Site wide description, used in head description, og:description, twitter:description and structured data. Overwritten by page front matter, `description:`
|
161
159
|
|
162
|
-
#### url
|
160
|
+
#### `url:`
|
163
161
|
|
164
162
|
Used to generate absolute URLs for sitemaps, feeds and for generating canonical URLs in a page's `<head>`. When developing locally either comment this out or use something like `http://localhost:4000` so all assets load properly. *Don't include a trailing `/`*.
|
165
163
|
|
@@ -172,23 +170,23 @@ url: "http://www.gaitq.com"
|
|
172
170
|
url: ""
|
173
171
|
```
|
174
172
|
|
175
|
-
#### baseurl
|
173
|
+
#### `baseurl:`
|
176
174
|
|
177
175
|
Used when we are developing a partial.
|
178
176
|
|
179
|
-
#### author
|
177
|
+
#### `author:`
|
180
178
|
|
181
179
|
Author of this Jekyll project. Content authors can be added to _data/authors.yml and assigned in a pages front matter.
|
182
180
|
|
183
|
-
#### postal_add
|
181
|
+
#### `postal_add:`
|
184
182
|
|
185
183
|
Postal address of GaitQ Ltd. Used in structured data.
|
186
184
|
|
187
|
-
#### opening_hours
|
185
|
+
#### `opening_hours:`
|
188
186
|
|
189
187
|
Used in structured data. This lets google know when we are open.
|
190
188
|
|
191
|
-
#### logo
|
189
|
+
#### `logo:`
|
192
190
|
|
193
191
|
Site wide logo, used as a default image for Twitter and Facebook. Can be over written by a pages front matter: `image:`.
|
194
192
|
|
@@ -16,8 +16,20 @@
|
|
16
16
|
{% for item in site.postal_add %}
|
17
17
|
<li class="address">{{ item[1] }}</li>
|
18
18
|
{% endfor %}
|
19
|
+
<li><a class="ft--link" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
19
20
|
<li>{{ site.phone }}</li>
|
20
|
-
|
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
|
+
|
21
33
|
</ul>
|
22
34
|
|
23
35
|
</div>
|
@@ -35,7 +47,7 @@
|
|
35
47
|
<h4 class="ft__sitemap--env-header">{{ item.name }}</h4>
|
36
48
|
<ul class="ft__sitemap--submenu">
|
37
49
|
{% for sub in item.submenu %}
|
38
|
-
<li><a href="{{ sub.url }}">{{ sub.alt }}</a></li>
|
50
|
+
<li><a class="ft--link" href="{{ sub.url }}">{{ sub.alt }}</a></li>
|
39
51
|
{% endfor %}
|
40
52
|
</ul>
|
41
53
|
</div>
|
@@ -61,7 +73,7 @@
|
|
61
73
|
<a href="{{ item.url }}">{{ item.name }}</a>
|
62
74
|
{% endfor %}
|
63
75
|
</div>
|
64
|
-
<a href="{{ site.author.url }}" class="slogan">
|
76
|
+
<a href="{{ site.author.url }}" class="slogan">Jekyll theme Slow Steps</a>
|
65
77
|
</div>
|
66
78
|
|
67
79
|
</footer>
|
data/_includes/vimeoPlayer.html
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
|
2
|
-
<div class="
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
</iframe>
|
2
|
+
<div class="video__container">
|
3
|
+
<iframe
|
4
|
+
src="https://player.vimeo.com/video/{{ include.id }}?autoplay=1&title=0&byline=0&portrait=0"
|
5
|
+
frameborder="0"
|
6
|
+
allow="autoplay"
|
7
|
+
webkitallowfullscreen
|
8
|
+
mozallowfullscreen
|
9
|
+
allowfullscreen>
|
10
|
+
</iframe>
|
12
11
|
</div>
|
12
|
+
<script src="https://player.vimeo.com/api/player.js"></script>
|
data/_layouts/about.html
CHANGED
@@ -50,9 +50,18 @@ Last full read through 29/12/2020
|
|
50
50
|
</div>
|
51
51
|
{% endif %}
|
52
52
|
|
53
|
-
<div class="
|
53
|
+
<div class="embedded__video about--video">
|
54
|
+
<!--
|
55
|
+
<h2>Watch our company video</h2>
|
56
|
+
-->
|
57
|
+
{% include vimeoPlayer.html id="493777125" %}
|
58
|
+
|
59
|
+
</div>
|
54
60
|
|
61
|
+
<div class="about__team">
|
62
|
+
<h2 class="bg--env-50 about__team--title">Meet the team</h2>
|
55
63
|
<div class="team__head bg--env-50">
|
64
|
+
|
56
65
|
{% for menu in site.data.team.menu %}
|
57
66
|
<h3 class="team__title team--js-script-{{ menu.script }}"
|
58
67
|
id="team{{ menu.script }}"
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
<div class="spacefiller"></div>
|
8
|
+
<div class="hero hero-65 collage">
|
9
|
+
|
10
|
+
{% for collage in page.collage %}
|
11
|
+
<div class="collage__image__wrap collage__image__wrap-{{ forloop.index }}" style="animation-delay: {{ forloop.index0 | times: 110 }}ms">
|
12
|
+
<h3 class="image__header">{{ collage.reasons }}</h3>
|
13
|
+
{% picture {{ collage.image | prepend: 'content/' }}
|
14
|
+
--img class="collage__image collage__image-{{ forloop.index }}"
|
15
|
+
--alt {{ collage.reasons }} %}
|
16
|
+
</div>
|
17
|
+
{% endfor %}
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<div class="fullwidth__wrap">
|
21
|
+
{{ content }}
|
22
|
+
</div>
|
data/_layouts/faq.html
CHANGED
@@ -29,7 +29,7 @@ layout: default
|
|
29
29
|
{% for faq in site.data.faq %}
|
30
30
|
<div class="faq__panel">
|
31
31
|
<div class="faq__question">
|
32
|
-
<h4>{{ faq.question }}</h4>
|
32
|
+
<h4 class="faq__question--title">{{ faq.question }}</h4><i class="fas fa-chevron-down"></i>
|
33
33
|
</div>
|
34
34
|
|
35
35
|
<div class="faq__answer faq__answer--reveal">
|
@@ -52,12 +52,21 @@ layout: default
|
|
52
52
|
</script>
|
53
53
|
|
54
54
|
<script>
|
55
|
-
/* Watch for clicks
|
55
|
+
/* Watch for clicks and reveal text */
|
56
56
|
document.querySelectorAll('.faq__question').forEach(function(el){
|
57
57
|
el.addEventListener('click', function() {
|
58
|
+
this.classList.toggle('faq__question--reveal');
|
58
59
|
const n = this.nextElementSibling;
|
59
60
|
n.classList.toggle('faq__answer--reveal');
|
60
61
|
});
|
61
62
|
});
|
62
63
|
|
63
64
|
</script>
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
<div class="faq__contact">
|
69
|
+
<h2 class="faq__contact--strap">Not found the answer?</h2>
|
70
|
+
{% include contact-form.html %}
|
71
|
+
|
72
|
+
</div>
|
data/_sass/about.sass
CHANGED
@@ -33,10 +33,43 @@
|
|
33
33
|
.about--copy
|
34
34
|
padding: 3rem 0
|
35
35
|
|
36
|
+
.about--video
|
37
|
+
width: 100vw
|
38
|
+
background-color: $opd-grey-neutral
|
39
|
+
display: flex
|
40
|
+
flex-direction: column
|
41
|
+
padding: 5rem 0
|
42
|
+
padding: 0
|
43
|
+
justify-content: space-between
|
44
|
+
& > h2
|
45
|
+
color: $env-primary
|
46
|
+
text-align: center
|
47
|
+
padding: 1rem
|
48
|
+
.video__container
|
49
|
+
display: block
|
50
|
+
position: relative
|
51
|
+
width: 100%
|
52
|
+
padding-top: 56.25%
|
53
|
+
iframe
|
54
|
+
position: absolute
|
55
|
+
top: 0
|
56
|
+
left: 0
|
57
|
+
bottom: 0
|
58
|
+
right: 0
|
59
|
+
width: 100%
|
60
|
+
height: 100%
|
61
|
+
|
62
|
+
|
36
63
|
.about__team
|
37
64
|
display: flex
|
38
65
|
flex-direction: column
|
39
66
|
background-color: $pure-white
|
67
|
+
border-top: solid 1px $opd-blue-confidence
|
68
|
+
|
69
|
+
.about__team--title
|
70
|
+
padding-top: 3rem
|
71
|
+
text-align: center
|
72
|
+
color: $pure-white
|
40
73
|
|
41
74
|
.team__head
|
42
75
|
align-items: flex-end
|
@@ -68,6 +101,14 @@
|
|
68
101
|
.title__title--text
|
69
102
|
display: none
|
70
103
|
|
104
|
+
.team__title--active
|
105
|
+
.title__title--text
|
106
|
+
display: block
|
107
|
+
position: absolute
|
108
|
+
margin-top: 4rem
|
109
|
+
left: 2rem
|
110
|
+
|
111
|
+
|
71
112
|
.team__members
|
72
113
|
background-color: $white
|
73
114
|
color: $opd-blue-confidence
|
@@ -7,6 +7,22 @@
|
|
7
7
|
.about__team
|
8
8
|
flex-direction: row
|
9
9
|
|
10
|
+
.about__team--title
|
11
|
+
display: none
|
12
|
+
|
13
|
+
.about--video
|
14
|
+
flex-direction: row
|
15
|
+
padding: 12rem 0
|
16
|
+
padding: 0
|
17
|
+
|
18
|
+
& > h2
|
19
|
+
padding-left: 5rem
|
20
|
+
text-align: left
|
21
|
+
|
22
|
+
.video__container
|
23
|
+
padding-top: 56.25%
|
24
|
+
//margin-right: 5rem
|
25
|
+
|
10
26
|
.team__head
|
11
27
|
border-bottom: none
|
12
28
|
border-right: solid 1px $opd-blue-confidence
|
@@ -19,6 +35,14 @@
|
|
19
35
|
.title__title--text
|
20
36
|
display: block
|
21
37
|
|
38
|
+
.team__title--active
|
39
|
+
.title__title--text
|
40
|
+
display: block
|
41
|
+
position: relative
|
42
|
+
margin-top: 0
|
43
|
+
left: auto
|
44
|
+
|
45
|
+
|
22
46
|
.team__title
|
23
47
|
display: flex
|
24
48
|
border-radius: 6px 0 0 6px
|
data/_sass/collage.sass
ADDED
@@ -0,0 +1,89 @@
|
|
1
|
+
.spacefiller
|
2
|
+
width: 100vw
|
3
|
+
height: $navbar-height + $secondary-navbar-height + 5vh
|
4
|
+
|
5
|
+
.collage
|
6
|
+
display: flex
|
7
|
+
flex-flow: wrap
|
8
|
+
background-color: $env-primary
|
9
|
+
justify-content: flex-start
|
10
|
+
align-items: flex-start
|
11
|
+
position: relative
|
12
|
+
border: solid 10px $pure-white
|
13
|
+
|
14
|
+
& > *
|
15
|
+
border: solid 10px $pure-white
|
16
|
+
|
17
|
+
.image__header
|
18
|
+
text-align: center
|
19
|
+
color: $pure-white
|
20
|
+
padding: 0 2rem
|
21
|
+
|
22
|
+
.collage__image__wrap
|
23
|
+
display: flex
|
24
|
+
justify-content: center
|
25
|
+
align-items: center
|
26
|
+
width: 19%
|
27
|
+
height: 49%
|
28
|
+
position: absolute
|
29
|
+
opacity: 0
|
30
|
+
animation: .4s ease-in-out aniCollage forwards
|
31
|
+
perspective: 1000px
|
32
|
+
|
33
|
+
&:hover
|
34
|
+
.collage__image
|
35
|
+
transform: rotateY(90deg)
|
36
|
+
|
37
|
+
.collage__image
|
38
|
+
display: block
|
39
|
+
position: absolute
|
40
|
+
object-fit: cover
|
41
|
+
object-position: center
|
42
|
+
width: 100%
|
43
|
+
height: 100%
|
44
|
+
transition: .4s ease-in-out
|
45
|
+
transform-style: preserve-3d
|
46
|
+
|
47
|
+
.collage__placeholder
|
48
|
+
background-color: $env-primary
|
49
|
+
width: 19%
|
50
|
+
height: 49%
|
51
|
+
position: absolute
|
52
|
+
|
53
|
+
.collage__image__wrap-1
|
54
|
+
left: 0
|
55
|
+
|
56
|
+
.collage__image__wrap-1
|
57
|
+
height: 65%
|
58
|
+
top: 0
|
59
|
+
width: 30%
|
60
|
+
left: 0
|
61
|
+
|
62
|
+
.collage__image__wrap-2
|
63
|
+
height: 50%
|
64
|
+
width: 40%
|
65
|
+
left: 30%
|
66
|
+
|
67
|
+
.collage__image__wrap-3
|
68
|
+
height: 50%
|
69
|
+
width: 30%
|
70
|
+
left: 70%
|
71
|
+
top: 0
|
72
|
+
|
73
|
+
.collage__image__wrap-4
|
74
|
+
height: 35%
|
75
|
+
width: 40%
|
76
|
+
left: 0
|
77
|
+
top: 65%
|
78
|
+
|
79
|
+
.collage__image__wrap-5
|
80
|
+
width: 60%
|
81
|
+
height: 50%
|
82
|
+
left: 40%
|
83
|
+
top: 50%
|
84
|
+
|
85
|
+
@keyframes aniCollage
|
86
|
+
0%
|
87
|
+
opacity: 0
|
88
|
+
100%
|
89
|
+
opacity: 1
|
data/_sass/contact.sass
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
.contact__wrapper
|
4
4
|
display: flex
|
5
5
|
width: 100%
|
6
|
-
background-color: $white
|
6
|
+
background-color: $pure-white
|
7
7
|
padding: 5rem 0
|
8
8
|
flex-direction: column
|
9
9
|
|
@@ -24,6 +24,7 @@
|
|
24
24
|
display: block
|
25
25
|
|
26
26
|
form
|
27
|
+
background-color: $white
|
27
28
|
border: solid 1px rgba($env-primary, .2)
|
28
29
|
border-radius: 4px
|
29
30
|
padding: 2rem
|
@@ -32,12 +33,12 @@
|
|
32
33
|
color: $black
|
33
34
|
|
34
35
|
.google-map
|
35
|
-
//grid-area: googleMap
|
36
36
|
width: 100%
|
37
37
|
|
38
38
|
//padding: 0 5rem
|
39
39
|
//filter: sepia(.3)
|
40
40
|
iframe
|
41
|
+
border-radius: 4px
|
41
42
|
width: 100%
|
42
43
|
height: 40vh
|
43
44
|
border: solid 1px rgba($env-primary, .2)
|
@@ -109,7 +110,6 @@
|
|
109
110
|
display: flex
|
110
111
|
flex-direction: row
|
111
112
|
width: 100%
|
112
|
-
background-color: $white
|
113
113
|
padding: 5rem 0
|
114
114
|
|
115
115
|
.contact--left
|
data/_sass/faq.sass
CHANGED
@@ -11,6 +11,8 @@
|
|
11
11
|
width: 60%
|
12
12
|
|
13
13
|
.faq__question
|
14
|
+
display: flex
|
15
|
+
justify-content: space-between
|
14
16
|
width: 100%
|
15
17
|
padding: 1rem 0
|
16
18
|
background-color: rgba($opd-blue-trust, .2)
|
@@ -21,9 +23,13 @@
|
|
21
23
|
&:hover
|
22
24
|
background-color: rgba($opd-blue-trust, 1)
|
23
25
|
|
24
|
-
& >
|
26
|
+
& > .faq__question--title
|
25
27
|
padding-left: 1rem
|
26
28
|
|
29
|
+
& > .fas
|
30
|
+
padding-right: 1rem
|
31
|
+
transition: .4s ease-in-out
|
32
|
+
|
27
33
|
.faq__answer
|
28
34
|
max-height: 0
|
29
35
|
overflow: hidden
|
@@ -35,3 +41,22 @@
|
|
35
41
|
.faq__answer--reveal
|
36
42
|
max-height: 1000px
|
37
43
|
transition: .6s ease-in-out
|
44
|
+
|
45
|
+
.faq__question--reveal
|
46
|
+
& > .fas
|
47
|
+
transform: rotateX(180deg) translateY(.5rem)
|
48
|
+
|
49
|
+
.faq__contact
|
50
|
+
width: 100vw
|
51
|
+
background-color: lighten($env-primary, 0%)
|
52
|
+
padding: 4rem 0
|
53
|
+
|
54
|
+
.contact-form
|
55
|
+
width: 95%
|
56
|
+
margin: auto
|
57
|
+
max-width: 600px
|
58
|
+
|
59
|
+
.faq__contact--strap
|
60
|
+
text-align: center
|
61
|
+
padding: 4rem 0
|
62
|
+
color: $white
|
data/_sass/footer_full.sass
CHANGED
@@ -88,7 +88,7 @@
|
|
88
88
|
line-height: 3rem
|
89
89
|
list-style: none
|
90
90
|
|
91
|
-
.
|
91
|
+
.ft--link
|
92
92
|
color: $pure-white
|
93
93
|
|
94
94
|
.ft__sitemap--env-wrap
|
@@ -114,7 +114,7 @@
|
|
114
114
|
width: 60vw
|
115
115
|
|
116
116
|
.ft__contact--list
|
117
|
-
font-size: $font-size * .
|
117
|
+
font-size: $font-size * .8
|
118
118
|
li
|
119
119
|
line-height: 4rem
|
120
120
|
.address
|
@@ -126,14 +126,14 @@
|
|
126
126
|
|
127
127
|
.ft__sitemap
|
128
128
|
.ft__sitemap--env-header
|
129
|
-
font-size: $font-size * .
|
129
|
+
font-size: $font-size * .9
|
130
130
|
.ft__sitemap--submenu
|
131
|
-
font-size: $font-size * .
|
131
|
+
font-size: $font-size * .8
|
132
132
|
|
133
133
|
.ft__base
|
134
134
|
a,
|
135
135
|
p
|
136
|
-
font-size: $font-size * .
|
136
|
+
font-size: $font-size * .7
|
137
137
|
|
138
138
|
.legal-links
|
139
139
|
flex-direction: row
|
data/_sass/global.sass
CHANGED
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.12
|
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-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -177,9 +177,9 @@ executables: []
|
|
177
177
|
extensions: []
|
178
178
|
extra_rdoc_files: []
|
179
179
|
files:
|
180
|
+
- LICENSE
|
180
181
|
- README.md
|
181
182
|
- _config.yml
|
182
|
-
- _includes/.DS_Store
|
183
183
|
- _includes/branding/site-logo.svg
|
184
184
|
- _includes/build-version.html
|
185
185
|
- _includes/contact-details.html
|
@@ -195,7 +195,6 @@ files:
|
|
195
195
|
- _includes/functions/pull_page_args.html
|
196
196
|
- _includes/gmap.html
|
197
197
|
- _includes/google-analytics.html
|
198
|
-
- _includes/head/.DS_Store
|
199
198
|
- _includes/head/README.md
|
200
199
|
- _includes/head/descriptors/og-meta.html
|
201
200
|
- _includes/head/descriptors/structured-data.html
|
@@ -208,6 +207,7 @@ files:
|
|
208
207
|
- _includes/scripts.html
|
209
208
|
- _includes/vimeoPlayer.html
|
210
209
|
- _layouts/about.html
|
210
|
+
- _layouts/careers.html
|
211
211
|
- _layouts/compress.html
|
212
212
|
- _layouts/contact.html
|
213
213
|
- _layouts/default.html
|
@@ -226,6 +226,7 @@ files:
|
|
226
226
|
- _sass/about.sass
|
227
227
|
- _sass/aos-overrides.sass
|
228
228
|
- _sass/breakpoints/about.sass
|
229
|
+
- _sass/collage.sass
|
229
230
|
- _sass/colors/_variables.sass
|
230
231
|
- _sass/colors/breakpoints/1024.sass
|
231
232
|
- _sass/colors/burger.sass
|
data/_includes/.DS_Store
DELETED
Binary file
|
data/_includes/head/.DS_Store
DELETED
Binary file
|