names_are_hard 0.2.11 → 0.2.13
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/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/_includes/footer.html +0 -0
- data/_includes/head.html +0 -0
- data/_includes/header.html +0 -0
- data/_includes/post_list.html +10 -19
- data/_includes/simple_page_head.html +0 -0
- data/_layouts/boring.html +0 -0
- data/_layouts/home.html +0 -0
- data/_layouts/page.html +0 -0
- data/_layouts/post.html +0 -0
- data/_sass/names_are_hard.scss +42 -32
- data/_sass/reset.scss +0 -0
- data/_sass/syntax.scss +0 -0
- data/assets/main.scss +0 -0
- metadata +10 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5a7a099a8556d1fa427e4a45b9d6fe79c42af6edb5400f4240297d80e5a136d
|
4
|
+
data.tar.gz: eeb28d744155e276db648d349adadc72b0d2103007d62f9c91c66582bd450ea2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab76be37801f477eb0ebc4fb8fa78315f01c311dca04c4e84abf2fa55941c77fbacd56df3336684bc5b47836591007757c4337ff17aa09a7cb093ed08fed6ff7
|
7
|
+
data.tar.gz: 67628470a3e5710c89e94e7484f9adf274a53d99c81438b3c8e95873c256e41f652ef45aeba12c31d93b4bece5c28271944eba56bf30eb7e2ade3f36d802aac8
|
data/LICENSE.txt
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/_includes/footer.html
CHANGED
File without changes
|
data/_includes/head.html
CHANGED
File without changes
|
data/_includes/header.html
CHANGED
File without changes
|
data/_includes/post_list.html
CHANGED
@@ -1,23 +1,14 @@
|
|
1
|
-
<
|
1
|
+
<ul class="post-list">
|
2
2
|
{% for post in site.posts %}
|
3
|
-
<
|
3
|
+
<li>
|
4
4
|
<a href="{{ post.url }}">
|
5
|
-
<
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
<span class="post-date">{{ post.date | date: "%b %d %Y" }}</span>
|
6
|
+
<span class="post-title">{{ post.title }}</span>
|
7
|
+
<br/>
|
8
|
+
<span class="post-description">
|
9
|
+
{{ post.description | strip_html | truncatewords:50 }}
|
10
|
+
</span>
|
9
11
|
</a>
|
10
|
-
|
11
|
-
<a href="{{ post.github_url }}" class="project-gh">
|
12
|
-
{{ post.github_short }}
|
13
|
-
</a>
|
14
|
-
{% endif %}
|
15
|
-
<div class="post-description">
|
16
|
-
{{ post.description | strip_html | truncatewords:50 }}
|
17
|
-
</div>
|
18
|
-
{% if post.image %}
|
19
|
-
<img class="post-image" alt="Image of {{ post.title }}" src="{{ site.baseurl }}{{ post.image }}" />
|
20
|
-
{% endif %}
|
21
|
-
</div>
|
12
|
+
</li>
|
22
13
|
{% endfor %}
|
23
|
-
</
|
14
|
+
</ul>
|
File without changes
|
data/_layouts/boring.html
CHANGED
File without changes
|
data/_layouts/home.html
CHANGED
File without changes
|
data/_layouts/page.html
CHANGED
File without changes
|
data/_layouts/post.html
CHANGED
File without changes
|
data/_sass/names_are_hard.scss
CHANGED
@@ -2,21 +2,20 @@
|
|
2
2
|
|
3
3
|
// use the style reset
|
4
4
|
@import "reset";
|
5
|
-
@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed');
|
5
|
+
@import url('https://fonts.googleapis.com/css?family=Oswald|Roboto+Condensed|Roboto+Mono');
|
6
6
|
|
7
7
|
// fonts
|
8
|
-
$font-title: 'Oswald',
|
9
|
-
sans-serif;
|
10
|
-
$font-
|
11
|
-
sans-serif !important;
|
8
|
+
$font-title: 'Oswald', sans-serif;
|
9
|
+
$font-main: 'Roboto Condensed', sans-serif !important;
|
10
|
+
$font-mono: 'Roboto Mono', monospace;
|
12
11
|
|
13
12
|
// colors
|
14
|
-
$background-color: #
|
15
|
-
$text-background-color: #
|
13
|
+
$background-color: #b7d3bb !default;
|
14
|
+
$text-background-color: #c2d8ce;
|
16
15
|
$code-background-color: #D9D9D9;
|
17
16
|
$code-foreground-color: black;
|
18
|
-
$foreground-color: #
|
19
|
-
$highlight-color: #
|
17
|
+
$foreground-color: #1d2a24 !default;
|
18
|
+
$highlight-color: #58806e;
|
20
19
|
|
21
20
|
// fonts, only the body
|
22
21
|
$body-font-size: 12pt !default;
|
@@ -180,25 +179,35 @@ a {
|
|
180
179
|
color: darken($foreground-color, 30%);
|
181
180
|
}
|
182
181
|
|
183
|
-
.post-list
|
184
|
-
|
182
|
+
.post-list li {
|
183
|
+
a {
|
184
|
+
text-decoration: none;
|
185
|
+
}
|
185
186
|
|
186
|
-
|
187
|
+
.post-title {
|
188
|
+
font-size: 14pt;
|
189
|
+
font-weight: bold;
|
190
|
+
}
|
187
191
|
|
188
|
-
.
|
189
|
-
|
190
|
-
|
192
|
+
.post-date {
|
193
|
+
color: $highlight-color;
|
194
|
+
display: inline-block;
|
195
|
+
width: 90px;
|
191
196
|
}
|
192
197
|
|
193
|
-
|
198
|
+
.post-description {
|
199
|
+
// the 10px discrepancy is left-margin of post-date, and whitespace between
|
200
|
+
// the date and title
|
201
|
+
padding-left: 100px;
|
202
|
+
}
|
203
|
+
|
204
|
+
margin-bottom: 20pt;
|
205
|
+
line-height: 20px;
|
194
206
|
|
195
207
|
&:hover {
|
196
|
-
|
197
|
-
.project-title, .post-title,
|
198
|
-
.post-date, .project-date
|
208
|
+
.post-title, .post-date
|
199
209
|
{
|
200
|
-
|
201
|
-
color: $highlight-color;
|
210
|
+
color: darken($highlight-color, 30%);
|
202
211
|
}
|
203
212
|
}
|
204
213
|
}
|
@@ -225,13 +234,13 @@ a {
|
|
225
234
|
}
|
226
235
|
}
|
227
236
|
|
228
|
-
.project-description,
|
229
|
-
.post-description {
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
}
|
237
|
+
// .project-description,
|
238
|
+
// .post-description {
|
239
|
+
// display: inline-block;
|
240
|
+
// padding-top: 8pt;
|
241
|
+
// padding-bottom: 10px;
|
242
|
+
// border-bottom: 1px dashed darken($color: $foreground-color, $amount: 30%);
|
243
|
+
// }
|
235
244
|
|
236
245
|
.page-gh {
|
237
246
|
font-size: 15pt;
|
@@ -333,15 +342,16 @@ li {
|
|
333
342
|
pre.highlight {
|
334
343
|
background-color: $code-background-color;
|
335
344
|
color: $code-foreground-color;
|
336
|
-
font-family:
|
337
|
-
border: 1px solid black;
|
345
|
+
font-family: $font-mono;
|
346
|
+
// border: 1px solid black;
|
347
|
+
font-size: 14px;
|
338
348
|
}
|
339
349
|
|
340
350
|
// inline code
|
341
351
|
code {
|
342
352
|
background-color: $code-background-color;
|
343
353
|
color: $code-foreground-color;
|
344
|
-
font-family:
|
354
|
+
font-family: $font-mono;
|
345
355
|
|
346
356
|
padding-left: 3px;
|
347
357
|
padding-right: 3px;
|
@@ -488,4 +498,4 @@ table {
|
|
488
498
|
}
|
489
499
|
}
|
490
500
|
|
491
|
-
@import "syntax";
|
501
|
+
@import "syntax";
|
data/_sass/reset.scss
CHANGED
File without changes
|
data/_sass/syntax.scss
CHANGED
File without changes
|
data/assets/main.scss
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,57 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: names_are_hard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Johnston
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '3.5'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '3.5'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 12.3.3
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 12.3.3
|
40
|
+
version: '0'
|
55
41
|
description:
|
56
42
|
email:
|
57
43
|
- chjohnston@protonmail.com
|