jekyll-theme-harveynick-lagrange 3.0.3
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 +7 -0
- data/LICENSE.md +21 -0
- data/README.md +289 -0
- data/_includes/category-list-entry.html +6 -0
- data/_includes/custom-foot.html +1 -0
- data/_includes/custom-head.html +1 -0
- data/_includes/disqus.html +14 -0
- data/_includes/excerpt.html +1 -0
- data/_includes/footer.html +4 -0
- data/_includes/google-analytics.html +9 -0
- data/_includes/head.html +39 -0
- data/_includes/header.html +7 -0
- data/_includes/menu.html +10 -0
- data/_includes/post-list-entry.html +6 -0
- data/_includes/post-metadata.html +68 -0
- data/_includes/post-navigation.html +31 -0
- data/_includes/post-summary-metadata.html +1 -0
- data/_includes/post-summary.html +14 -0
- data/_includes/post-tags.html +45 -0
- data/_includes/read-time.html +21 -0
- data/_includes/related-posts.html +15 -0
- data/_includes/social-icons.html +3 -0
- data/_includes/social-sharing.html +8 -0
- data/_includes/stylesheet.html +1 -0
- data/_layouts/categories.html +43 -0
- data/_layouts/category.html +27 -0
- data/_layouts/default.html +21 -0
- data/_layouts/index.html +23 -0
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +54 -0
- data/_layouts/tags.html +45 -0
- data/_sass/lagrange.scss +6 -0
- data/_sass/lagrange/_code.scss +64 -0
- data/_sass/lagrange/_main.scss +384 -0
- data/_sass/lagrange/_social.scss +150 -0
- data/_sass/lagrange/_syntax.scss +65 -0
- data/_sass/lagrange/_tags.scss +51 -0
- data/_sass/lagrange/_variables.scss +74 -0
- data/assets/css/main.scss +6 -0
- data/assets/img/cards.jpg +0 -0
- data/assets/img/cutting.jpg +0 -0
- data/assets/img/forest.jpg +0 -0
- data/assets/img/mountains.jpg +0 -0
- data/assets/img/spools.jpg +0 -0
- metadata +130 -0
@@ -0,0 +1,384 @@
|
|
1
|
+
/*
|
2
|
+
Contents:
|
3
|
+
Base
|
4
|
+
Site container
|
5
|
+
Masthead
|
6
|
+
Thumbnail
|
7
|
+
Post
|
8
|
+
Pagination
|
9
|
+
Footer
|
10
|
+
Menu
|
11
|
+
Tables
|
12
|
+
*/
|
13
|
+
|
14
|
+
/*
|
15
|
+
Base
|
16
|
+
*/
|
17
|
+
|
18
|
+
body {
|
19
|
+
font-family: $body-font-family;
|
20
|
+
font-size: $body-font-size;
|
21
|
+
color: $body-color;
|
22
|
+
line-height: $body-line-height;
|
23
|
+
background-color: $background-color;
|
24
|
+
}
|
25
|
+
|
26
|
+
@media (max-width: $rescale-content-mobile-breakpoint) {
|
27
|
+
body {
|
28
|
+
font-size: 14px;
|
29
|
+
line-height: 1.5rem;
|
30
|
+
}
|
31
|
+
body h1 {
|
32
|
+
font-size: 1.5rem;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
h1{
|
37
|
+
font-size: 2rem;
|
38
|
+
}
|
39
|
+
|
40
|
+
h1 a {
|
41
|
+
text-decoration: none;
|
42
|
+
}
|
43
|
+
|
44
|
+
h1, h2, h3, h4, h5, h6 {
|
45
|
+
font-family: $heading-font-family;
|
46
|
+
color: $heading-color;
|
47
|
+
line-height: $heading-line-height;
|
48
|
+
}
|
49
|
+
|
50
|
+
a {
|
51
|
+
text-decoration: underline;
|
52
|
+
color: $link-color;
|
53
|
+
transition: color 0.35s ease;
|
54
|
+
}
|
55
|
+
|
56
|
+
a:hover {
|
57
|
+
color: $link-hover-color;
|
58
|
+
border-bottom: none;
|
59
|
+
}
|
60
|
+
|
61
|
+
img {
|
62
|
+
max-width: 100%;
|
63
|
+
height: auto;
|
64
|
+
border-radius: 5px;
|
65
|
+
}
|
66
|
+
|
67
|
+
blockquote {
|
68
|
+
margin: 10px 20px 10px;
|
69
|
+
padding: 0px 15px;
|
70
|
+
border-left: 0.25em solid $blockquote-indent-color;
|
71
|
+
color: $blockquote-color;
|
72
|
+
line-height: $body-line-height;
|
73
|
+
}
|
74
|
+
|
75
|
+
hr {
|
76
|
+
border-top: 1px solid $horizontal-rule-color;
|
77
|
+
border-left: none;
|
78
|
+
border-right: none;
|
79
|
+
border-bottom: none;
|
80
|
+
}
|
81
|
+
|
82
|
+
sup {
|
83
|
+
font-size: small;
|
84
|
+
line-height: 1;
|
85
|
+
}
|
86
|
+
|
87
|
+
/*
|
88
|
+
Site container
|
89
|
+
*/
|
90
|
+
|
91
|
+
.container {
|
92
|
+
margin-left: auto;
|
93
|
+
margin-right: auto;
|
94
|
+
width: $content-width;
|
95
|
+
}
|
96
|
+
|
97
|
+
/*48em*/
|
98
|
+
|
99
|
+
@media (max-width: $fill-width-mobile-breakpoint) {
|
100
|
+
.container {
|
101
|
+
width: 90vw;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
|
105
|
+
/*
|
106
|
+
Masthead
|
107
|
+
*/
|
108
|
+
|
109
|
+
.masthead {
|
110
|
+
padding-top: 0.5rem;
|
111
|
+
padding-bottom: 0.5rem;
|
112
|
+
margin-bottom: 4rem;
|
113
|
+
font-family: $heading-font-family;
|
114
|
+
}
|
115
|
+
|
116
|
+
.masthead a:hover {
|
117
|
+
color:black;
|
118
|
+
}
|
119
|
+
|
120
|
+
.masthead-title a {
|
121
|
+
font-size: 2rem;
|
122
|
+
text-decoration: none;
|
123
|
+
color: $masthead-title-color;
|
124
|
+
}
|
125
|
+
|
126
|
+
.masthead-subtitle {
|
127
|
+
color: $masthead-subtitle-color;
|
128
|
+
}
|
129
|
+
|
130
|
+
/*
|
131
|
+
Thumbnail
|
132
|
+
*/
|
133
|
+
|
134
|
+
.thumbnail-container {
|
135
|
+
max-width: 100%;
|
136
|
+
overflow: hidden;
|
137
|
+
border-radius: 5px;
|
138
|
+
margin-bottom: 25px;
|
139
|
+
}
|
140
|
+
|
141
|
+
.thumbnail-container img{
|
142
|
+
margin-top: -11.5%;
|
143
|
+
margin-bottom: -11.5%;
|
144
|
+
}
|
145
|
+
|
146
|
+
/*
|
147
|
+
Post
|
148
|
+
*/
|
149
|
+
|
150
|
+
.post-container {
|
151
|
+
margin-bottom: 4rem;
|
152
|
+
}
|
153
|
+
|
154
|
+
.posts {
|
155
|
+
margin-bottom: 5rem;
|
156
|
+
padding: 0px;
|
157
|
+
list-style: none;
|
158
|
+
}
|
159
|
+
|
160
|
+
.post-date {
|
161
|
+
display: block;
|
162
|
+
margin-top:3px;
|
163
|
+
margin-bottom: 1rem;
|
164
|
+
color: $back-matter-color;
|
165
|
+
font-family: $back-matter-font-family;
|
166
|
+
font-size:0.8rem;
|
167
|
+
|
168
|
+
a {
|
169
|
+
color: inherit;
|
170
|
+
text-decoration: none;
|
171
|
+
}
|
172
|
+
a:hover {
|
173
|
+
color: $back-matter-color-link-hover-color;
|
174
|
+
text-decoration: underline;
|
175
|
+
}
|
176
|
+
}
|
177
|
+
|
178
|
+
@media (max-width: $rescale-content-mobile-breakpoint) {
|
179
|
+
.posts h1 {
|
180
|
+
font-size: 1.5rem;
|
181
|
+
}
|
182
|
+
}
|
183
|
+
|
184
|
+
.related {
|
185
|
+
padding-bottom: 2rem;
|
186
|
+
}
|
187
|
+
|
188
|
+
.posts-list {
|
189
|
+
padding-left: 0px;
|
190
|
+
list-style: none;
|
191
|
+
|
192
|
+
h3 {
|
193
|
+
margin-top: 0;
|
194
|
+
}
|
195
|
+
|
196
|
+
small {
|
197
|
+
font-size: 75%;
|
198
|
+
color: $back-matter-color;
|
199
|
+
white-space: nowrap;
|
200
|
+
}
|
201
|
+
|
202
|
+
a:hover {
|
203
|
+
color: $link-hover-color;
|
204
|
+
text-decoration: none;
|
205
|
+
|
206
|
+
small {
|
207
|
+
color: inherit;
|
208
|
+
}
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
.category-navigation {
|
213
|
+
display: flex;
|
214
|
+
flex-direction: row;
|
215
|
+
justify-content: space-between;
|
216
|
+
align-items: stretch;
|
217
|
+
|
218
|
+
margin-top: 16px;
|
219
|
+
padding: 8px 0px 6px 0px;
|
220
|
+
width: 100%;
|
221
|
+
|
222
|
+
font-family: $heading-font-family;
|
223
|
+
font-size: 1em;
|
224
|
+
|
225
|
+
a {
|
226
|
+
color: $page-matter-light-color;
|
227
|
+
text-decoration: none;
|
228
|
+
|
229
|
+
&:hover {
|
230
|
+
color: inherit;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
.category-navigation-prev {
|
236
|
+
margin-right: 5px;
|
237
|
+
flex-grow: 1;
|
238
|
+
|
239
|
+
&:before {
|
240
|
+
content: "← ";
|
241
|
+
color: $body-color;
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
.category-navigation-next {
|
246
|
+
margin-left: 5px;
|
247
|
+
text-align: right;
|
248
|
+
flex-grow: 1;
|
249
|
+
|
250
|
+
&:after {
|
251
|
+
content: " →";
|
252
|
+
color: $body-color;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
@media (max-width: $relayout-in-page-nav-mobile-breakpoint) {
|
257
|
+
.category-navigation {
|
258
|
+
flex-direction: column;
|
259
|
+
}
|
260
|
+
.category-navigation-prev {
|
261
|
+
margin-bottom: 4px;
|
262
|
+
margin-right: 0px;
|
263
|
+
}
|
264
|
+
.category-navigation-next {
|
265
|
+
margin-top: 4px;
|
266
|
+
margin-left: 0px;
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
.footnotes {
|
271
|
+
border-top: 1px solid $horizontal-rule-color;
|
272
|
+
font-size: 0.8rem;
|
273
|
+
margin-bottom: 24px;
|
274
|
+
line-height: $body-line-height;
|
275
|
+
}
|
276
|
+
|
277
|
+
/*
|
278
|
+
Pagination
|
279
|
+
*/
|
280
|
+
|
281
|
+
.pagination {
|
282
|
+
overflow: hidden;
|
283
|
+
font-family: $pagination-font-family;
|
284
|
+
text-align: center;
|
285
|
+
}
|
286
|
+
|
287
|
+
.pagination a {
|
288
|
+
text-decoration: none;
|
289
|
+
}
|
290
|
+
|
291
|
+
.pagination-button {
|
292
|
+
color: $pagination-inactive-color;
|
293
|
+
border: 1px solid $pagination-border-color;
|
294
|
+
padding: 15px 45px;
|
295
|
+
display: inline-block;
|
296
|
+
font-size: 16px;
|
297
|
+
font-weight: bold;
|
298
|
+
transition: color 0.35s ease, background-color 0.35s ease;
|
299
|
+
}
|
300
|
+
|
301
|
+
.pagination-active {
|
302
|
+
color: $pagination-active-color;
|
303
|
+
}
|
304
|
+
|
305
|
+
.pagination-active:hover {
|
306
|
+
background-color: $pagination-hover-background-color;
|
307
|
+
}
|
308
|
+
|
309
|
+
/*
|
310
|
+
Footer
|
311
|
+
*/
|
312
|
+
|
313
|
+
.footer {
|
314
|
+
color: $footer-text-color;
|
315
|
+
text-align: center;
|
316
|
+
margin: 2rem;
|
317
|
+
}
|
318
|
+
|
319
|
+
.footer a {
|
320
|
+
color: $footer-link-color;
|
321
|
+
padding: 10px;
|
322
|
+
text-decoration: none;
|
323
|
+
}
|
324
|
+
|
325
|
+
.footer a:hover {
|
326
|
+
color: $footer-link-hover-color;
|
327
|
+
}
|
328
|
+
|
329
|
+
/*
|
330
|
+
Menu
|
331
|
+
*/
|
332
|
+
|
333
|
+
.menu {
|
334
|
+
padding-top: 0.5rem;
|
335
|
+
display: block;
|
336
|
+
}
|
337
|
+
|
338
|
+
.menu-content {
|
339
|
+
float: left;
|
340
|
+
}
|
341
|
+
|
342
|
+
.menu-content a {
|
343
|
+
color: $menu-text-color;
|
344
|
+
font-size: 1rem;
|
345
|
+
padding-right: 10px;
|
346
|
+
}
|
347
|
+
|
348
|
+
.social-icons {
|
349
|
+
float: right;
|
350
|
+
}
|
351
|
+
|
352
|
+
.social-icons a {
|
353
|
+
color: $menu-icon-color;
|
354
|
+
font-size: 1rem;
|
355
|
+
}
|
356
|
+
|
357
|
+
@media (max-width: $rescale-content-mobile-breakpoint) {
|
358
|
+
.social-icons {
|
359
|
+
float: left;
|
360
|
+
padding-top: 0px;
|
361
|
+
}
|
362
|
+
.menu-content {
|
363
|
+
margin-bottom: 5px;
|
364
|
+
}
|
365
|
+
}
|
366
|
+
|
367
|
+
/*
|
368
|
+
Tables
|
369
|
+
*/
|
370
|
+
|
371
|
+
table {
|
372
|
+
border-collapse: collapse;
|
373
|
+
margin-bottom: 30px;
|
374
|
+
width: 100%;
|
375
|
+
}
|
376
|
+
|
377
|
+
table, th, td {
|
378
|
+
border: 1px solid $table-border-color;
|
379
|
+
}
|
380
|
+
|
381
|
+
th, td {
|
382
|
+
padding: 15px;
|
383
|
+
text-align: left;
|
384
|
+
}
|
@@ -0,0 +1,150 @@
|
|
1
|
+
/*
|
2
|
+
Social media icons
|
3
|
+
*/
|
4
|
+
|
5
|
+
.sharing-icons a {
|
6
|
+
padding-right: 10px;
|
7
|
+
}
|
8
|
+
|
9
|
+
.fa-envelope {
|
10
|
+
padding: 5px;
|
11
|
+
-o-transition:.5s;
|
12
|
+
-ms-transition:.5s;
|
13
|
+
-moz-transition:.5s;
|
14
|
+
-webkit-transition:.5s;
|
15
|
+
transition: .5s;
|
16
|
+
}
|
17
|
+
|
18
|
+
.fa-envelope:hover {
|
19
|
+
color: $icon-envelope-hover;
|
20
|
+
}
|
21
|
+
|
22
|
+
.fa-twitter {
|
23
|
+
padding: 5px;
|
24
|
+
-o-transition:.5s;
|
25
|
+
-ms-transition:.5s;
|
26
|
+
-moz-transition:.5s;
|
27
|
+
-webkit-transition:.5s;
|
28
|
+
transition: .5s;
|
29
|
+
}
|
30
|
+
|
31
|
+
.fa-twitter:hover {
|
32
|
+
color: $icon-twitter-hover;
|
33
|
+
}
|
34
|
+
|
35
|
+
.fa-instagram {
|
36
|
+
padding: 5px;
|
37
|
+
-o-transition:.5s;
|
38
|
+
-ms-transition:.5s;
|
39
|
+
-moz-transition:.5s;
|
40
|
+
-webkit-transition:.5s;
|
41
|
+
transition: .5s;
|
42
|
+
}
|
43
|
+
|
44
|
+
.fa-instagram:hover {
|
45
|
+
color: $icon-instagram-hover;
|
46
|
+
}
|
47
|
+
|
48
|
+
.fa-github {
|
49
|
+
padding: 5px;
|
50
|
+
-o-transition:.5s;
|
51
|
+
-ms-transition:.5s;
|
52
|
+
-moz-transition:.5s;
|
53
|
+
-webkit-transition:.5s;
|
54
|
+
transition: .5s;
|
55
|
+
}
|
56
|
+
|
57
|
+
.fa-github:hover {
|
58
|
+
color: $icon-github-hover;
|
59
|
+
}
|
60
|
+
|
61
|
+
.fa-linkedin {
|
62
|
+
padding: 5px;
|
63
|
+
-o-transition:.5s;
|
64
|
+
-ms-transition:.5s;
|
65
|
+
-moz-transition:.5s;
|
66
|
+
-webkit-transition:.5s;
|
67
|
+
transition: .5s;
|
68
|
+
}
|
69
|
+
|
70
|
+
.fa-linkedin:hover {
|
71
|
+
color: $icon-linkedin-hover;
|
72
|
+
}
|
73
|
+
|
74
|
+
.fa-facebook {
|
75
|
+
padding: 5px;
|
76
|
+
-o-transition:.5s;
|
77
|
+
-ms-transition:.5s;
|
78
|
+
-moz-transition:.5s;
|
79
|
+
-webkit-transition:.5s;
|
80
|
+
transition: .5s;
|
81
|
+
}
|
82
|
+
|
83
|
+
.fa-facebook:hover {
|
84
|
+
color: $icon-facebook-hover;
|
85
|
+
}
|
86
|
+
|
87
|
+
.fa-google-plus {
|
88
|
+
padding: 5px;
|
89
|
+
-o-transition:.5s;
|
90
|
+
-ms-transition:.5s;
|
91
|
+
-moz-transition:.5s;
|
92
|
+
-webkit-transition:.5s;
|
93
|
+
transition: .5s;
|
94
|
+
}
|
95
|
+
|
96
|
+
.fa-google-plus:hover {
|
97
|
+
color: $icon-googleplus-hover;
|
98
|
+
}
|
99
|
+
|
100
|
+
.fa-pinterest {
|
101
|
+
padding: 5px;
|
102
|
+
-o-transition:.5s;
|
103
|
+
-ms-transition:.5s;
|
104
|
+
-moz-transition:.5s;
|
105
|
+
-webkit-transition:.5s;
|
106
|
+
transition: .5s;
|
107
|
+
}
|
108
|
+
|
109
|
+
.fa-pinterest:hover {
|
110
|
+
color: $icon-pinterest-hover;
|
111
|
+
}
|
112
|
+
|
113
|
+
.fa-medium {
|
114
|
+
padding: 5px;
|
115
|
+
-o-transition:.5s;
|
116
|
+
-ms-transition:.5s;
|
117
|
+
-moz-transition:.5s;
|
118
|
+
-webkit-transition:.5s;
|
119
|
+
transition: .5s;
|
120
|
+
}
|
121
|
+
|
122
|
+
.fa-medium:hover {
|
123
|
+
color: $icon-medium-hover;
|
124
|
+
}
|
125
|
+
|
126
|
+
.fa-codepen {
|
127
|
+
padding: 5px;
|
128
|
+
-o-transition:.5s;
|
129
|
+
-ms-transition:.5s;
|
130
|
+
-moz-transition:.5s;
|
131
|
+
-webkit-transition:.5s;
|
132
|
+
transition: .5s;
|
133
|
+
}
|
134
|
+
|
135
|
+
.fa-codepen:hover {
|
136
|
+
color: $icon-codepen-hover;
|
137
|
+
}
|
138
|
+
|
139
|
+
.fa-rss-square {
|
140
|
+
padding: 5px;
|
141
|
+
-o-transition:.5s;
|
142
|
+
-ms-transition:.5s;
|
143
|
+
-moz-transition:.5s;
|
144
|
+
-webkit-transition:.5s;
|
145
|
+
transition: .5s;
|
146
|
+
}
|
147
|
+
|
148
|
+
.fa-rss-square:hover {
|
149
|
+
color: $icon-rss-hover;
|
150
|
+
}
|