slow-steps 0.4.5 → 0.4.6

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: 1972222c57d570c8014e1163d8b5f065b84dbe48fe95a90946a010cfb041ede3
4
- data.tar.gz: 13d87cbd90ba7b01b72ea99057b8bafc7a36eb740de1d217ddd480e4226dbae5
3
+ metadata.gz: 76fa1b7db89e11f4a8a61545e8776a63bdbba3ea8ad4251994e0029d021076d9
4
+ data.tar.gz: 237de51a201f48a073da012bc55e5b270997fbf01322928ecda1fd70e6b8a33f
5
5
  SHA512:
6
- metadata.gz: d0e914258f26ed1ca32d0009bbac49a6511a135d628c9ee0a8925a21f909e0f48afe8a52f5a36c95953d25c78c592e85f367e2283b1df91ae598218fa4fb5acb
7
- data.tar.gz: 577c834778b637c35c2bc3b4505db510070504a07f3a1185c1a9ac98cf8f93ac100d8f7f685145af446081f41cdbec5a534a85c874524c7fa31abb0e777f5fd6
6
+ metadata.gz: 60cc19edc62e64866c5df9dfb3e35bea03ea3ff0fd050deb8017b7d4197ab102eb808206a992dab25c721d178ef04013801f4f7c80a9153553a2337a0fc67d7f
7
+ data.tar.gz: 72bfac426bbe78dca2f4f27c5d8dab09e632614403f81174094a730d12157015524e00b709888971928b440861b7b88b5e0e1b2ca624a2d8066eb39811d78928
data/_config.yml CHANGED
@@ -53,3 +53,4 @@ autoprefixer:
53
53
  picture:
54
54
  source: 'assets/images'
55
55
  output: 'assets/images'
56
+ strip_metadata: true
@@ -29,7 +29,14 @@
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" %}
34
+
35
+ {% else %}
36
+
37
+ {% assign env = page.env %}
38
+
39
+ {% endif %}
33
40
 
34
41
  <h2 class="ft__sitemap--header">COMPANY INFORMATION</h2>
35
42
 
@@ -37,7 +44,7 @@
37
44
 
38
45
  {% for item in site.data.menu.navigation %}
39
46
 
40
- {% if item.env == page.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>
@@ -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="32%" cy="2%" >
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,7 +60,7 @@ 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="32%" cy="2%" r=".5" />
63
+ <circle class="svg__augment--led" cx="33%" cy="2%" r=".5" />
64
64
 
65
65
  </svg>
66
66
 
@@ -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="32%" cy="2%" >
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,7 +72,7 @@ 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="32%" cy="2%" r=".5" />
75
+ <circle class="svg__augment--led" cx="33%" cy="2%" r=".5" />
76
76
 
77
77
  </svg>
78
78
 
@@ -81,9 +81,10 @@
81
81
  .sub-link,
82
82
  .subsub-link
83
83
  color: $env-primary
84
- border-bottom: solid 1px $pure-white
84
+
85
85
  span
86
86
  padding: 1rem 0
87
+ border-bottom: solid 1px rgba($pure-white, 0)
87
88
 
88
89
  .nav-cta
89
90
  @include default-trans
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: 50vw
26
+ max-width: 90vw
27
27
  text-transform: uppercase
28
28
  //bottom: -10px
29
29
  border: solid 1px $white
@@ -62,7 +62,7 @@
62
62
 
63
63
  .image--south
64
64
  object-position: bottom
65
-
65
+
66
66
  .post__link
67
67
  color: $opd-blue
68
68
  text-decoration: none
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.5
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-02-21 00:00:00.000000000 Z
11
+ date: 2021-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll