slow-steps 0.1.11 → 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/LICENSE +21 -0
- data/README.md +35 -37
- data/_config.yml +1 -1
- data/_includes/footer/footer_full.html +15 -3
- data/_includes/functions/calc-svg-coord.html +18 -23
- 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/image-post.html +12 -0
- data/_includes/image.html +50 -5
- data/_includes/navigation/global.html +47 -53
- data/_includes/scripts.html +9 -8
- data/_includes/vimeoPlayer.html +9 -10
- data/_layouts/about.html +17 -3
- data/_layouts/careers.html +22 -0
- data/_layouts/contact.html +1 -1
- data/_layouts/env/clinician.html +12 -29
- data/_layouts/env/pwp.html +13 -54
- data/_layouts/faq.html +12 -3
- data/_layouts/feed.html +1 -2
- data/_layouts/full-width.html +25 -2
- 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 +46 -4
- data/_sass/breakpoints/about.sass +28 -4
- data/_sass/collage.sass +129 -0
- data/_sass/contact.sass +11 -42
- data/_sass/env/landing.sass +7 -7
- data/_sass/faq.sass +28 -3
- data/_sass/feed.sass +17 -5
- data/_sass/footer.sass +1 -1
- data/_sass/footer_full.sass +23 -13
- data/_sass/forms/mc-forms.sass +3 -3
- data/_sass/global.sass +40 -35
- data/_sass/navigation/README.md +35 -0
- data/_sass/navigation/_variables.sass +5 -6
- data/_sass/navigation/{global.sass → base.sass} +21 -20
- data/_sass/navigation/breakpoints/1024.sass +33 -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 +2 -7
- data/_sass/typography/_variables.sass +4 -0
- data/assets/css/env/gaitq_clinician.sass +26 -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
- data/assets/images/augmented_image.png +0 -0
- metadata +23 -31
- data/_includes/.DS_Store +0 -0
- data/_includes/head/.DS_Store +0 -0
- 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
data/_layouts/feed.html
CHANGED
@@ -24,13 +24,12 @@ layout: default
|
|
24
24
|
{% picture thumb {{ post.image | prepend: 'posts/' }} --alt {{ post.alt }} --img class="feed__card--image" %}
|
25
25
|
</div>
|
26
26
|
<div class="feed__card--text">
|
27
|
-
|
27
|
+
<p class="feed__card--meta">Published <span>{{ post.date | date: "%b %d, %Y" }}</span></p>
|
28
28
|
<a class="feed__card--link" href="{{ site.baseurl }}{{ post.url }}">
|
29
29
|
|
30
30
|
<h4 class="feed__card--title">{{ post.title }}</h4>
|
31
31
|
<p class="post__subtitle">{{ post.subtitle }}</p>
|
32
32
|
</a>
|
33
|
-
<p class="feed__card--meta">Published <span>{{ post.date | date: "%b %d, %Y" }}</span></p>
|
34
33
|
|
35
34
|
|
36
35
|
</div>
|
data/_layouts/full-width.html
CHANGED
@@ -2,10 +2,33 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
-
|
5
|
+
{% if page.hero %}
|
6
6
|
|
7
|
+
<div class="hero hero-65">
|
7
8
|
|
8
|
-
|
9
|
+
<div class="hero__overlay h-100">
|
10
|
+
{% picture {{ page.hero.file | prepend: 'content/' }}
|
11
|
+
--img class="hero__image hero__image--fixed hero-65"
|
12
|
+
--alt {{ page.hero.alt }} %}</div>
|
13
|
+
|
14
|
+
{% if page.title %}
|
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 = page.title.size | minus: 1 %}
|
19
|
+
{%- for char in (0..n ) -%}
|
20
|
+
|
21
|
+
<span style="animation-delay: {{ char | times: 40 | plus: 200 }}ms;">{{ page.title | slice: char }}</span>
|
22
|
+
{%- endfor -%}</h1>
|
9
23
|
|
24
|
+
</header>
|
25
|
+
{% endif %}
|
26
|
+
</div>
|
27
|
+
|
28
|
+
{% endif %}
|
29
|
+
|
30
|
+
<section class="fullwidth__wrap">
|
31
|
+
|
32
|
+
{{ content }}
|
10
33
|
|
11
34
|
</section>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Color definitions
|
2
|
+
|
3
|
+
Everything here should be rgb(a) color definitions using sass variables,
|
4
|
+
|
5
|
+
```sass
|
6
|
+
$var-name: rgba(r, g, b, a)
|
7
|
+
```
|
8
|
+
|
9
|
+
## _variables.sass
|
10
|
+
|
11
|
+
Site wide color definitions, avoid changing these variables. If we want to change the color of an element then either using a pre-existing sass variable, or creating a new one, change the actual element css to the new sass color variable.
|
12
|
+
|
13
|
+
## _mixins.sass
|
14
|
+
|
15
|
+
Color combination mixins.
|
16
|
+
|
17
|
+
## collection.sass
|
18
|
+
|
19
|
+
Collection of the above definitions.
|
20
|
+
|
21
|
+
## _clinician.sass
|
22
|
+
|
23
|
+
Theme colouring for clinician environments. We import collection.sass and define `$env-primary` and `$env-secondary`.
|
24
|
+
|
25
|
+
## _pwp.sass
|
26
|
+
|
27
|
+
Theme colouring for pwp environments. We import collection.sass and define `$env-primary` and `$env-secondary`.
|
@@ -6,18 +6,21 @@
|
|
6
6
|
*
|
7
7
|
*/
|
8
8
|
|
9
|
+
// $var-name: rgba(r, g, b, a) only
|
10
|
+
|
9
11
|
// Oxford Product Design
|
10
12
|
|
11
13
|
// #46627d
|
12
|
-
$opd-blue
|
14
|
+
$opd-blue: rgba(70, 98, 125, 1)
|
13
15
|
|
14
16
|
// #da5e51
|
15
|
-
$opd-
|
17
|
+
$opd-coral: rgba(218, 94, 81, 1)
|
16
18
|
|
17
|
-
// #
|
18
|
-
$opd-blue
|
19
|
+
// #a3dbf5
|
20
|
+
$opd-light-blue: rgba(174, 201, 229, 1)
|
19
21
|
|
20
|
-
|
22
|
+
// #b3b2b2
|
23
|
+
$opd-grey: rgba(179, 178, 178, 1)
|
21
24
|
|
22
25
|
|
23
26
|
// Socials
|
@@ -50,15 +53,3 @@ $light-grey: rgb(220, 220, 220)
|
|
50
53
|
$grey: rgb(130, 130, 130)
|
51
54
|
|
52
55
|
$led: rgb(255, 70, 0)
|
53
|
-
|
54
|
-
|
55
|
-
// Object colors
|
56
|
-
|
57
|
-
$secondary-navbar-color: rgba(255, 255, 255, .8)
|
58
|
-
|
59
|
-
|
60
|
-
// Color set mixins
|
61
|
-
|
62
|
-
@mixin opd-blue-trust
|
63
|
-
background-color: $opd-blue-trust
|
64
|
-
color: $opd-blue-confidence
|
data/_sass/_mixins.sass
CHANGED
@@ -68,18 +68,18 @@
|
|
68
68
|
@mixin logo-primary-colors
|
69
69
|
.site__logo--group
|
70
70
|
.site__logo--curve
|
71
|
-
fill: $opd-
|
71
|
+
fill: $opd-coral
|
72
72
|
.site__logo--legvert
|
73
|
-
fill: $opd-blue
|
73
|
+
fill: $opd-blue
|
74
74
|
.site__logo--leg45
|
75
|
-
fill: $opd-blue
|
75
|
+
fill: $opd-light-blue
|
76
76
|
.site__logo--g,
|
77
77
|
.site__logo--a,
|
78
78
|
.site__logo__i,
|
79
79
|
.site__logo--t
|
80
|
-
fill: $opd-blue
|
80
|
+
fill: $opd-blue
|
81
81
|
.site__logo--Q
|
82
|
-
fill: $opd-
|
82
|
+
fill: $opd-coral
|
83
83
|
|
84
84
|
|
85
85
|
|
@@ -101,3 +101,12 @@
|
|
101
101
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='1278' height='600' %3E%3Cpath d='M1019,600 C1019,600 1019,600 1019,600 C1019,600 1279,600 1279,600 C1279,600 1279,0 1279,0 C1279,0 413,0 413,0 C413,0 413,0 413,0' fill= '#{url-friendly-colour($footer-bg-color)}' fill-opacity='0.99'/%3E%3Cpath d='M1220,600 C1220,600 0,600 0,600 C0,600 0,0 0,0 C0,0 414,0 414,0 C414,0 1020,600 1020,600' fill= '#{url-friendly-colour($footer-bg-color)}' /%3E%3C/svg%3E")
|
102
102
|
background-position: center
|
103
103
|
background-size: cover
|
104
|
+
|
105
|
+
|
106
|
+
@mixin text-shadow
|
107
|
+
text-shadow: 3px 3px 6px rgba($pure-black, .2)
|
108
|
+
|
109
|
+
|
110
|
+
@mixin navbar-color
|
111
|
+
backdrop-filter: blur(20px)
|
112
|
+
background-color: $secondary-navbar-color
|
data/_sass/about.sass
CHANGED
@@ -33,21 +33,54 @@
|
|
33
33
|
.about--copy
|
34
34
|
padding: 3rem 0
|
35
35
|
|
36
|
+
.about--video
|
37
|
+
width: 100vw
|
38
|
+
background-color: $opd-grey
|
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
|
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
|
43
|
-
border-bottom: solid 1px $opd-blue
|
76
|
+
border-bottom: solid 1px $opd-blue
|
44
77
|
display: flex
|
45
78
|
height: 10rem
|
46
79
|
justify-content: space-around
|
47
80
|
width: 100vw
|
48
81
|
|
49
82
|
.team__title
|
50
|
-
color: $opd-blue
|
83
|
+
color: $opd-blue
|
51
84
|
padding-bottom: 2rem
|
52
85
|
transition: .4s ease-out
|
53
86
|
cursor: pointer
|
@@ -59,7 +92,7 @@
|
|
59
92
|
color: $env-primary
|
60
93
|
padding-bottom: 2.3rem
|
61
94
|
i
|
62
|
-
text-shadow
|
95
|
+
@include text-shadow
|
63
96
|
font-size: $font-size * 1.5
|
64
97
|
|
65
98
|
.team__title.team__title--active
|
@@ -68,9 +101,17 @@
|
|
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
|
-
color: $opd-blue
|
114
|
+
color: $opd-blue
|
74
115
|
padding-top: 10rem
|
75
116
|
|
76
117
|
.single__member
|
@@ -108,6 +149,7 @@
|
|
108
149
|
display: flex
|
109
150
|
align-items: center
|
110
151
|
color: $grey
|
152
|
+
font-size: $font-size
|
111
153
|
|
112
154
|
.member__socials
|
113
155
|
align-items: center
|
@@ -7,9 +7,25 @@
|
|
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
|
-
border-right: solid 1px $opd-blue
|
28
|
+
border-right: solid 1px $opd-blue
|
13
29
|
display: block
|
14
30
|
height: auto
|
15
31
|
width: auto
|
@@ -19,13 +35,21 @@
|
|
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
|
25
49
|
padding: 2rem 4rem 2rem 2rem
|
26
50
|
transform: rotate(0)
|
27
51
|
white-space: nowrap
|
28
|
-
color: $opd-blue
|
52
|
+
color: $opd-blue
|
29
53
|
border: solid 1px rgba($env-primary, 0)
|
30
54
|
margin: 2rem 0
|
31
55
|
&:not(.team__title--active)
|
@@ -47,7 +71,7 @@
|
|
47
71
|
|
48
72
|
.team__members
|
49
73
|
//padding: 10rem
|
50
|
-
color: $opd-blue
|
74
|
+
color: $opd-blue
|
51
75
|
background-color: $white
|
52
76
|
|
53
77
|
.team__title--active
|
@@ -56,7 +80,7 @@
|
|
56
80
|
padding-right: 1rem !important
|
57
81
|
color: $env-primary !important
|
58
82
|
background-color: $white
|
59
|
-
border: solid 1px $opd-blue
|
83
|
+
border: solid 1px $opd-blue
|
60
84
|
border-right: solid 1px $white
|
61
85
|
transform: translateX(1px)
|
62
86
|
text-align: right
|
data/_sass/collage.sass
ADDED
@@ -0,0 +1,129 @@
|
|
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
|
+
&:after
|
33
|
+
position: absolute
|
34
|
+
content: ''
|
35
|
+
width: 100%
|
36
|
+
height: 100%
|
37
|
+
box-shadow: inset 0 0 40px 12px rgba($env-primary, .2)
|
38
|
+
z-index: 99
|
39
|
+
&:hover
|
40
|
+
.collage__image
|
41
|
+
transform: rotateX(90deg)
|
42
|
+
opacity: 0
|
43
|
+
|
44
|
+
.collage__image
|
45
|
+
display: block
|
46
|
+
position: absolute
|
47
|
+
object-fit: cover
|
48
|
+
object-position: center
|
49
|
+
width: 100%
|
50
|
+
height: 100%
|
51
|
+
transition: .4s ease-in-out
|
52
|
+
transform-style: preserve-3d
|
53
|
+
|
54
|
+
.collage__image__wrap-1
|
55
|
+
height: 65%
|
56
|
+
top: 0
|
57
|
+
width: 30%
|
58
|
+
left: 0
|
59
|
+
animation-delay: 700ms
|
60
|
+
|
61
|
+
.collage__image__wrap-2
|
62
|
+
height: 50%
|
63
|
+
width: 40%
|
64
|
+
left: 30%
|
65
|
+
animation-delay: 100ms
|
66
|
+
|
67
|
+
.collage__image__wrap-3
|
68
|
+
height: 50%
|
69
|
+
width: 30%
|
70
|
+
left: 70%
|
71
|
+
top: 0
|
72
|
+
animation-delay: 500ms
|
73
|
+
|
74
|
+
.collage__image__wrap-4
|
75
|
+
height: 35%
|
76
|
+
width: 40%
|
77
|
+
left: 0
|
78
|
+
top: 65%
|
79
|
+
animation-delay: 300ms
|
80
|
+
|
81
|
+
.collage__image__wrap-5
|
82
|
+
width: 60%
|
83
|
+
height: 50%
|
84
|
+
left: 40%
|
85
|
+
top: 50%
|
86
|
+
animation-delay: 900ms
|
87
|
+
|
88
|
+
@keyframes aniCollage
|
89
|
+
0%
|
90
|
+
opacity: 0
|
91
|
+
100%
|
92
|
+
opacity: 1
|
93
|
+
|
94
|
+
|
95
|
+
p.job__deadline
|
96
|
+
padding: 1rem 0
|
97
|
+
font-size: $font-size * .8
|
98
|
+
|
99
|
+
p.job__description
|
100
|
+
padding: 2rem 0
|
101
|
+
//padding-bottom: 3rem
|
102
|
+
|
103
|
+
p.job__links
|
104
|
+
padding: 0
|
105
|
+
padding-bottom: 2rem
|
106
|
+
margin-bottom: 4rem
|
107
|
+
& > a
|
108
|
+
text-decoration: none
|
109
|
+
color: $env-primary
|
110
|
+
&:hover
|
111
|
+
color: $pure-black
|
112
|
+
& > a:first-child
|
113
|
+
text-decoration: none
|
114
|
+
color: $pure-white
|
115
|
+
background-color: $env-primary
|
116
|
+
padding: 1rem 2.5rem
|
117
|
+
border-radius: 8px
|
118
|
+
font-weight: 600
|
119
|
+
margin-right: 3rem
|
120
|
+
@include default-trans
|
121
|
+
&:hover
|
122
|
+
background-color: lighten($env-primary, 10)
|
123
|
+
box-shadow: 1px 1px 5px $light-grey
|
124
|
+
|
125
|
+
.fullwidth__wrap > .job__links
|
126
|
+
border-bottom: solid 1px rgba($env-primary, .4)
|
127
|
+
&:last-child
|
128
|
+
border-bottom: none
|
129
|
+
margin-bottom: 10rem
|