jekyll-theme-tallneck 0.3.1 → 0.3.3

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: 05ff25c53b81c3c78ee9dcc3c296463f2204a7f91c59c71c985fbe621701d5ae
4
- data.tar.gz: 120ee0da12d74568b392d9561c02ea49144fc72c5b64086e30628b02f412e001
3
+ metadata.gz: 3bca53fe63882516cab19479701715d606edb5a5a3d074a781a643133daa6959
4
+ data.tar.gz: 2cd33cbbefe418f772d2b52ea598cf28afbaa68d29c7ac87d60a6dbdda681eca
5
5
  SHA512:
6
- metadata.gz: c61e412c3e5dd9ff0cda9b34abad7b32a70bcfef3ea02a0480e4f3953d42f14c3301efd584b271c6ca49df5d3be0aaf2b2f4361680ff9f0a64386a9240d40994
7
- data.tar.gz: 5e213babe9feeef1a157f8591ea981a9e412064f4857116d9e4fc2a20dec3510818688d52dc2a6c06e15c38fe3ed99700c3c5cca59aca56c871798380f6dbd47
6
+ metadata.gz: 87dd18bd53971be497d0cb6dede132bd7da511f90f9ecc0b074429b767d62bc9958ce476e80c56a64a063299873d13c278f57b388a8e53ed95ed0c4d1e1f6499
7
+ data.tar.gz: 28cca40d1c724ddcef06fb6882d6b31bcd2d030acaedf48943756f3e7cbaacabd4942ece151e00f0162c91ab4683279a64e072045c874634181f974510fd759a
data/_includes/head.html CHANGED
@@ -22,8 +22,8 @@
22
22
 
23
23
  <!-- Preload -->
24
24
  <link rel="preload" as="style" href="{{ "/assets/css/style.css" | relative_url }}">
25
- <link rel="preload" as="font" type="font/woff2" href="{{ "/assets/fonts/opensans/open-sans-v40-latin_latin-ext_math_symbols-700.woff2" | relative_url }}">
26
- <link rel="preload" as="font" type="font/woff2" href="{{ "/assets/fonts/opensans/open-sans-v40-latin_latin-ext_math_symbols-regular.woff2" | relative_url }}">
25
+ <link rel="preload" as="font" crossorigin type="font/woff2" href="{{ "/assets/fonts/opensans/open-sans-v40-latin_latin-ext_math_symbols-700.woff2" | relative_url }}">
26
+ <link rel="preload" as="font" crossorigin type="font/woff2" href="{{ "/assets/fonts/opensans/open-sans-v40-latin_latin-ext_math_symbols-regular.woff2" | relative_url }}">
27
27
  <link rel="preload" as="image" type="image/svg+xml" href="{{ "/assets/images/logo.svg" | relative_url }}">
28
28
 
29
29
  <!-- CSS stylesheets -->
@@ -40,7 +40,7 @@
40
40
 
41
41
  <!-- PWA -->
42
42
  <meta name="theme-color" content="#282828"/>
43
- <meta content="yes" name="apple-mobile-web-app-capable">
43
+ <meta name="mobile-web-app-capable" content="yes">
44
44
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
45
45
  <link rel="manifest" href="/assets/sitemanifest.json">
46
46
  <link rel="apple-touch-icon" sizes="512x512" href="/assets/images/pwa_icon_x512.png">
data/_layouts/home.html CHANGED
@@ -17,8 +17,8 @@ layout: base
17
17
  </div>
18
18
 
19
19
  <div class="no_print" style="height: fit-content; align-items: center; text-align: center; margin: 3rem auto 0rem;">
20
- <a href="{{ '/feed' | relative_url }}" class="hidden-link hover-underline center">
21
- <span>Read all posts →</span>
20
+ <a href="{{ '/feed' | relative_url }}" class="btn">
21
+ Read all posts
22
22
  </a>
23
23
  </div>
24
24
  </div>
