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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '058008645c2a0f44311992fcef0ab573d3e88a8769df25de40fa90bdaea6b49e'
4
- data.tar.gz: 4545f391169b0f17d5b8c9027c6ae0752febd069fe5ae1432e7f83a603877d1a
3
+ metadata.gz: a5a7a099a8556d1fa427e4a45b9d6fe79c42af6edb5400f4240297d80e5a136d
4
+ data.tar.gz: eeb28d744155e276db648d349adadc72b0d2103007d62f9c91c66582bd450ea2
5
5
  SHA512:
6
- metadata.gz: ddc6ebf1a9a8381f7df812e9624d3f1b238c2383d97e107097ab8561f0033e6f7b05cb24431cafee6a5999e04bd0824e1b65944dc519fac011297006a7d0ab4a
7
- data.tar.gz: a6c77055dba14b7b3717e64c4574d2585d922e48215996905eb85813740929d87199b4cc3c8ec2cf4e83af36c6939a705faf6c762c1e85243d21cdb13ef4d238
6
+ metadata.gz: ab76be37801f477eb0ebc4fb8fa78315f01c311dca04c4e84abf2fa55941c77fbacd56df3336684bc5b47836591007757c4337ff17aa09a7cb093ed08fed6ff7
7
+ data.tar.gz: 67628470a3e5710c89e94e7484f9adf274a53d99c81438b3c8e95873c256e41f652ef45aeba12c31d93b4bece5c28271944eba56bf30eb7e2ade3f36d802aac8
data/LICENSE.txt CHANGED
File without changes
data/README.md CHANGED
File without changes
File without changes
data/_includes/head.html CHANGED
File without changes
File without changes
@@ -1,23 +1,14 @@
1
- <div class="post-list">
1
+ <ul class="post-list">
2
2
  {% for post in site.posts %}
3
- <div class="post">
3
+ <li>
4
4
  <a href="{{ post.url }}">
5
- <h2 class="post-title">
6
- {{ post.title }}
7
- <div class="post-date">{{ post.date | date: "%B %Y" }}</div>
8
- </h2>
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
- {% if post.github_url %}
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
- </div>
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
@@ -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-main: 'Roboto Condensed',
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: #142B51 !default;
15
- $text-background-color: #263037;
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: #E2E4E9 !default;
19
- $highlight-color: #d2f9e6;
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 a,
184
- .project-list a {
182
+ .post-list li {
183
+ a {
184
+ text-decoration: none;
185
+ }
185
186
 
186
- color: darken($foreground-color, 30%);
187
+ .post-title {
188
+ font-size: 14pt;
189
+ font-weight: bold;
190
+ }
187
191
 
188
- .project-title, .post-title
189
- {
190
- color: $foreground-color;
192
+ .post-date {
193
+ color: $highlight-color;
194
+ display: inline-block;
195
+ width: 90px;
191
196
  }
192
197
 
193
- text-decoration: none;
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
- color: $highlight-color;
197
- .project-title, .post-title,
198
- .post-date, .project-date
208
+ .post-title, .post-date
199
209
  {
200
- text-decoration: underline;
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
- display: inline-block;
231
- padding-top: 8pt;
232
- padding-bottom: 10px;
233
- border-bottom: 1px dashed darken($color: $foreground-color, $amount: 30%);
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: monospace;
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: monospace;
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.11
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: 2020-06-08 00:00:00.000000000 Z
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: '4.0'
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: '4.0'
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: 2.1.4
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: 2.1.4
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