betterplace-content 0.7.75 → 0.7.81
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/help.html +2 -2
- data/_layouts/news.html +2 -2
- data/_sass/generics/team_list.scss +28 -29
- data/_sass/generics/team_list_interlaced.scss +281 -0
- data/_sass/pages/team.sass +21 -86
- data/assets/css/default.sass +1 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e9a7f91af341164761bb5e1119cf83cab01c7ab9df2fe95faa9518aafce2e52
|
4
|
+
data.tar.gz: 0fd6427f76f8fe0f3f426adb6e8c860d285183352c4d64462ed6378b8cf30c12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e9d663f2477633929cb4a5efff285f37bdd6944daeea57882eb977071661adaeade6762cec36e6d3a054355578dafeb3cfd1db9e3b4626d8bc1c4aff4c5f500
|
7
|
+
data.tar.gz: 606c616387727185ff90749d143a62fbf9675540fd839ed91faf6e97543d896e62a914559e2343af460fbf4bd1c88462134ed3ed46ead5def00815b6adbbd16e
|
data/_layouts/help.html
CHANGED
@@ -18,12 +18,12 @@ layout: default
|
|
18
18
|
{% if page.author %}
|
19
19
|
<div class="help-meta-information mb-4">
|
20
20
|
<div class="help-author">
|
21
|
-
<i class="
|
21
|
+
<i class="fas fa-user fa-fw"></i>
|
22
22
|
{{ page.author }}
|
23
23
|
</div>
|
24
24
|
|
25
25
|
<div class="help-date">
|
26
|
-
<i class="
|
26
|
+
<i class="fas fa-clock fa-fw"></i>
|
27
27
|
{{ page.date | date:"%d.%m.%Y" }}
|
28
28
|
</div>
|
29
29
|
</div>
|
data/_layouts/news.html
CHANGED
@@ -22,12 +22,12 @@ layout: default
|
|
22
22
|
{% if page.author %}
|
23
23
|
<div class="news-meta-information mb-4">
|
24
24
|
<div class="news-author">
|
25
|
-
<i class="
|
25
|
+
<i class="fas fa-user fa-fw"></i>
|
26
26
|
{{ page.author }}
|
27
27
|
</div>
|
28
28
|
|
29
29
|
<div class="news-date">
|
30
|
-
<i class="
|
30
|
+
<i class="fas fa-clock fa-fw"></i>
|
31
31
|
{{ page.date | date:"%d.%m.%Y" }}
|
32
32
|
</div>
|
33
33
|
</div>
|
@@ -1,8 +1,8 @@
|
|
1
1
|
.generic-team-list {
|
2
|
-
font-size: 0;
|
3
2
|
padding: 0;
|
4
3
|
margin-left: 0;
|
5
4
|
margin-right: 0;
|
5
|
+
list-style: none;
|
6
6
|
display: flex;
|
7
7
|
flex-wrap: wrap;
|
8
8
|
|
@@ -10,9 +10,7 @@
|
|
10
10
|
position: relative;
|
11
11
|
z-index: 10;
|
12
12
|
display: block;
|
13
|
-
vertical-align: top;
|
14
13
|
font-size: 14px;
|
15
|
-
font-size: 0;
|
16
14
|
|
17
15
|
@include desktop {
|
18
16
|
width: 20%;
|
@@ -23,21 +21,15 @@
|
|
23
21
|
|
24
22
|
.user-image {
|
25
23
|
display: block;
|
26
|
-
vertical-align: top;
|
27
24
|
cursor: pointer;
|
28
25
|
|
29
|
-
.generic-admin-box {
|
30
|
-
font-size: 12px;
|
31
|
-
position: absolute;
|
32
|
-
top: 0;
|
33
|
-
left: 0;
|
34
|
-
}
|
35
26
|
img {
|
36
|
-
image-rendering:-webkit-optimize-contrast;
|
37
27
|
cursor: default;
|
38
28
|
}
|
39
29
|
|
40
|
-
&:hover
|
30
|
+
&:hover + .name-and-meta {
|
31
|
+
display: block;
|
32
|
+
}
|
41
33
|
}
|
42
34
|
|
43
35
|
.name-and-meta {
|
@@ -47,13 +39,17 @@
|
|
47
39
|
width: 100%;
|
48
40
|
text-align: center;
|
49
41
|
background: white;
|
50
|
-
background: rgba(255,255,255,0.9);
|
42
|
+
background: rgba(255, 255, 255, 0.9);
|
51
43
|
display: none;
|
52
44
|
padding: 10px;
|
53
|
-
box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
|
54
|
-
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
|
55
|
-
&
|
56
|
-
|
45
|
+
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
46
|
+
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
47
|
+
& {
|
48
|
+
display: none;
|
49
|
+
}
|
50
|
+
&:hover {
|
51
|
+
display: block;
|
52
|
+
}
|
57
53
|
|
58
54
|
p {
|
59
55
|
color: $dark-grey;
|
@@ -73,8 +69,9 @@
|
|
73
69
|
height: 0;
|
74
70
|
border-style: solid;
|
75
71
|
border-width: 0 10px 10px 10px;
|
76
|
-
border-color: transparent transparent white
|
77
|
-
border-color: transparent transparent rgba(255,255,255,0.9)
|
72
|
+
border-color: transparent transparent white transparent;
|
73
|
+
border-color: transparent transparent rgba(255, 255, 255, 0.9)
|
74
|
+
transparent;
|
78
75
|
}
|
79
76
|
}
|
80
77
|
|
@@ -93,12 +90,20 @@
|
|
93
90
|
}
|
94
91
|
|
95
92
|
&.has-speech-bubble {
|
96
|
-
@include desktop {
|
97
|
-
|
93
|
+
@include desktop {
|
94
|
+
width: 40%;
|
95
|
+
}
|
96
|
+
@include phone {
|
97
|
+
width: 100%;
|
98
|
+
}
|
98
99
|
.user-image {
|
99
100
|
float: left;
|
100
|
-
@include desktop {
|
101
|
-
|
101
|
+
@include desktop {
|
102
|
+
width: 50%;
|
103
|
+
}
|
104
|
+
@include phone {
|
105
|
+
width: 50%;
|
106
|
+
}
|
102
107
|
}
|
103
108
|
.name-and-meta {
|
104
109
|
width: 50%;
|
@@ -111,7 +116,6 @@
|
|
111
116
|
position: relative;
|
112
117
|
display: block;
|
113
118
|
width: 50%;
|
114
|
-
vertical-align: top;
|
115
119
|
font-weight: normal;
|
116
120
|
font-size: 14px;
|
117
121
|
float: left;
|
@@ -124,11 +128,6 @@
|
|
124
128
|
padding: 10px 10px 0px 10px;
|
125
129
|
}
|
126
130
|
|
127
|
-
table {
|
128
|
-
height: 100%;
|
129
|
-
min-height: 135px;
|
130
|
-
}
|
131
|
-
|
132
131
|
&:before {
|
133
132
|
content: '';
|
134
133
|
position: absolute;
|
@@ -0,0 +1,281 @@
|
|
1
|
+
.generic-team-list-interlaced {
|
2
|
+
@mixin phone-ext {
|
3
|
+
@include phone {
|
4
|
+
@content(2, 2%);
|
5
|
+
}
|
6
|
+
}
|
7
|
+
|
8
|
+
@mixin desktop-ext {
|
9
|
+
@include desktop {
|
10
|
+
@content(5, 1%);
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
@include phone-ext using ($columns, $gutter) {
|
15
|
+
margin: 0 $gutter/-2;
|
16
|
+
}
|
17
|
+
@include desktop-ext using ($columns, $gutter) {
|
18
|
+
margin: 0 $gutter/-2;
|
19
|
+
}
|
20
|
+
|
21
|
+
padding: 0;
|
22
|
+
list-style: none;
|
23
|
+
display: flex;
|
24
|
+
flex-wrap: wrap;
|
25
|
+
|
26
|
+
@include phone {
|
27
|
+
font-size: 4.25vw;
|
28
|
+
}
|
29
|
+
|
30
|
+
li {
|
31
|
+
$tile-aspect-ratio: percentage(600/365);
|
32
|
+
position: relative;
|
33
|
+
display: block;
|
34
|
+
z-index: 10;
|
35
|
+
|
36
|
+
@include desktop-ext using ($columns, $gutter) {
|
37
|
+
$column-width: 100%/$columns;
|
38
|
+
$gutter-per-column: percentage($gutter/($column-width - $gutter));
|
39
|
+
width: $column-width;
|
40
|
+
padding: $gutter/2;
|
41
|
+
|
42
|
+
&:nth-child(5n+1) .tile,
|
43
|
+
&:nth-child(5n+3) .tile,
|
44
|
+
&:nth-child(5n) .tile {
|
45
|
+
margin-top: -0.5 * ($tile-aspect-ratio + $gutter-per-column);
|
46
|
+
.speech-bubble {
|
47
|
+
top: 50%;
|
48
|
+
bottom: auto;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
&.halfling {
|
53
|
+
.tile {
|
54
|
+
padding-top: 0.5 * ($tile-aspect-ratio - $gutter-per-column);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
.speech-bubble {
|
59
|
+
margin: $gutter-per-column/2 $gutter-per-column;
|
60
|
+
min-height: 50% + percentage($gutter-per-column / $tile-aspect-ratio / 2);
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
@include phone-ext using ($columns, $gutter) {
|
65
|
+
$column-width: 100%/$columns;
|
66
|
+
$gutter-per-column: percentage($gutter/($column-width - $gutter));
|
67
|
+
width: $column-width;
|
68
|
+
padding: $gutter/2;
|
69
|
+
|
70
|
+
&.spacer:nth-child(-n+5),
|
71
|
+
&.spacer:nth-last-child(-n+9) {
|
72
|
+
display: none;
|
73
|
+
}
|
74
|
+
|
75
|
+
&.spacer.halfling:nth-child(-n+2),
|
76
|
+
&.spacer.halfling:nth-last-child(-n+2) {
|
77
|
+
display: block;
|
78
|
+
}
|
79
|
+
|
80
|
+
&:nth-child(2n+1) .tile {
|
81
|
+
margin-top: -0.5 * ($tile-aspect-ratio + $gutter-per-column);
|
82
|
+
.speech-bubble {
|
83
|
+
top: 50%;
|
84
|
+
bottom: auto;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
&:nth-child(n+14) {
|
89
|
+
display: none;
|
90
|
+
}
|
91
|
+
|
92
|
+
&:target, &:target ~ li {
|
93
|
+
display: block;
|
94
|
+
}
|
95
|
+
|
96
|
+
&.halfling {
|
97
|
+
article {
|
98
|
+
padding-top: 0.5 * ($tile-aspect-ratio - $gutter-per-column);
|
99
|
+
}
|
100
|
+
}
|
101
|
+
|
102
|
+
.speech-bubble {
|
103
|
+
margin: $gutter-per-column/2 $gutter-per-column;
|
104
|
+
min-height: 50% + percentage($gutter-per-column / $tile-aspect-ratio / 2);
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
&.spacer {
|
109
|
+
z-index: 0;
|
110
|
+
}
|
111
|
+
|
112
|
+
&:nth-child(30n+1) .tile,
|
113
|
+
&:nth-child(30n+7) .tile,
|
114
|
+
&:nth-child(30n+14) .tile,
|
115
|
+
&:nth-child(30n+16) .tile,
|
116
|
+
&:nth-child(30n+22) .tile,
|
117
|
+
&:nth-child(30n+29) .tile {
|
118
|
+
background: #60b2a4;
|
119
|
+
}
|
120
|
+
&:nth-child(30n+2) .tile,
|
121
|
+
&:nth-child(30n+9) .tile,
|
122
|
+
&:nth-child(30n+11) .tile,
|
123
|
+
&:nth-child(30n+17) .tile,
|
124
|
+
&:nth-child(30n+24) .tile,
|
125
|
+
&:nth-child(30n+26) .tile {
|
126
|
+
background: #ff6f6c;
|
127
|
+
}
|
128
|
+
&:nth-child(30n+3) .tile,
|
129
|
+
&:nth-child(30n+10) .tile,
|
130
|
+
&:nth-child(30n+13) .tile,
|
131
|
+
&:nth-child(30n+20) .tile,
|
132
|
+
&:nth-child(30n+23) .tile,
|
133
|
+
&:nth-child(30n+30) .tile {
|
134
|
+
background: #f5cd47;
|
135
|
+
}
|
136
|
+
&:nth-child(30n+4) .tile,
|
137
|
+
&:nth-child(30n+6) .tile,
|
138
|
+
&:nth-child(30n+12) .tile,
|
139
|
+
&:nth-child(30n+19) .tile,
|
140
|
+
&:nth-child(30n+21) .tile,
|
141
|
+
&:nth-child(30n+27) .tile {
|
142
|
+
background: #2B8475;
|
143
|
+
}
|
144
|
+
&:nth-child(30n+5) .tile,
|
145
|
+
&:nth-child(30n+8) .tile,
|
146
|
+
&:nth-child(30n+15) .tile,
|
147
|
+
&:nth-child(30n+18) .tile,
|
148
|
+
&:nth-child(30n+25) .tile,
|
149
|
+
&:nth-child(30n+28) .tile {
|
150
|
+
background: #6d2c64;
|
151
|
+
}
|
152
|
+
|
153
|
+
.tile {
|
154
|
+
position: relative;
|
155
|
+
width: 100%;
|
156
|
+
padding-top: $tile-aspect-ratio; // See https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_aspect_ratio_169
|
157
|
+
}
|
158
|
+
|
159
|
+
.filler {
|
160
|
+
position: absolute;
|
161
|
+
top: 0;
|
162
|
+
left: 0;
|
163
|
+
bottom: 0;
|
164
|
+
right: 0;
|
165
|
+
}
|
166
|
+
|
167
|
+
.user-image {
|
168
|
+
display: block;
|
169
|
+
cursor: pointer;
|
170
|
+
|
171
|
+
img {
|
172
|
+
cursor: default;
|
173
|
+
}
|
174
|
+
|
175
|
+
&:hover + .name-and-meta {
|
176
|
+
display: block;
|
177
|
+
}
|
178
|
+
}
|
179
|
+
|
180
|
+
.name-and-meta {
|
181
|
+
hyphens: auto;
|
182
|
+
-webkit-hyphens: auto;
|
183
|
+
position: absolute;
|
184
|
+
bottom: 0;
|
185
|
+
left: 0;
|
186
|
+
width: 100%;
|
187
|
+
text-align: center;
|
188
|
+
background: rgba(255, 255, 255, 0.9);
|
189
|
+
padding: .5em;
|
190
|
+
opacity: 0;
|
191
|
+
transition: opacity 0.3s;
|
192
|
+
|
193
|
+
.name {
|
194
|
+
margin: 0.5em 0 0.25em;
|
195
|
+
}
|
196
|
+
|
197
|
+
.description {
|
198
|
+
margin: 0.25em 0 0.5em;
|
199
|
+
}
|
200
|
+
|
201
|
+
.info {
|
202
|
+
margin: 1.25em 0 0.5em;
|
203
|
+
|
204
|
+
p {
|
205
|
+
margin: 0;
|
206
|
+
}
|
207
|
+
}
|
208
|
+
|
209
|
+
.description, .info {
|
210
|
+
color: $dark-grey;
|
211
|
+
font-weight: 300;
|
212
|
+
font-size: 0.875em;
|
213
|
+
line-height: 1.25;
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
&:hover .name-and-meta {
|
218
|
+
opacity: 1;
|
219
|
+
}
|
220
|
+
|
221
|
+
img {
|
222
|
+
width: 100%;
|
223
|
+
height: auto;
|
224
|
+
display: block;
|
225
|
+
}
|
226
|
+
|
227
|
+
.speech-bubble {
|
228
|
+
hyphens: auto;
|
229
|
+
-webkit-hyphens: auto;
|
230
|
+
position: absolute;
|
231
|
+
left: 100%;
|
232
|
+
top: auto;
|
233
|
+
bottom: 50%;
|
234
|
+
display: block;
|
235
|
+
width: 100%;
|
236
|
+
font-weight: normal;
|
237
|
+
background-color: white;
|
238
|
+
padding: 0.5em;
|
239
|
+
|
240
|
+
&:before {
|
241
|
+
content: '';
|
242
|
+
position: absolute;
|
243
|
+
left: -2em;
|
244
|
+
width: 0;
|
245
|
+
height: 0;
|
246
|
+
border-style: solid;
|
247
|
+
border-width: 1em 2em 1em 0;
|
248
|
+
border-color: transparent white transparent transparent;
|
249
|
+
top: 50%;
|
250
|
+
margin-top: -1em;
|
251
|
+
}
|
252
|
+
|
253
|
+
h2 {
|
254
|
+
font-weight: 300;
|
255
|
+
margin-top: 0;
|
256
|
+
font-size: 1em;
|
257
|
+
line-height: 1.5;
|
258
|
+
}
|
259
|
+
p {
|
260
|
+
font-weight: 300;
|
261
|
+
margin-bottom: 0;
|
262
|
+
font-size: 0.66667em;
|
263
|
+
line-height: 1.25;
|
264
|
+
a {
|
265
|
+
font-weight: 300;
|
266
|
+
color: inherit;
|
267
|
+
}
|
268
|
+
}
|
269
|
+
}
|
270
|
+
}
|
271
|
+
|
272
|
+
// Additional text styles
|
273
|
+
.claim {
|
274
|
+
padding: .5em;
|
275
|
+
margin: 0;
|
276
|
+
color: rgba(255, 255, 255, 0.9);
|
277
|
+
font-weight: bold;
|
278
|
+
font-size: 1.5em;
|
279
|
+
text-align: center;
|
280
|
+
}
|
281
|
+
}
|
data/_sass/pages/team.sass
CHANGED
@@ -1,63 +1,15 @@
|
|
1
1
|
body.team
|
2
|
-
.generic-content-header
|
3
|
-
+phone
|
4
|
-
display: none
|
5
|
-
+desktop
|
6
|
-
height: 560px
|
7
|
-
z-index: 0
|
8
|
-
background: url('#{$site_baseurl}/assets/theme_images/team/generic-content-header_desktop.jpg') no-repeat 50% 50% $very-light-grey
|
9
|
-
size: cover
|
10
|
-
|
11
|
-
&:before
|
12
|
-
display: none
|
13
|
-
|
14
|
-
h1
|
15
|
-
position: relative
|
16
|
-
+desktop
|
17
|
-
margin-bottom: 10px
|
18
|
-
+phone
|
19
|
-
margin-top: 30px
|
20
|
-
|
21
|
-
h1,
|
22
|
-
.unit-descriptions,
|
23
|
-
.unit-descriptions p
|
24
|
-
+desktop
|
25
|
-
text-shadow: 1px 1px 0 #444
|
26
|
-
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5)
|
27
|
-
color: white
|
28
|
-
|
29
|
-
.content-wrapper
|
30
|
-
padding-bottom: 80px
|
31
|
-
+desktop
|
32
|
-
padding-top: 40px
|
33
|
-
|
34
|
-
.content-wrapper > .container
|
35
|
-
+desktop
|
36
|
-
margin-top: -422px
|
37
|
-
|
38
|
-
.tax-receipt-hint .container
|
39
|
-
+desktop
|
40
|
-
margin-top: 0
|
41
2
|
|
42
3
|
.unit-select
|
43
|
-
padding:
|
44
|
-
|
45
|
-
|
4
|
+
padding: 0.5rem 0
|
5
|
+
display: flex
|
6
|
+
position: relative
|
7
|
+
z-index: 10 // Stay on top of targetable sheet’s padding.
|
46
8
|
|
47
9
|
a
|
48
|
-
|
49
|
-
|
10
|
+
display: block
|
11
|
+
padding: 0.25rem 0.75rem
|
50
12
|
border-right: 1px solid #4c4b4a
|
51
|
-
color: $medium-green
|
52
|
-
font-weight: normal
|
53
|
-
font-size: 16px
|
54
|
-
margin-right: 12px
|
55
|
-
+desktop
|
56
|
-
text-shadow: 1px 1px 0 #444
|
57
|
-
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5)
|
58
|
-
|
59
|
-
+phone
|
60
|
-
margin-bottom: 5px
|
61
13
|
|
62
14
|
&:first-child
|
63
15
|
padding-left: 0
|
@@ -65,38 +17,21 @@ body.team
|
|
65
17
|
&:last-child
|
66
18
|
border-right-width: 0
|
67
19
|
|
68
|
-
&.active
|
69
|
-
+desktop
|
70
|
-
color: white
|
71
|
-
|
72
|
-
&:hover
|
73
|
-
text-decoration: none
|
74
|
-
|
75
|
-
+phone
|
76
|
-
text-decoration: underline
|
77
|
-
|
78
20
|
.unit-descriptions
|
79
|
-
font-size:
|
80
|
-
line-height:
|
81
|
-
padding: 0 20px 17px 0px
|
21
|
+
font-size: 0.875rem
|
22
|
+
line-height: 1.5
|
82
23
|
font-weight: 300
|
83
|
-
p
|
84
|
-
margin-bottom: 0
|
85
|
-
|
86
|
-
a
|
87
|
-
color: $medium-green
|
88
|
-
white-space: nowrap
|
89
|
-
|
90
|
-
.jobs-row
|
91
|
-
text-align: center
|
92
|
-
+desktop
|
93
|
-
margin-top: 74px
|
94
|
-
+phone
|
95
|
-
margin-top: 50px
|
96
|
-
|
97
|
-
h2
|
98
|
-
margin-bottom: 25px
|
99
24
|
|
100
|
-
|
101
|
-
|
102
|
-
|
25
|
+
section.targetable
|
26
|
+
padding-top: 3rem // Have some space between target anchor an content.
|
27
|
+
margin-top: -3rem // Reset position.
|
28
|
+
// Hide not targeted section.
|
29
|
+
height: 0
|
30
|
+
overflow: hidden
|
31
|
+
opacity: 0
|
32
|
+
transition: opacity 0.3s ease
|
33
|
+
|
34
|
+
&:target
|
35
|
+
height: auto
|
36
|
+
overflow: initial
|
37
|
+
opacity: 1
|
data/assets/css/default.sass
CHANGED
@@ -16,6 +16,7 @@ $site_baseurl: "{{ site.baseurl }}"
|
|
16
16
|
@import generics/search-form
|
17
17
|
@import generics/sidebar-menu
|
18
18
|
@import generics/team_list
|
19
|
+
@import generics/team_list_interlaced
|
19
20
|
@import generics/topicblock
|
20
21
|
@import generics/hero_image
|
21
22
|
@import generics/hero_search
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: betterplace-content
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.81
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- betterplace.org Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -134,6 +134,7 @@ files:
|
|
134
134
|
- _sass/generics/search-form.scss
|
135
135
|
- _sass/generics/sidebar-menu.scss
|
136
136
|
- _sass/generics/team_list.scss
|
137
|
+
- _sass/generics/team_list_interlaced.scss
|
137
138
|
- _sass/generics/topicblock.sass
|
138
139
|
- _sass/initialize/colors.sass
|
139
140
|
- _sass/initialize/media_queries.sass
|
@@ -217,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
217
218
|
- !ruby/object:Gem::Version
|
218
219
|
version: '0'
|
219
220
|
requirements: []
|
220
|
-
rubygems_version: 3.
|
221
|
+
rubygems_version: 3.1.4
|
221
222
|
signing_key:
|
222
223
|
specification_version: 4
|
223
224
|
summary: betterplace.org's Jekyll Content Theme
|