space-jekyll-theme 0.1.4 → 0.1.5
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 +4 -4
- data/_includes/posts.html +2 -2
- data/_layouts/post.html +2 -2
- data/_sass/main.scss +30 -26
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 718ebafd6d185b47f84aed32b9521289ccd925199218be28ad6fe992642c8ddd
|
4
|
+
data.tar.gz: 23e6ffed1a42906e31c60c9e02397057abc457145e51ee4028e8019a89beb6f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7723efe7ebc83ac71e653d477019f7a4183e9e05e03d3317eb1bea5695308a8f0caca96facda3298a911141d89a8cbf6c0fc8f5af33bdad10b1ac52f08833457
|
7
|
+
data.tar.gz: 18b2923d28a0a7aef1e2ba0be53394f54f90ea430b7ecc701cc63f221a7b83dfa391ca8e2abb08b89521cded316b8ca131d37ee1643dbeb2f9b35c06608cd07a
|
data/_includes/posts.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{% for post in site.posts %}
|
2
2
|
<div class="post">
|
3
|
-
<h6 class="kicker">
|
3
|
+
<h6 class="kicker">{{ post.kicker }}</h6>
|
4
4
|
<h1 class="title">
|
5
5
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
6
6
|
</h1>
|
7
7
|
<h2 class="subtitle">{{ post.subtitle }}</h2>
|
8
|
-
<div class="meta"><p>By {{ post.author }}</p></div>
|
8
|
+
<div class="meta"><p>By {{ post.author }} ▪︎ {{ post.date | date: "%m.%d.%Y" }} </p></div>
|
9
9
|
{{ post.excerpt }}
|
10
10
|
</div>
|
11
11
|
{% endfor %}
|
data/_layouts/post.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
<p class="kicker">
|
4
|
+
<p class="kicker">{{ page.kicker }}</p>
|
5
5
|
<h1>{{ page.title }}</h1>
|
6
6
|
<h2 class="subtitle">{{ page.subtitle }}</h2>
|
7
|
-
<div class="meta"><p>By {{ page.author }}</p></div>
|
7
|
+
<div class="meta"><p>By {{ page.author }} ▪︎ {{ page.date | date: "%m.%d.%Y" }} </p></div>
|
8
8
|
{{ content }}
|
data/_sass/main.scss
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
@import "_breakpoints";
|
2
2
|
@import "_mixins";
|
3
3
|
|
4
|
-
$display-font : "
|
5
|
-
$body-font : "
|
4
|
+
$display-font : "Space Grotesk";
|
5
|
+
$body-font : "Space Grotesk";
|
6
6
|
$mono-font : "Inconsolata";
|
7
|
-
$
|
8
|
-
$
|
7
|
+
$green : #4CB963;
|
8
|
+
$dark-green : #157f1f;
|
9
9
|
|
10
|
-
$ptsize :
|
10
|
+
$ptsize : 16px;
|
11
11
|
$scalefactor : 1.333;
|
12
|
+
|
12
13
|
@function pow($number, $exponent) {
|
13
14
|
$value: 1;
|
14
15
|
|
@@ -24,33 +25,32 @@ $scalefactor : 1.333;
|
|
24
25
|
* {
|
25
26
|
box-sizing: border-box;
|
26
27
|
text-rendering: optimizeLegibility;
|
27
|
-
font-kerning:
|
28
|
+
font-kerning: auto;
|
28
29
|
}
|
29
30
|
|
30
31
|
.logo {
|
31
32
|
width: 50px;
|
32
33
|
}
|
33
34
|
|
34
|
-
h1,
|
35
35
|
h2,
|
36
36
|
h3,
|
37
37
|
h4,
|
38
38
|
h5,
|
39
39
|
h6, blockquote {
|
40
40
|
font-family: $display-font;
|
41
|
-
|
41
|
+
line-height: 1.3em;
|
42
42
|
}
|
43
43
|
|
44
44
|
a {
|
45
45
|
text-decoration: none;
|
46
|
-
color: $
|
46
|
+
color: $green;
|
47
47
|
padding-bottom: 0.005em;
|
48
48
|
border-bottom: 1px solid lightgray;
|
49
49
|
}
|
50
50
|
|
51
51
|
a:hover {
|
52
|
-
color: $
|
53
|
-
border-bottom: 1px solid $
|
52
|
+
color: $dark-green;
|
53
|
+
border-bottom: 1px solid $dark-green;
|
54
54
|
}
|
55
55
|
|
56
56
|
h1 {
|
@@ -58,7 +58,8 @@ h1 {
|
|
58
58
|
line-height: 120%;
|
59
59
|
margin-top: 80px;
|
60
60
|
margin-bottom: 40px;
|
61
|
-
font-weight: 700;
|
61
|
+
// font-weight: 700;
|
62
|
+
font-family: $body-font;
|
62
63
|
}
|
63
64
|
|
64
65
|
h1.title {
|
@@ -70,24 +71,26 @@ h1.title {
|
|
70
71
|
}
|
71
72
|
|
72
73
|
h2 {
|
73
|
-
|
74
|
+
|
75
|
+
color: $green;
|
74
76
|
font-size: $ptsize * pow($scalefactor, 2);
|
75
|
-
line-height: 160%;
|
77
|
+
// line-height: 160%;
|
76
78
|
margin-top: 60px;
|
77
79
|
margin-bottom: 40px;
|
78
80
|
}
|
79
81
|
|
80
82
|
h2.subtitle {
|
81
|
-
font-weight: 200;
|
82
|
-
font-style: italic;
|
83
|
+
// font-weight: 200;
|
84
|
+
// font-style: italic;
|
83
85
|
font-size: $ptsize * pow($scalefactor, 2);
|
84
|
-
font-family: $body-font;
|
86
|
+
// font-family: $body-font;
|
85
87
|
margin-top: -30px;
|
88
|
+
font-weight: 300;
|
86
89
|
}
|
87
90
|
|
88
91
|
h3 {
|
89
92
|
font-size: $ptsize * pow($scalefactor, 1);
|
90
|
-
line-height: 150%;
|
93
|
+
// line-height: 150%;
|
91
94
|
margin-top: 40px;
|
92
95
|
margin-bottom: 20px;
|
93
96
|
}
|
@@ -100,20 +103,20 @@ h5 {
|
|
100
103
|
font-size: $ptsize * pow($scalefactor, 1);
|
101
104
|
letter-spacing: 1px;
|
102
105
|
text-transform: uppercase;
|
103
|
-
line-height: 140%;
|
106
|
+
// line-height: 140%;
|
104
107
|
}
|
105
108
|
h6 {
|
106
109
|
font-size: $ptsize;
|
107
110
|
letter-spacing: 2px;
|
108
111
|
text-transform: uppercase;
|
109
|
-
line-height: 140%;
|
112
|
+
// line-height: 140%;
|
110
113
|
}
|
111
114
|
|
112
115
|
p {
|
113
|
-
color:
|
116
|
+
color: rgb(68, 68, 68);
|
114
117
|
font-size: $ptsize;
|
115
118
|
font-weight: 400;
|
116
|
-
line-height:
|
119
|
+
line-height: 1.6;
|
117
120
|
margin-top: 40px;
|
118
121
|
margin-bottom: 40px;
|
119
122
|
}
|
@@ -176,9 +179,9 @@ nav {
|
|
176
179
|
}
|
177
180
|
a.active {
|
178
181
|
text-decoration: none;
|
179
|
-
color: $
|
182
|
+
color: $green;
|
180
183
|
padding-bottom: 0.3em;
|
181
|
-
border-bottom: 1px solid $
|
184
|
+
border-bottom: 1px solid $green;
|
182
185
|
}
|
183
186
|
}
|
184
187
|
|
@@ -272,7 +275,7 @@ figcaption {
|
|
272
275
|
}
|
273
276
|
|
274
277
|
.meta {
|
275
|
-
font-family: $
|
278
|
+
font-family: $body-font;
|
276
279
|
margin-top: -20px;
|
277
280
|
margin-bottom: 40px;
|
278
281
|
p {
|
@@ -288,10 +291,11 @@ figcaption {
|
|
288
291
|
font-family: $display-font;
|
289
292
|
color: grey;
|
290
293
|
margin-top: 80px;
|
291
|
-
margin-bottom: -
|
294
|
+
margin-bottom: -70px;
|
292
295
|
text-transform: none;
|
293
296
|
letter-spacing: 0;
|
294
297
|
font-weight: 400;
|
298
|
+
text-transform: uppercase;
|
295
299
|
}
|
296
300
|
|
297
301
|
strong, b {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: space-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- '0xf17'
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-12-
|
11
|
+
date: 2020-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|