names_are_hard 0.2.12 → 0.2.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f2e9ee6787da97f89bf321545f26f45f8879dcc164060ca06a8a8ab16e43b591
4
- data.tar.gz: 910aad235074e90421eeb9d576deff5139cbd4d8359e29a88911d878a3aa697b
3
+ metadata.gz: a5a7a099a8556d1fa427e4a45b9d6fe79c42af6edb5400f4240297d80e5a136d
4
+ data.tar.gz: eeb28d744155e276db648d349adadc72b0d2103007d62f9c91c66582bd450ea2
5
5
  SHA512:
6
- metadata.gz: f75b16412a2d165e270111a7395da98d46923ff0c203b94d9acb6bd0501c191bee4034668093492e658afa6b6c94fbdf0aae250e135ae8e0167554fc6890268d
7
- data.tar.gz: 48e5d784b41e77059b21cd6a9e7069f7574e0e787abb9f7eda30c88eacc6ec471acdb06053febdd9e57c8e667e3c1bee913b4be89f66cdf0be20e2392ada98bb
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
@@ -10,12 +10,12 @@ $font-main: 'Roboto Condensed', sans-serif !important;
10
10
  $font-mono: 'Roboto Mono', monospace;
11
11
 
12
12
  // colors
13
- $background-color: #142B51 !default;
14
- $text-background-color: #263037;
13
+ $background-color: #b7d3bb !default;
14
+ $text-background-color: #c2d8ce;
15
15
  $code-background-color: #D9D9D9;
16
16
  $code-foreground-color: black;
17
- $foreground-color: #E2E4E9 !default;
18
- $highlight-color: #d2f9e6;
17
+ $foreground-color: #1d2a24 !default;
18
+ $highlight-color: #58806e;
19
19
 
20
20
  // fonts, only the body
21
21
  $body-font-size: 12pt !default;
@@ -179,25 +179,35 @@ a {
179
179
  color: darken($foreground-color, 30%);
180
180
  }
181
181
 
182
- .post-list a,
183
- .project-list a {
182
+ .post-list li {
183
+ a {
184
+ text-decoration: none;
185
+ }
184
186
 
185
- color: darken($foreground-color, 30%);
187
+ .post-title {
188
+ font-size: 14pt;
189
+ font-weight: bold;
190
+ }
186
191
 
187
- .project-title, .post-title
188
- {
189
- color: $foreground-color;
192
+ .post-date {
193
+ color: $highlight-color;
194
+ display: inline-block;
195
+ width: 90px;
190
196
  }
191
197
 
192
- 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;
193
206
 
194
207
  &:hover {
195
- color: $highlight-color;
196
- .project-title, .post-title,
197
- .post-date, .project-date
208
+ .post-title, .post-date
198
209
  {
199
- text-decoration: underline;
200
- color: $highlight-color;
210
+ color: darken($highlight-color, 30%);
201
211
  }
202
212
  }
203
213
  }
@@ -224,13 +234,13 @@ a {
224
234
  }
225
235
  }
226
236
 
227
- .project-description,
228
- .post-description {
229
- display: inline-block;
230
- padding-top: 8pt;
231
- padding-bottom: 10px;
232
- border-bottom: 1px dashed darken($color: $foreground-color, $amount: 30%);
233
- }
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
+ // }
234
244
 
235
245
  .page-gh {
236
246
  font-size: 15pt;
@@ -333,7 +343,8 @@ pre.highlight {
333
343
  background-color: $code-background-color;
334
344
  color: $code-foreground-color;
335
345
  font-family: $font-mono;
336
- border: 1px solid black;
346
+ // border: 1px solid black;
347
+ font-size: 14px;
337
348
  }
338
349
 
339
350
  // inline code
@@ -487,4 +498,4 @@ table {
487
498
  }
488
499
  }
489
500
 
490
- @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.12
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