space-jekyll-theme 0.1.10 → 0.1.11
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/_layouts/post.html +1 -1
- data/_sass/main.scss +31 -16
- 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: 6ff14c7e36d9d165ce95d7e02dc16aa964c32a73b1f2a12505df1a9c5a4b2e21
|
4
|
+
data.tar.gz: c9d6bca421955999cbb3c59d127d968154d9e943c33b73d288745542aed97984
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d213e20070142890b41decb4587f57bc6664094504ca64a81e8ea87b4391e2dfe7a03754686b1d68833b79a4af6d316ad30d118144d32f655038ec8c902e9f4
|
7
|
+
data.tar.gz: 56aed7918e87798551739e53c6bc5e249f000dbfbe81f8081db82fd6d7e26846545396b82b0fb1698a07f159512ff8b39f439cb82aedc3ee74216d6dcf4fa2aa
|
data/_layouts/post.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
layout: default
|
3
3
|
---
|
4
|
-
<
|
4
|
+
<h6 class="kicker">{{ page.kicker }}</h6>
|
5
5
|
<h1>{{ page.title }}</h1>
|
6
6
|
<h2 class="subtitle">{{ page.subtitle }}</h2>
|
7
7
|
<div class="meta"><p>By {{ page.author }} ▪︎ {{ page.date | date: "%m.%d.%Y" }} </p></div>
|
data/_sass/main.scss
CHANGED
@@ -16,49 +16,48 @@ $pink: rgb(228, 0, 102);
|
|
16
16
|
$accent: $emerald;
|
17
17
|
|
18
18
|
.scarlet {
|
19
|
-
|
19
|
+
color: $scarlet;
|
20
20
|
}
|
21
21
|
|
22
22
|
.purple {
|
23
|
-
|
23
|
+
color: $purple;
|
24
24
|
}
|
25
25
|
|
26
26
|
.yellow-green {
|
27
|
-
|
27
|
+
color: $yellow-green;
|
28
28
|
}
|
29
29
|
|
30
30
|
.black-coffee {
|
31
|
-
|
31
|
+
color: $black-coffee;
|
32
32
|
}
|
33
33
|
|
34
34
|
.black-coral {
|
35
|
-
|
35
|
+
color: $black-coral;
|
36
36
|
}
|
37
37
|
|
38
38
|
.emerald {
|
39
|
-
|
39
|
+
color: $emerald;
|
40
40
|
}
|
41
41
|
|
42
42
|
.cerulean-crayola {
|
43
|
-
|
43
|
+
color: $cerulean-crayola;
|
44
44
|
}
|
45
45
|
|
46
46
|
.pink {
|
47
|
-
|
47
|
+
color: $pink;
|
48
48
|
}
|
49
49
|
|
50
|
-
|
51
50
|
@function pow($number, $exponent) {
|
52
51
|
$value: 1;
|
53
|
-
|
52
|
+
|
54
53
|
@if $exponent > 0 {
|
55
|
-
|
56
|
-
|
57
|
-
|
54
|
+
@for $i from 1 through $exponent {
|
55
|
+
$value: $value * $number;
|
56
|
+
}
|
58
57
|
}
|
59
|
-
|
58
|
+
|
60
59
|
@return $value;
|
61
|
-
|
60
|
+
}
|
62
61
|
|
63
62
|
* {
|
64
63
|
box-sizing: border-box;
|
@@ -184,10 +183,11 @@ h6 {
|
|
184
183
|
}
|
185
184
|
|
186
185
|
ul,
|
186
|
+
li,
|
187
187
|
ol,
|
188
188
|
dl {
|
189
189
|
line-height: 200%;
|
190
|
-
font-size:
|
190
|
+
font-size: 1em;
|
191
191
|
}
|
192
192
|
|
193
193
|
img,
|
@@ -340,3 +340,18 @@ b {
|
|
340
340
|
font-weight: 700;
|
341
341
|
color: black;
|
342
342
|
}
|
343
|
+
|
344
|
+
.gallery-col3 {
|
345
|
+
column-count: 3;
|
346
|
+
column-gap: 1em;
|
347
|
+
}
|
348
|
+
|
349
|
+
.gallery-col2 {
|
350
|
+
column-count: 2;
|
351
|
+
column-gap: 1em;
|
352
|
+
}
|
353
|
+
.gallery-item {
|
354
|
+
display: inline-block;
|
355
|
+
margin: 0 0 1em;
|
356
|
+
width: 100%;
|
357
|
+
}
|
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.11
|
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-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|