slow-steps 0.4.1 → 0.4.6
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 -0
- data/_includes/footer/footer_redesign.html +14 -5
- data/_includes/forms/mc-register.html +2 -2
- data/_includes/head/descriptors/og-meta.html +13 -3
- data/_includes/head/descriptors/twitter-meta.html +11 -3
- data/_includes/head/head.html +6 -2
- data/_includes/image-post.html +3 -1
- data/_includes/image.html +1 -1
- data/_includes/navigation/global.html +9 -1
- data/_layouts/about.html +1 -1
- data/_layouts/careers.html +1 -1
- data/_layouts/contact.html +1 -1
- data/_layouts/default.html +3 -0
- data/_layouts/env/clinician.html +4 -4
- data/_layouts/env/pwp.html +3 -3
- data/_layouts/error-page.html +1 -1
- data/_layouts/faq.html +1 -1
- data/_layouts/feed.html +2 -2
- data/_layouts/full-width.html +1 -1
- data/_layouts/post.html +2 -2
- data/_layouts/product.html +62 -0
- data/_layouts/register.html +1 -1
- data/_sass/_mixins.sass +1 -1
- data/_sass/global.sass +12 -2
- data/_sass/navigation/breakpoints/1024.sass +17 -2
- data/_sass/post.sass +8 -2
- data/_sass/product.sass +93 -0
- data/assets/css/env/gaitq_clinician.sass +2 -0
- data/assets/css/env/gaitq_pwp.sass +2 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76fa1b7db89e11f4a8a61545e8776a63bdbba3ea8ad4251994e0029d021076d9
|
4
|
+
data.tar.gz: 237de51a201f48a073da012bc55e5b270997fbf01322928ecda1fd70e6b8a33f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60cc19edc62e64866c5df9dfb3e35bea03ea3ff0fd050deb8017b7d4197ab102eb808206a992dab25c721d178ef04013801f4f7c80a9153553a2337a0fc67d7f
|
7
|
+
data.tar.gz: 72bfac426bbe78dca2f4f27c5d8dab09e632614403f81174094a730d12157015524e00b709888971928b440861b7b88b5e0e1b2ca624a2d8066eb39811d78928
|
data/_config.yml
CHANGED
@@ -29,15 +29,22 @@
|
|
29
29
|
<div class="ft__sitemap">
|
30
30
|
<div class="ft__sitemap--menu">
|
31
31
|
|
32
|
-
{% if page.url
|
32
|
+
{% if page.url == "/" %}
|
33
|
+
{% assign env = "clinician" %}
|
33
34
|
|
34
|
-
|
35
|
+
{% else %}
|
36
|
+
|
37
|
+
{% assign env = page.env %}
|
38
|
+
|
39
|
+
{% endif %}
|
40
|
+
|
41
|
+
<h2 class="ft__sitemap--header">COMPANY INFORMATION</h2>
|
35
42
|
|
36
43
|
<div class="ft__sitemap--env-wrap">
|
37
44
|
|
38
45
|
{% for item in site.data.menu.navigation %}
|
39
46
|
|
40
|
-
{% if item.env ==
|
47
|
+
{% if item.env == env %}
|
41
48
|
|
42
49
|
<div class="ft__sitemap--env">
|
43
50
|
|
@@ -59,10 +66,11 @@
|
|
59
66
|
|
60
67
|
</div>
|
61
68
|
|
62
|
-
{% endif %}
|
63
69
|
|
64
70
|
|
65
71
|
|
72
|
+
<!--
|
73
|
+
Remove Site map for now
|
66
74
|
<h2 class="ft__sitemap--header">INFORMATION FOR</h2>
|
67
75
|
|
68
76
|
<div class="ft__sitemap--env-wrap">
|
@@ -85,6 +93,7 @@
|
|
85
93
|
{% endfor %}
|
86
94
|
|
87
95
|
</div>
|
96
|
+
-->
|
88
97
|
|
89
98
|
</div>
|
90
99
|
</div>
|
@@ -97,7 +106,7 @@
|
|
97
106
|
<ul>
|
98
107
|
<li class="ft__contact--link"><a href="mailto:{{ site.email }}"><i class="fas fa-envelope"></i>{{ site.email }}</a></li>
|
99
108
|
|
100
|
-
|
109
|
+
<!--- <li class="ft__contact--link"><a href="tel:{{ site.phone }}"><i class="fas fa-phone-square"></i>{{ site.phone }}</a></li> -->
|
101
110
|
|
102
111
|
</ul>
|
103
112
|
|
@@ -123,9 +123,9 @@
|
|
123
123
|
<div class="mc-field-group input-group" style="position: absolute; left: -5000px;" aria-hidden="true">
|
124
124
|
<select name="USERTYPE" class="required" id="mce-USERTYPE" >
|
125
125
|
{% if page.env == 'pwp' %}
|
126
|
-
<option value="
|
126
|
+
<option value="PwP" selected></option>
|
127
127
|
{% else %}
|
128
|
-
<option value="
|
128
|
+
<option value="Clinician" selected></option>
|
129
129
|
{% endif %}
|
130
130
|
</select>
|
131
131
|
</div>
|
@@ -1,6 +1,11 @@
|
|
1
1
|
|
2
2
|
<!-- *** OG *** https://ogp.me/ -->
|
3
|
-
<meta property="og:title" content="
|
3
|
+
<meta property="og:title" content="
|
4
|
+
{% if page.url == '/' %}
|
5
|
+
{{ site.title }} | {{ site.subtitle }}
|
6
|
+
{% else %}
|
7
|
+
{{ page.title }} | {{ site.title }}
|
8
|
+
{% endif %}" />
|
4
9
|
|
5
10
|
<!-- Adds article properties for posts -->
|
6
11
|
|
@@ -37,7 +42,7 @@
|
|
37
42
|
<!-- use local image if it exist but only for posts -->
|
38
43
|
|
39
44
|
{% if page.id %}
|
40
|
-
{% assign image = '/posts/' | append: page.
|
45
|
+
{% assign image = '/posts/' | append: page.hero %}
|
41
46
|
{% else %}
|
42
47
|
{% assign image = site.fallback_path | append: site.brand %}
|
43
48
|
{% endif %}
|
@@ -52,7 +57,12 @@
|
|
52
57
|
|
53
58
|
<!-- to implement this properly we need some kind of db recording the descriptors of our thumbs -->
|
54
59
|
|
55
|
-
<meta property="og:image:alt" content="
|
60
|
+
<meta property="og:image:alt" content="
|
61
|
+
{%- if page.id -%}
|
62
|
+
{{ page.hero_alt }}
|
63
|
+
{%- else -%}
|
64
|
+
{{ site.subtitle }}
|
65
|
+
{%- endif -%} "" />
|
56
66
|
|
57
67
|
<meta property="og:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
|
58
68
|
|
@@ -10,8 +10,16 @@
|
|
10
10
|
{% else %} {{ page.description }} {% endif %}" />
|
11
11
|
|
12
12
|
<meta name="twitter:image" content="
|
13
|
-
{%- if page.
|
14
|
-
|
13
|
+
{%- if page.id -%}
|
14
|
+
{{ site.url }}{{ site.baseurl }}{{ site.default_path }}{{ page.hero | prepend: 'posts/' }}
|
15
|
+
{%- else -%}
|
16
|
+
{{ site.url }}{{ site.baseurl }}{{ site.fallback_path }}{{ site.brand }}
|
17
|
+
{%- endif -%} "/>
|
15
18
|
<!-- to implement this we need some kind of db recording the descriptors of our thumbs -->
|
16
|
-
<meta name="twitter:image:alt" content="
|
19
|
+
<meta name="twitter:image:alt" content="
|
20
|
+
{%- if page.id -%}
|
21
|
+
{{ page.hero_alt }}
|
22
|
+
{%- else -%}
|
23
|
+
{{ site.subtitle }}
|
24
|
+
{%- endif -%} " />
|
17
25
|
<!-- *** END TWITTER:CARD *** -->
|
data/_includes/head/head.html
CHANGED
@@ -31,7 +31,13 @@
|
|
31
31
|
{% assign date = 'now' | date: "%Y" %}
|
32
32
|
<meta name="copyright" content="Copyright {{ site.title | append: ' Limited ' | append: date }}" />
|
33
33
|
|
34
|
+
<!-- if production, get bots to follow us -->
|
35
|
+
{% if jekyll.environment == "production" %}
|
34
36
|
<meta name="robots" content="follow" />
|
37
|
+
<!-- else, stop the site from beinf indexed -->
|
38
|
+
{% else %}
|
39
|
+
<meta name="robots" content="noindex">
|
40
|
+
{% endif %}
|
35
41
|
|
36
42
|
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
37
43
|
|
@@ -53,8 +59,6 @@
|
|
53
59
|
{% include head/google-analytics.html %}
|
54
60
|
{% endif %}
|
55
61
|
|
56
|
-
|
57
|
-
|
58
62
|
</head>
|
59
63
|
|
60
64
|
<body class="preload" onload="animate_after_load()">
|
data/_includes/image-post.html
CHANGED
@@ -1,9 +1,11 @@
|
|
1
|
+
|
2
|
+
|
1
3
|
<!--
|
2
4
|
insert an image located in assets/images/posts/ and wrap with .post__image div.
|
3
5
|
-->
|
4
6
|
<div class="post__image">
|
5
7
|
|
6
|
-
{% picture post {{ include.link | prepend: 'posts/' }} --alt {{include.alt}} --img class="post__content--image" %}
|
8
|
+
{% picture post {{ include.link | prepend: 'posts/' }} --alt {{include.alt}} --img class="post__content--image image--{{ include.focus }}" %}
|
7
9
|
|
8
10
|
{% if include.caption %}
|
9
11
|
<p class="image--caption">{{ include.caption }}</p>
|
data/_includes/image.html
CHANGED
@@ -24,8 +24,16 @@
|
|
24
24
|
|
25
25
|
<ul class="nav-list">
|
26
26
|
{% for item in site.data.menu.navigation %}
|
27
|
+
|
27
28
|
<li class="nav-group">
|
28
|
-
<a href="{{ item.url | relative_url }}" class="nav-group-link nav-link
|
29
|
+
<a href="{{ item.url | relative_url }}" class="nav-group-link nav-link
|
30
|
+
{% assign url = page.env | append: '/' | prepend: '/' %}
|
31
|
+
|
32
|
+
{% if item.url == url %}
|
33
|
+
current--env
|
34
|
+
{% endif %}
|
35
|
+
|
36
|
+
{{ item.env }}-group-link">
|
29
37
|
|
30
38
|
<span>{{ item.name }}</span>
|
31
39
|
</a>
|
data/_layouts/about.html
CHANGED
@@ -41,7 +41,7 @@ Last full read through 29/12/2020
|
|
41
41
|
|
42
42
|
<!-- exclude if no text is provided -->
|
43
43
|
{% if site.data.copy.about[page.env].text %}
|
44
|
-
<div class="about__copy bg--env-100" >
|
44
|
+
<div class="about__copy bg--env-100" id="content">
|
45
45
|
|
46
46
|
{% for item in site.data.copy.about[page.env].text %}
|
47
47
|
<p class="about--copy" data-aos="fade-in">
|
data/_layouts/careers.html
CHANGED
data/_layouts/contact.html
CHANGED
data/_layouts/default.html
CHANGED
@@ -4,10 +4,13 @@ layout: compress
|
|
4
4
|
|
5
5
|
{% include head/head.html %}
|
6
6
|
|
7
|
+
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
|
8
|
+
|
7
9
|
{% include navigation/global.html %}
|
8
10
|
|
9
11
|
{{ content }}
|
10
12
|
|
13
|
+
|
11
14
|
{% include footer/footer_redesign.html %}
|
12
15
|
|
13
16
|
{% include scripts.html %}
|
data/_layouts/env/clinician.html
CHANGED
@@ -51,7 +51,7 @@ Last full read through 27/12/2020
|
|
51
51
|
</radialGradient>
|
52
52
|
</defs>
|
53
53
|
|
54
|
-
<circle class="svg__augment--pulse" cx="
|
54
|
+
<circle class="svg__augment--pulse" cx="33%" cy="2%" >
|
55
55
|
|
56
56
|
<!-- Can't animate with CSS, see https://stackoverflow.com/questions/32409101/resizing-svg-circle-radius-using-css-animation
|
57
57
|
-->
|
@@ -60,13 +60,13 @@ Last full read through 27/12/2020
|
|
60
60
|
<animate attributeName="fill-opacity" attributeType="CSS" begin="0s" dur="2s" repeatCount="indefinite" from="1" to="0" fill="freeze" />
|
61
61
|
|
62
62
|
</circle>
|
63
|
-
<circle class="svg__augment--led" cx="
|
63
|
+
<circle class="svg__augment--led" cx="33%" cy="2%" r=".5" />
|
64
64
|
|
65
65
|
</svg>
|
66
66
|
|
67
67
|
</div>
|
68
68
|
|
69
|
-
<div class="segment__wrap">
|
69
|
+
<div class="segment__wrap" id="content">
|
70
70
|
|
71
71
|
<div class="segment__left strap--opd-trust">
|
72
72
|
|
@@ -81,7 +81,7 @@ Last full read through 27/12/2020
|
|
81
81
|
{%- assign env = site.data.menu.navigation | where: 'env', 'clinician' -%}
|
82
82
|
{%- assign env = env[0] -%}
|
83
83
|
|
84
|
-
{%- assign cta = env.submenu | where: '
|
84
|
+
{%- assign cta = env.submenu | where: 'cta', 'true' -%}
|
85
85
|
{%- assign cta = cta[0] -%}
|
86
86
|
|
87
87
|
<a class="action__call" aria-label="{{ cta.aria }}" href="{{ cta.url }}">
|
data/_layouts/env/pwp.html
CHANGED
@@ -63,7 +63,7 @@ Last full read through 27/12/2020
|
|
63
63
|
</radialGradient>
|
64
64
|
</defs>
|
65
65
|
|
66
|
-
<circle class="svg__augment--pulse" cx="
|
66
|
+
<circle class="svg__augment--pulse" cx="33%" cy="2%" >
|
67
67
|
|
68
68
|
<!-- Can't animate with CSS, see https://stackoverflow.com/questions/32409101/resizing-svg-circle-radius-using-css-animation
|
69
69
|
-->
|
@@ -72,13 +72,13 @@ Last full read through 27/12/2020
|
|
72
72
|
<animate attributeName="fill-opacity" attributeType="CSS" begin="0s" dur="2s" repeatCount="indefinite" from="1" to="0" fill="freeze" />
|
73
73
|
|
74
74
|
</circle>
|
75
|
-
<circle class="svg__augment--led" cx="
|
75
|
+
<circle class="svg__augment--led" cx="33%" cy="2%" r=".5" />
|
76
76
|
|
77
77
|
</svg>
|
78
78
|
|
79
79
|
</div>
|
80
80
|
|
81
|
-
<div class="center-text strap__100 strap--opd-trust">
|
81
|
+
<div class="center-text strap__100 strap--opd-trust" id="content">
|
82
82
|
<h2>{{ site.data.copy.landing.pwp.subtitle }}</h2>
|
83
83
|
<p data-aos="fade-in">{{ site.data.copy.landing.pwp.strap }}</p>
|
84
84
|
</div>
|
data/_layouts/error-page.html
CHANGED
data/_layouts/faq.html
CHANGED
data/_layouts/feed.html
CHANGED
@@ -14,14 +14,14 @@ layout: default
|
|
14
14
|
|
15
15
|
</section>
|
16
16
|
|
17
|
-
<div class="post__feed">
|
17
|
+
<div class="post__feed" id="content">
|
18
18
|
|
19
19
|
{% for post in site.posts %}
|
20
20
|
|
21
21
|
<div class="feed__card" data-aos="fade-up">
|
22
22
|
|
23
23
|
<div class="feed__card__image">
|
24
|
-
{% picture thumb {{ post.
|
24
|
+
{% picture thumb {{ post.hero | prepend: 'posts/' }} --alt {{ post.hero_alt }} --img class="feed__card--image image--{{ page.hero_focus }}" %}
|
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>
|
data/_layouts/full-width.html
CHANGED
data/_layouts/post.html
CHANGED
@@ -4,7 +4,7 @@ layout: default
|
|
4
4
|
|
5
5
|
<section class="post_head">
|
6
6
|
|
7
|
-
{% picture {{ page.
|
7
|
+
{% picture {{ page.hero | prepend: 'posts/' }} --alt {{ page.hero_alt }} --img class="post__hero image--{{ page.hero_focus }}" %}
|
8
8
|
|
9
9
|
<div class="post__title">
|
10
10
|
<h1 >{{ page.title }}</h1>
|
@@ -13,7 +13,7 @@ layout: default
|
|
13
13
|
</section>
|
14
14
|
|
15
15
|
|
16
|
-
<section class="post__content">
|
16
|
+
<section class="post__content" id="content">
|
17
17
|
|
18
18
|
<h2 class="post__subtitle">{{ page.subtitle }}</h2>
|
19
19
|
|
@@ -0,0 +1,62 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
{% if page.hero %}
|
6
|
+
<header class="product__strap " aria-label="{{ strap }}">
|
7
|
+
<h1>
|
8
|
+
{{ page.title }}
|
9
|
+
</h1>
|
10
|
+
</header>
|
11
|
+
|
12
|
+
<div class="product__hero">
|
13
|
+
{% picture {{ page.hero.file | prepend: 'content/' }}
|
14
|
+
--img class=""
|
15
|
+
--alt {{ page.hero.alt }} %}
|
16
|
+
</div>
|
17
|
+
{% endif %}
|
18
|
+
|
19
|
+
<div class="product__info">
|
20
|
+
|
21
|
+
<h1 class="product__title" data-aos="fade-down">
|
22
|
+
{{ site.data.copy.product[page.env].title }}
|
23
|
+
</h1>
|
24
|
+
|
25
|
+
{% for para in site.data.copy.product[page.env].overview %}
|
26
|
+
<p data-aos="fade-up">
|
27
|
+
{{ para.para }}
|
28
|
+
</p>
|
29
|
+
{% endfor %}
|
30
|
+
</div>
|
31
|
+
|
32
|
+
|
33
|
+
<div class="product__wrap">
|
34
|
+
<div class="product__image" data-aos="zoom-in-right" data-aos-anchor-placement="top-center">
|
35
|
+
|
36
|
+
{% include image.html image="device_1" alt="Describe the image" class="product--image" %}
|
37
|
+
|
38
|
+
<div class="product__description">
|
39
|
+
<p data-aos="fade-left">
|
40
|
+
<span class="product__start">
|
41
|
+
{{ site.data.copy.product[page.env].device[0].para | split: '\' | first }}
|
42
|
+
</span> {{ site.data.copy.product[page.env].device[0].para | split: '\' | last }}
|
43
|
+
</p>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
|
48
|
+
<div class="product__wrap">
|
49
|
+
<div class="product__description txt-right">
|
50
|
+
|
51
|
+
<p data-aos="fade-right">
|
52
|
+
<span class="product__start">
|
53
|
+
{{ site.data.copy.product[page.env].device[1].para | split: '\' | first }}
|
54
|
+
</span> {{ site.data.copy.product[page.env].device[1].para | split: '\' | last }}
|
55
|
+
</p>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<div class="product__image" data-aos="zoom-in-left" data-aos-anchor-placement="top-center">
|
60
|
+
{% include image.html image="device_2" alt="Describe the image" class="product--image" %}
|
61
|
+
|
62
|
+
</div>
|
data/_layouts/register.html
CHANGED
data/_sass/_mixins.sass
CHANGED
data/_sass/global.sass
CHANGED
@@ -239,8 +239,9 @@ body
|
|
239
239
|
// This is digusting! We need to tweak the actual html so we can readilly access these elements.
|
240
240
|
.svg__labels--red
|
241
241
|
& > svg > * > *
|
242
|
-
fill: $opd-coral
|
243
|
-
|
242
|
+
fill: darken($opd-coral, 10)
|
243
|
+
& > svg > * > line
|
244
|
+
stroke: darken($opd-coral,10)!important
|
244
245
|
|
245
246
|
|
246
247
|
$svg-text-offset: 60px
|
@@ -429,3 +430,12 @@ $svg-text-offset: 60px
|
|
429
430
|
|
430
431
|
&:hover
|
431
432
|
color: $opd-coral
|
433
|
+
|
434
|
+
|
435
|
+
.skip-link
|
436
|
+
margin: 0
|
437
|
+
position: absolute
|
438
|
+
padding: 0
|
439
|
+
width: 1px
|
440
|
+
height: 1px
|
441
|
+
overflow: hidden
|
@@ -77,23 +77,32 @@
|
|
77
77
|
overflow: hidden
|
78
78
|
position: relative
|
79
79
|
|
80
|
+
|
80
81
|
.sub-link,
|
81
82
|
.subsub-link
|
82
83
|
color: $env-primary
|
83
84
|
|
85
|
+
span
|
86
|
+
padding: 1rem 0
|
87
|
+
border-bottom: solid 1px rgba($pure-white, 0)
|
88
|
+
|
84
89
|
.nav-cta
|
85
90
|
@include default-trans
|
86
91
|
color: $pure-white
|
87
92
|
background-color: $env-primary
|
88
|
-
padding: 2rem 2rem!important
|
93
|
+
//padding: 2rem 2rem!important
|
89
94
|
margin-right: 8rem!important
|
90
95
|
border-radius: 6px
|
91
96
|
|
97
|
+
span
|
98
|
+
padding: 0
|
99
|
+
|
92
100
|
&:before, &:after
|
93
101
|
display: none!important
|
94
102
|
|
95
103
|
&:hover
|
96
104
|
background-color: darken($env-primary,10)
|
105
|
+
border-bottom: none
|
97
106
|
|
98
107
|
// Surround current link with ticks
|
99
108
|
.current--url
|
@@ -111,6 +120,11 @@
|
|
111
120
|
&:after
|
112
121
|
left: 3px
|
113
122
|
|
123
|
+
.current--env
|
124
|
+
span
|
125
|
+
border-bottom: solid 1px $pure-white
|
126
|
+
|
127
|
+
|
114
128
|
.nav-group-content
|
115
129
|
@include default-trans
|
116
130
|
@include navbar-color
|
@@ -169,7 +183,8 @@
|
|
169
183
|
padding: 1rem 3rem
|
170
184
|
&:not(.current--url)
|
171
185
|
&:hover
|
172
|
-
|
186
|
+
span
|
187
|
+
border-bottom: solid 1px $env-primary
|
173
188
|
|
174
189
|
.nav-group-container:hover > .nav-subsub-content
|
175
190
|
visibility: visible
|
data/_sass/post.sass
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
background-color: $env-primary
|
24
24
|
color: $white
|
25
25
|
left: 5vw
|
26
|
-
max-width:
|
26
|
+
max-width: 90vw
|
27
27
|
text-transform: uppercase
|
28
28
|
//bottom: -10px
|
29
29
|
border: solid 1px $white
|
@@ -53,10 +53,16 @@
|
|
53
53
|
.post__content--image
|
54
54
|
display: block
|
55
55
|
object-fit: cover
|
56
|
-
object-position:
|
56
|
+
object-position: center
|
57
57
|
width: 100%
|
58
58
|
height: 50vh
|
59
59
|
|
60
|
+
.image--north
|
61
|
+
object-position: top
|
62
|
+
|
63
|
+
.image--south
|
64
|
+
object-position: bottom
|
65
|
+
|
60
66
|
.post__link
|
61
67
|
color: $opd-blue
|
62
68
|
text-decoration: none
|
data/_sass/product.sass
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
@media screen and ( min-width: 768px )
|
4
|
+
|
5
|
+
.product__hero
|
6
|
+
animation: slide-hero 1.2s
|
7
|
+
animation-delay: .6s
|
8
|
+
animation-fill-mode: forwards
|
9
|
+
//object-fit: cover
|
10
|
+
//overflow: hidden
|
11
|
+
|
12
|
+
|
13
|
+
img
|
14
|
+
display: block
|
15
|
+
//height: 100vh
|
16
|
+
//height: calc(var(--vh, 1vh) * 100)
|
17
|
+
//z-index: 2
|
18
|
+
object-fit: cover
|
19
|
+
|
20
|
+
|
21
|
+
@keyframes slide-hero
|
22
|
+
|
23
|
+
0%
|
24
|
+
transform: translateX(0)
|
25
|
+
|
26
|
+
100%
|
27
|
+
transform: translateY(35vh)
|
28
|
+
|
29
|
+
.product__strap
|
30
|
+
text-align: center
|
31
|
+
animation: slide-strap 1s
|
32
|
+
animation-delay: 1s
|
33
|
+
animation-fill-mode: forwards
|
34
|
+
color: $env-primary
|
35
|
+
overflow: hidden
|
36
|
+
font-size: $lg-font-size
|
37
|
+
//overflow-y: visible
|
38
|
+
|
39
|
+
@keyframes slide-strap
|
40
|
+
|
41
|
+
0%
|
42
|
+
transform: scale(0) translateY(25vh)
|
43
|
+
|
44
|
+
100%
|
45
|
+
transform: scale(1) translateY(25vh)
|
46
|
+
|
47
|
+
|
48
|
+
.product__info
|
49
|
+
//height: 100vh
|
50
|
+
background-color: $pure-white
|
51
|
+
text-align: center
|
52
|
+
margin-top: 35vh
|
53
|
+
|
54
|
+
p
|
55
|
+
width: 80vw
|
56
|
+
max-width: 800px
|
57
|
+
margin: auto
|
58
|
+
|
59
|
+
.product__title
|
60
|
+
padding: 10rem 0 5rem 0
|
61
|
+
|
62
|
+
.product__wrap
|
63
|
+
display: flex
|
64
|
+
flex-direction: row
|
65
|
+
width: 100%
|
66
|
+
background-color: $pure-white
|
67
|
+
padding: 20vh 0 0
|
68
|
+
margin: auto
|
69
|
+
justify-content: center
|
70
|
+
overflow: hidden
|
71
|
+
|
72
|
+
.product__image,
|
73
|
+
.product__description
|
74
|
+
display: flex
|
75
|
+
align-content: center
|
76
|
+
align-self: center
|
77
|
+
justify-content: center
|
78
|
+
width: 40vw
|
79
|
+
max-width: 600px
|
80
|
+
overflow: hidden
|
81
|
+
|
82
|
+
.product__start
|
83
|
+
color: $env-primary
|
84
|
+
font-weight: $heavy-font
|
85
|
+
|
86
|
+
.product--image
|
87
|
+
display: block
|
88
|
+
width: 100%
|
89
|
+
max-width: 300px
|
90
|
+
object-fit: cover
|
91
|
+
|
92
|
+
.txt-right
|
93
|
+
text-align: right
|
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.4.
|
4
|
+
version: 0.4.6
|
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-
|
11
|
+
date: 2021-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -221,6 +221,7 @@ files:
|
|
221
221
|
- _layouts/feed.html
|
222
222
|
- _layouts/full-width.html
|
223
223
|
- _layouts/post.html
|
224
|
+
- _layouts/product.html
|
224
225
|
- _layouts/register.html
|
225
226
|
- _sass/_colors/README.md
|
226
227
|
- _sass/_colors/_clinician.sass
|
@@ -258,6 +259,7 @@ files:
|
|
258
259
|
- _sass/navigation/no-nav.sass
|
259
260
|
- _sass/navigation/pwp.sass
|
260
261
|
- _sass/post.sass
|
262
|
+
- _sass/product.sass
|
261
263
|
- _sass/typography/_variables.sass
|
262
264
|
- _sass/typography/branding.sass
|
263
265
|
- _sass/typography/resets.sass
|