@@ -34,6 +34,7 @@ body {
34
34
  main {
35
35
  display: block;
36
36
  max-width: variables.$main-max-width;
37
+ margin-top: variables.$header-height;
37
38
  }
38
39
 
39
40
  a {
@@ -0,0 +1,18 @@
1
+ @use "../variables";
2
+
3
+ /* Modern outline button */
4
+ .btn {
5
+ display: inline-block;
6
+ padding: 0.5rem 1rem;
7
+ border: 1px solid var(--border-secondary);
8
+ background-color: transparent;
9
+ color: var(--text-primary);
10
+ border-radius: 0.5rem;
11
+ text-decoration: none;
12
+ transition: background-color 0.3s ease, color 0.3s ease;
13
+
14
+ &:hover {
15
+ background-color: var(--border-secondary);
16
+ color: var(--text-primary);
17
+ }
18
+ }
@@ -16,13 +16,13 @@
16
16
  padding-right: 2rem;
17
17
  }
18
18
 
19
- @media (max-width: 800px) and (min-width: 600px) {
19
+ @media (max-width: 800px) and (min-width: 680px) {
20
20
  grid-template-columns: 1fr 1fr;
21
21
  padding-left: 1rem;
22
22
  padding-right: 1rem;
23
23
  }
24
24
 
25
- @media (max-width: 600px) {
25
+ @media (max-width: 680px) {
26
26
  grid-template-columns: 1fr;
27
27
  }
28
28
 
@@ -30,7 +30,6 @@
30
30
 
31
31
  .post-card {
32
32
  max-width: variables.$card-max-width;
33
-
34
33
 
35
34
  vertical-align: middle;
36
35
 
@@ -2,3 +2,4 @@
2
2
  @forward "components/post-card";
3
3
  @forward "components/post-preview";
4
4
  @forward "components/about.scss";
5
+ @forward "components/button.scss";
@@ -1,10 +1,10 @@
1
1
  @use "variables";
2
2
 
3
3
  .page-header {
4
- position: relative;
4
+ position: fixed;
5
5
  z-index: 100;
6
6
  width: 100%;
7
- height: 3.3rem;
7
+ height: variables.$header-height;
8
8
 
9
9
  background-color: var(--header-background);
10
10
  color: var(--header-text-primary);
@@ -7,10 +7,10 @@
7
7
  position: relative;
8
8
  margin: 0 auto;
9
9
 
10
- padding: 2rem 2rem 1rem 2rem;
10
+ padding: 2rem + variables.$header-height 2rem 1rem 2rem;
11
11
 
12
12
  @media screen and (max-width: 380px) {
13
- padding: 1rem 1.25rem;
13
+ padding: 1rem + variables.$header-height 1.25rem;
14
14
  }
15
15
 
16
16
  img {
@@ -18,12 +18,14 @@ $table-text-align: left !default;
18
18
 
19
19
  $min-width : 220px !default;
20
20
 
21
+ $header-height: 3.3rem !default;
22
+
21
23
  // Width of the content area
22
24
  $main-max-width: 1200px !default;
23
25
  $content-width-overflow: 100px !default;
24
26
  $content-width: 1000px !default;
25
27
 
26
- $card-max-width: 18rem !default;
28
+ $card-max-width: 28rem !default;
27
29
  $card-min-width: 16rem !default;
28
30
  $card-min-height: 400px !default;
29
31
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-tallneck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Toniutti
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-08 00:00:00.000000000 Z
11
+ date: 2025-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -104,7 +104,7 @@ dependencies:
104
104
  - - ">="
105
105
  - !ruby/object:Gem::Version
106
106
  version: '0'
107
- description:
107
+ description:
108
108
  email:
109
109
  - john.toniutti@gmail.com
110
110
  executables: []
@@ -130,6 +130,7 @@ files:
130
130
  - _sass/tallneck/base.scss
131
131
  - _sass/tallneck/components.scss
132
132
  - _sass/tallneck/components/about.scss
133
+ - _sass/tallneck/components/button.scss
133
134
  - _sass/tallneck/components/post-card.scss
134
135
  - _sass/tallneck/components/post-preview.scss
135
136
  - _sass/tallneck/components/post.scss
@@ -195,7 +196,7 @@ licenses:
195
196
  - MIT
196
197
  metadata:
197
198
  plugin_type: theme
198
- post_install_message:
199
+ post_install_message:
199
200
  rdoc_options: []
200
201
  require_paths:
201
202
  - lib
@@ -211,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
211
212
  version: '0'
212
213
  requirements: []
213
214
  rubygems_version: 3.4.10
214
- signing_key:
215
+ signing_key:
215
216
  specification_version: 4
216
217
  summary: A minimalist Jekyll theme with dark mode support
217
218
  test_files: []