harms-columns-front-page 2.0.3 → 2.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/_includes/custom-colors.html +4 -0
- data/_includes/footer.html +2 -2
- data/_sass/_base.sass +5 -0
- data/_sass/_headings.sass +2 -0
- data/_sass/_normalize.sass +365 -0
- data/_sass/_special-format.sass +6 -0
- data/assets/css/main.sass +1 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e9c64925cab7d754cb4024621432cdbd14e5cdb
|
4
|
+
data.tar.gz: 5e0c09648e48261d1b01b59ecac17829f9293e46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd7574c90672f6ea250a3b63c8da0a7cdb45d4afc1a3a92b5ad47caf7c8a1cc96a183d18617c708b78d5f2984fed7e5073b2a9f564cde6c62611ea551d08902b
|
7
|
+
data.tar.gz: 459307aa7fa5e5de4b64324951ec508b9fdf8bfc3f8a5d34eefb0fbacc130279dac6dfe25d4eb6178bec97dc1b544227481952fca76c903f5c6f2723763de45f
|
data/README.md
CHANGED
@@ -100,7 +100,7 @@ gem "harms-columns-front-page"
|
|
100
100
|
theme: harms-columns-front-page
|
101
101
|
```
|
102
102
|
|
103
|
-
**Step 4:** Then find the section that starts with `
|
103
|
+
**Step 4:** Then find the section that starts with `gems:` and add the following entries to the list:
|
104
104
|
|
105
105
|
```yaml
|
106
106
|
gems:
|
@@ -518,7 +518,7 @@ category: Events
|
|
518
518
|
|
519
519
|
#### _Tags_
|
520
520
|
|
521
|
-
You can specify tags for posts as something like subcategories. They can be used to filter posts of the same category in a post list.
|
521
|
+
You can specify tags for posts as something like subcategories. They can be used to filter posts of the same category in a post list. Please note that a tag can only consist of one single word.
|
522
522
|
|
523
523
|
```yaml
|
524
524
|
tags: Tournament
|
data/_includes/footer.html
CHANGED
@@ -7,8 +7,8 @@
|
|
7
7
|
<!-- Goes through every entry in the social var in site and displays a link for it. If there's an icon specified, then it's used instead of the title -->
|
8
8
|
{% for item in site.social %}
|
9
9
|
{% if item.icon %}
|
10
|
-
<a href="{{ item.url }}" target="_blank"><img class="social-icon" src="{{ item.icon }}"></a>
|
11
|
-
|
10
|
+
<a href="{{ item.url }}" target="_blank"><img class="social-icon" src="{{ item.icon }}"></a>
|
11
|
+
{% else %}
|
12
12
|
<a class="button light" href="{{ item.url }}" target="_blank">{{ item.title }}</a>
|
13
13
|
{% endif %}
|
14
14
|
{% endfor %}
|
data/_sass/_base.sass
CHANGED
data/_sass/_headings.sass
CHANGED
@@ -0,0 +1,365 @@
|
|
1
|
+
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css
|
2
|
+
|
3
|
+
/* Document
|
4
|
+
* ==========================================================================
|
5
|
+
|
6
|
+
/**
|
7
|
+
* 1. Correct the line height in all browsers.
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in
|
9
|
+
* IE on Windows Phone and in iOS.
|
10
|
+
|
11
|
+
html
|
12
|
+
line-height: 1.15
|
13
|
+
/* 1
|
14
|
+
-ms-text-size-adjust: 100%
|
15
|
+
/* 2
|
16
|
+
-webkit-text-size-adjust: 100%
|
17
|
+
/* 2
|
18
|
+
|
19
|
+
/* Sections
|
20
|
+
* ==========================================================================
|
21
|
+
|
22
|
+
/**
|
23
|
+
* Remove the margin in all browsers (opinionated).
|
24
|
+
|
25
|
+
body
|
26
|
+
margin: 0
|
27
|
+
|
28
|
+
/**
|
29
|
+
* Add the correct display in IE 9-.
|
30
|
+
|
31
|
+
article, aside, footer, header, nav, section
|
32
|
+
display: block
|
33
|
+
|
34
|
+
/**
|
35
|
+
* Correct the font size and margin on `h1` elements within `section` and
|
36
|
+
* `article` contexts in Chrome, Firefox, and Safari.
|
37
|
+
|
38
|
+
h1
|
39
|
+
font-size: 2em
|
40
|
+
margin: 0.67em 0
|
41
|
+
|
42
|
+
/* Grouping content
|
43
|
+
* ==========================================================================
|
44
|
+
|
45
|
+
/**
|
46
|
+
* Add the correct display in IE 9-.
|
47
|
+
* 1. Add the correct display in IE.
|
48
|
+
|
49
|
+
figcaption, figure, main
|
50
|
+
/* 1
|
51
|
+
display: block
|
52
|
+
|
53
|
+
/**
|
54
|
+
* Add the correct margin in IE 8.
|
55
|
+
|
56
|
+
figure
|
57
|
+
margin: 1em 40px
|
58
|
+
|
59
|
+
/**
|
60
|
+
* 1. Add the correct box sizing in Firefox.
|
61
|
+
* 2. Show the overflow in Edge and IE.
|
62
|
+
|
63
|
+
hr
|
64
|
+
box-sizing: content-box
|
65
|
+
/* 1
|
66
|
+
height: 0
|
67
|
+
/* 1
|
68
|
+
overflow: visible
|
69
|
+
/* 2
|
70
|
+
|
71
|
+
/**
|
72
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
73
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
74
|
+
|
75
|
+
pre
|
76
|
+
font-family: monospace, monospace
|
77
|
+
/* 1
|
78
|
+
font-size: 1em
|
79
|
+
/* 2
|
80
|
+
|
81
|
+
/* Text-level semantics
|
82
|
+
* ==========================================================================
|
83
|
+
|
84
|
+
/**
|
85
|
+
* 1. Remove the gray background on active links in IE 10.
|
86
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
87
|
+
|
88
|
+
a
|
89
|
+
background-color: transparent
|
90
|
+
/* 1
|
91
|
+
-webkit-text-decoration-skip: objects
|
92
|
+
/* 2
|
93
|
+
|
94
|
+
/**
|
95
|
+
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
|
96
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
97
|
+
|
98
|
+
abbr[title]
|
99
|
+
border-bottom: none
|
100
|
+
/* 1
|
101
|
+
text-decoration: underline
|
102
|
+
/* 2
|
103
|
+
text-decoration: underline dotted
|
104
|
+
/* 2
|
105
|
+
|
106
|
+
/**
|
107
|
+
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
108
|
+
|
109
|
+
b, strong
|
110
|
+
font-weight: inherit
|
111
|
+
|
112
|
+
/**
|
113
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
114
|
+
|
115
|
+
b, strong
|
116
|
+
font-weight: bolder
|
117
|
+
|
118
|
+
/**
|
119
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
120
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
121
|
+
|
122
|
+
code, kbd, samp
|
123
|
+
font-family: monospace, monospace
|
124
|
+
/* 1
|
125
|
+
font-size: 1em
|
126
|
+
/* 2
|
127
|
+
|
128
|
+
/**
|
129
|
+
* Add the correct font style in Android 4.3-.
|
130
|
+
|
131
|
+
dfn
|
132
|
+
font-style: italic
|
133
|
+
|
134
|
+
/**
|
135
|
+
* Add the correct background and color in IE 9-.
|
136
|
+
|
137
|
+
mark
|
138
|
+
background-color: #ff0
|
139
|
+
color: #000
|
140
|
+
|
141
|
+
/**
|
142
|
+
* Add the correct font size in all browsers.
|
143
|
+
|
144
|
+
small
|
145
|
+
font-size: 80%
|
146
|
+
|
147
|
+
/**
|
148
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
149
|
+
* all browsers.
|
150
|
+
|
151
|
+
sub, sup
|
152
|
+
font-size: 75%
|
153
|
+
line-height: 0
|
154
|
+
position: relative
|
155
|
+
vertical-align: baseline
|
156
|
+
|
157
|
+
sub
|
158
|
+
bottom: -0.25em
|
159
|
+
|
160
|
+
sup
|
161
|
+
top: -0.5em
|
162
|
+
|
163
|
+
/* Embedded content
|
164
|
+
* ==========================================================================
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Add the correct display in IE 9-.
|
168
|
+
|
169
|
+
audio, video
|
170
|
+
display: inline-block
|
171
|
+
|
172
|
+
/**
|
173
|
+
* Add the correct display in iOS 4-7.
|
174
|
+
|
175
|
+
audio:not([controls])
|
176
|
+
display: none
|
177
|
+
height: 0
|
178
|
+
|
179
|
+
/**
|
180
|
+
* Remove the border on images inside links in IE 10-.
|
181
|
+
|
182
|
+
img
|
183
|
+
border-style: none
|
184
|
+
|
185
|
+
/**
|
186
|
+
* Hide the overflow in IE.
|
187
|
+
|
188
|
+
svg:not(:root)
|
189
|
+
overflow: hidden
|
190
|
+
|
191
|
+
/* Forms
|
192
|
+
* ==========================================================================
|
193
|
+
|
194
|
+
/**
|
195
|
+
* 1. Change the font styles in all browsers (opinionated).
|
196
|
+
* 2. Remove the margin in Firefox and Safari.
|
197
|
+
|
198
|
+
button, input, optgroup, select, textarea
|
199
|
+
font-family: sans-serif
|
200
|
+
/* 1
|
201
|
+
font-size: 100%
|
202
|
+
/* 1
|
203
|
+
line-height: 1.15
|
204
|
+
/* 1
|
205
|
+
margin: 0
|
206
|
+
/* 2
|
207
|
+
|
208
|
+
/**
|
209
|
+
* Show the overflow in IE.
|
210
|
+
* 1. Show the overflow in Edge.
|
211
|
+
|
212
|
+
button, input
|
213
|
+
/* 1
|
214
|
+
overflow: visible
|
215
|
+
|
216
|
+
/**
|
217
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
218
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
219
|
+
|
220
|
+
button, select
|
221
|
+
/* 1
|
222
|
+
text-transform: none
|
223
|
+
|
224
|
+
/**
|
225
|
+
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
|
226
|
+
* controls in Android 4.
|
227
|
+
* 2. Correct the inability to style clickable types in iOS and Safari.
|
228
|
+
|
229
|
+
button, html [type="button"], [type="reset"], [type="submit"]
|
230
|
+
-webkit-appearance: button
|
231
|
+
/* 2
|
232
|
+
|
233
|
+
/**
|
234
|
+
* Remove the inner border and padding in Firefox.
|
235
|
+
|
236
|
+
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner
|
237
|
+
border-style: none
|
238
|
+
padding: 0
|
239
|
+
|
240
|
+
/**
|
241
|
+
* Restore the focus styles unset by the previous rule.
|
242
|
+
|
243
|
+
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring
|
244
|
+
outline: 1px dotted ButtonText
|
245
|
+
|
246
|
+
/**
|
247
|
+
* Correct the padding in Firefox.
|
248
|
+
|
249
|
+
fieldset
|
250
|
+
padding: 0.35em 0.75em 0.625em
|
251
|
+
|
252
|
+
/**
|
253
|
+
* 1. Correct the text wrapping in Edge and IE.
|
254
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
255
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
256
|
+
* `fieldset` elements in all browsers.
|
257
|
+
|
258
|
+
legend
|
259
|
+
box-sizing: border-box
|
260
|
+
/* 1
|
261
|
+
color: inherit
|
262
|
+
/* 2
|
263
|
+
display: table
|
264
|
+
/* 1
|
265
|
+
max-width: 100%
|
266
|
+
/* 1
|
267
|
+
padding: 0
|
268
|
+
/* 3
|
269
|
+
white-space: normal
|
270
|
+
/* 1
|
271
|
+
|
272
|
+
/**
|
273
|
+
* 1. Add the correct display in IE 9-.
|
274
|
+
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
275
|
+
|
276
|
+
progress
|
277
|
+
display: inline-block
|
278
|
+
/* 1
|
279
|
+
vertical-align: baseline
|
280
|
+
/* 2
|
281
|
+
|
282
|
+
/**
|
283
|
+
* Remove the default vertical scrollbar in IE.
|
284
|
+
|
285
|
+
textarea
|
286
|
+
overflow: auto
|
287
|
+
|
288
|
+
/**
|
289
|
+
* 1. Add the correct box sizing in IE 10-.
|
290
|
+
* 2. Remove the padding in IE 10-.
|
291
|
+
|
292
|
+
[type="checkbox"], [type="radio"]
|
293
|
+
box-sizing: border-box
|
294
|
+
/* 1
|
295
|
+
padding: 0
|
296
|
+
/* 2
|
297
|
+
|
298
|
+
/**
|
299
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
300
|
+
|
301
|
+
[type="number"]
|
302
|
+
&::-webkit-inner-spin-button, &::-webkit-outer-spin-button
|
303
|
+
height: auto
|
304
|
+
|
305
|
+
/**
|
306
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
307
|
+
* 2. Correct the outline style in Safari.
|
308
|
+
|
309
|
+
[type="search"]
|
310
|
+
-webkit-appearance: textfield
|
311
|
+
/* 1
|
312
|
+
outline-offset: -2px
|
313
|
+
/* 2
|
314
|
+
&::-webkit-search-cancel-button, &::-webkit-search-decoration
|
315
|
+
-webkit-appearance: none
|
316
|
+
|
317
|
+
/**
|
318
|
+
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
319
|
+
|
320
|
+
/**
|
321
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
322
|
+
* 2. Change font properties to `inherit` in Safari.
|
323
|
+
|
324
|
+
\::-webkit-file-upload-button
|
325
|
+
-webkit-appearance: button
|
326
|
+
/* 1
|
327
|
+
font: inherit
|
328
|
+
/* 2
|
329
|
+
|
330
|
+
/* Interactive
|
331
|
+
* ==========================================================================
|
332
|
+
|
333
|
+
/*
|
334
|
+
* Add the correct display in IE 9-.
|
335
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
336
|
+
|
337
|
+
details, menu
|
338
|
+
display: block
|
339
|
+
|
340
|
+
/*
|
341
|
+
* Add the correct display in all browsers.
|
342
|
+
|
343
|
+
summary
|
344
|
+
display: list-item
|
345
|
+
|
346
|
+
/* Scripting
|
347
|
+
* ==========================================================================
|
348
|
+
|
349
|
+
/**
|
350
|
+
* Add the correct display in IE 9-.
|
351
|
+
|
352
|
+
canvas
|
353
|
+
display: inline-block
|
354
|
+
|
355
|
+
/**
|
356
|
+
* Add the correct display in IE.
|
357
|
+
|
358
|
+
template, [hidden]
|
359
|
+
display: none
|
360
|
+
|
361
|
+
/* Hidden
|
362
|
+
* ==========================================================================
|
363
|
+
|
364
|
+
/**
|
365
|
+
* Add the correct display in IE 10-.
|
data/_sass/_special-format.sass
CHANGED
@@ -7,9 +7,11 @@ body
|
|
7
7
|
color: $dark-grey
|
8
8
|
line-height: 2
|
9
9
|
margin: 5px 0
|
10
|
+
margin-bottom: 20px
|
10
11
|
margin-left: 18px
|
11
12
|
li
|
12
13
|
list-style-type: disc
|
14
|
+
margin: 10px 0
|
13
15
|
&.single-post
|
14
16
|
ul
|
15
17
|
display: block
|
@@ -17,9 +19,11 @@ body
|
|
17
19
|
color: $dark-grey
|
18
20
|
line-height: 2
|
19
21
|
margin: 5px 0
|
22
|
+
margin-bottom: 20px
|
20
23
|
margin-left: 18px
|
21
24
|
li
|
22
25
|
list-style-type: disc
|
26
|
+
margin: 10px 0
|
23
27
|
&.page
|
24
28
|
ul
|
25
29
|
display: block
|
@@ -27,9 +31,11 @@ body
|
|
27
31
|
color: $dark-grey
|
28
32
|
line-height: 2
|
29
33
|
margin: 5px 0
|
34
|
+
margin-bottom: 20px
|
30
35
|
margin-left: 18px
|
31
36
|
li
|
32
37
|
list-style-type: disc
|
38
|
+
margin: 10px 0
|
33
39
|
figure
|
34
40
|
&.highlight
|
35
41
|
margin: 20px 0
|
data/assets/css/main.sass
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: harms-columns-front-page
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Harms
|
@@ -108,6 +108,7 @@ files:
|
|
108
108
|
- _sass/_header.sass
|
109
109
|
- _sass/_headings.sass
|
110
110
|
- _sass/_nav.sass
|
111
|
+
- _sass/_normalize.sass
|
111
112
|
- _sass/_posts.sass
|
112
113
|
- _sass/_reset.sass
|
113
114
|
- _sass/_search.sass
|