slow-steps 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15001df5eef14e7d413dc8f9dffe536ecb0bb5777d4eeff64644b618dd430500
4
- data.tar.gz: e77052432ee0d06a9ee9ab75af599c7d42484c34f9bf9ddc2f5d35094f222d6d
3
+ metadata.gz: e9a95b4b4dd8828879fc02993396b89d73f860150fc517f6eb107e0ec53d8bf4
4
+ data.tar.gz: b31c9f0c5bb63b9786917d63cc6b905c0e5d34ed3b93d86b204f1ee10eeb74a9
5
5
  SHA512:
6
- metadata.gz: fc2c29cde1a9543a90774cd2da6d31eeee04ab7c45f675c52b3db4bf7bc3e9d65d4eb18cfdfc43eabb19d138e5f4c7acffd2eb7b7291f4b5da80cc68652736f9
7
- data.tar.gz: 348f5178833005714df55d823d9b4d25c440332382ca585d57dc947d9b24bc266d9ca46386c642963abb930db04e489f1c5449983557d806f0e898b8fa01ea0a
6
+ metadata.gz: 4d221bdd2f95a1e850aebcfbbca361e801eeb5b633488647875ffb1ed35b55a7fa8ad7485fe66a450a3f7b330ba64b1dd5597947abab1dc2ea23765f4f709d6c
7
+ data.tar.gz: 7b95604276b53832b699b118e20aef8265ca9680e559e81da82772573c8505be1513c4d7e23d67de5d8c88b83a8ac7618e41ff19b86e28c2d968fa3a7191d48c
@@ -33,6 +33,7 @@
33
33
 
34
34
  <div class="nav-group-content {{ item.env }}-group">
35
35
  {% for sub in item.submenu %}
36
+ <div class="nav-group-container">
36
37
  <a
37
38
  class="
38
39
  nav-link
@@ -42,9 +43,20 @@
42
43
  {% endif %}" href="{{ sub.url | relative_url }}">
43
44
  <span>{{ sub.name }}</span></a>
44
45
 
46
+ {% if sub.subsubmenu %}
47
+ <div class="nav-subsub-content ">
48
+ {% for subsub in sub.subsubmenu %}
49
+ <a class="nav-link subsub-link" href="{{ subsub.url | relative_url }}">
50
+ <span>{{ subsub.name }}</span></a>
51
+
52
+ {% endfor %}
53
+ </div>
54
+ {% endif %}
55
+
56
+ </div>
45
57
  {% endfor %}
46
- </div>
47
58
 
59
+ </div>
48
60
  </li>
49
61
  {% endfor %}
50
62
 
@@ -63,7 +63,7 @@ Last full read through 29/12/2020
63
63
  {% endfor %}
64
64
  </div>
65
65
 
66
- <div class="team__members">
66
+ <div class="team__members" id="gaitq-team">
67
67
 
68
68
  {% for member in site.data.team.members %}
69
69
 
@@ -61,6 +61,7 @@ $brand-height: 55%
61
61
  opacity: 1
62
62
  margin: 0
63
63
  overflow: hidden
64
+ position: relative
64
65
 
65
66
  // Surround current link with lines
66
67
 
@@ -98,3 +99,44 @@ $brand-height: 55%
98
99
 
99
100
  .burger
100
101
  display: none
102
+
103
+ .nav-subsub-content
104
+ background-color: $pure-white
105
+ box-shadow: 1px 1px 1px rgba(0, 0, 0, .1)
106
+ visibility: hidden
107
+ opacity: 0
108
+ border-radius: 6px
109
+ z-index: 1
110
+ position: absolute
111
+ padding: 1rem 0
112
+ margin-left: 3rem
113
+ transform: translateY(10px)
114
+ .subsub-link
115
+ &:hover
116
+ background: $white
117
+
118
+ &:before
119
+ background: inherit
120
+ content: ""
121
+ display: block
122
+ height: 16px
123
+ width: 16px
124
+ left: 5px
125
+ position: absolute
126
+ bottom: 100%
127
+ border-radius: 2px
128
+ transform: rotate(-45deg) translateY(14px)
129
+ z-index: -1
130
+
131
+ .nav-group-container:hover > .nav-subsub-content
132
+ visibility: visible
133
+ opacity: 1
134
+ transform: translateY(0px)
135
+ transition: opacity .1s ease-in, transform .2s ease-in
136
+
137
+ .nav-subsub-content .sub-link
138
+ transition: background-color .1s ease-in
139
+
140
+ .nav-subsub-content .sub-link:hover
141
+ background-color: $white
142
+ transition: background-color .1s ease-in
@@ -25,12 +25,14 @@
25
25
  left: 0
26
26
  flex-direction: row
27
27
 
28
- .nav-group-content
28
+ .nav-group-container
29
+
29
30
 
30
31
  .nav-link
31
32
  font-weight: 400
32
33
  color: $env-primary
33
34
  text-transform: uppercase
34
- padding: 0 3rem
35
- &:hover
36
- text-decoration: underline
35
+ padding: 1rem 3rem
36
+ &:not(.current--url)
37
+ &:hover
38
+ text-decoration: underline
@@ -21,13 +21,14 @@
21
21
  left: 0
22
22
  flex-direction: row
23
23
 
24
- .nav-group-content
24
+ .nav-group-container
25
25
 
26
26
 
27
27
  .nav-link
28
28
  font-weight: 400
29
+ color: $env-primary
29
30
  text-transform: uppercase
30
- padding: 0 3rem
31
+ padding: 1rem 3rem
31
32
  &:not(.current--url)
32
33
  &:hover
33
34
  text-decoration: underline
@@ -34,3 +34,5 @@ $baseurl: '{{ site.baseurl }}/'
34
34
  @import 'forms/mc-forms'
35
35
 
36
36
  @import 'contact'
37
+
38
+ @import 'faq'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slow-steps
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Made Slowly