jekyll-glass 0.2.3 → 0.3.0
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/_includes/header.html +1 -1
- data/_includes/social-item.html +3 -2
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/_custom.scss +0 -1
- data/_sass/_variables.scss +4 -2
- data/assets/css/main.scss +21 -11
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07462a15fb986e1733192c678410f5433c3fc9f2fd420c9c0ed66ca09aa0d4e5
|
4
|
+
data.tar.gz: faa87dfeeaca831c35c5cf7bc4fd9210c7182274b8479769211497bcabc71917
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 930f28297baf86273dfef51ca7f96d3c3d8d2a91615c7d81a8a618015303fe70650157048666d90d7fb0a2310c80aae16d8af19f2cf6792f1fb9c368b363cbd4
|
7
|
+
data.tar.gz: a17eb8e664ce9fb4dea942bb11f27ad162cbaf257daf57e8d4d7de06769a3a81eb73b3da8e52aa3c94d9163bc5f22bfcf83f15886910e43106c4094f08ad91ce
|
data/_includes/header.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<div id="page-header" class="glass container">
|
2
|
-
<
|
2
|
+
<div id="site-title"><a href="{{ site.baseurl }}/index">{{ site.title }}</a></div>
|
3
3
|
{% if site.description %}
|
4
4
|
<p id="site-description">{{ site.description }}</p>
|
5
5
|
{% endif %}
|
data/_includes/social-item.html
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
<li>{% assign entry = include.item %}
|
2
|
-
<a {% unless entry.platform == 'rss' %}rel="me" {% endunless %}href="{{ entry.user_url }}" target="_blank" title="{{ entry.title | default: entry.platform }}">
|
3
|
-
|
2
|
+
<a class="social-item" {% unless entry.platform == 'rss' %}rel="me" {% endunless %}href="{{ entry.user_url }}" target="_blank" title="{{ entry.title | default: entry.platform }}">
|
3
|
+
<span class="social-icon fa-brands fa-{{ entry.platform | default: entry.title | downcase }}"></span>
|
4
|
+
{{ entry.title | default: entry.platform }}
|
4
5
|
</a>
|
5
6
|
</li>
|
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
data/_sass/_custom.scss
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
@import "variables";
|
data/_sass/_variables.scss
CHANGED
@@ -3,8 +3,7 @@
|
|
3
3
|
$base-font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
|
4
4
|
"Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", Roboto, Helvetica,
|
5
5
|
Arial, sans-serif !default;
|
6
|
-
$code-font-family: "
|
7
|
-
"Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
|
6
|
+
$code-font-family: "Cascadia Code", "Cascadia Mono", monospace;
|
8
7
|
|
9
8
|
// https://coolors.co/1b2f33-28502e-47682c-8c7051-ef3054
|
10
9
|
$dark-color: #1b2f33ff !default; // Dark color used e.g. for the background
|
@@ -16,6 +15,9 @@ $light-color: #fff !default; // Light color used e.g. for foreground text
|
|
16
15
|
$link-color: #bbb !default;
|
17
16
|
$link-color-visited: #888 !default;
|
18
17
|
|
18
|
+
$foreground-color: $light-color !default;
|
19
|
+
$background-color: $dark-color !default;
|
20
|
+
|
19
21
|
$spacing-unit: 30px !default;
|
20
22
|
|
21
23
|
$table-text-align: left !default;
|
data/assets/css/main.scss
CHANGED
@@ -5,16 +5,19 @@
|
|
5
5
|
@import "custom";
|
6
6
|
@import "variables";
|
7
7
|
|
8
|
+
$fa-font-path: "../fonts/font-awesome";
|
9
|
+
@import 'font-awesome';
|
10
|
+
|
8
11
|
body {
|
9
12
|
font-family: $base-font-family;
|
10
|
-
color: $
|
13
|
+
color: $foreground-color;
|
11
14
|
-webkit-text-size-adjust: 100%;
|
12
15
|
-webkit-font-feature-settings: "kern" 1;
|
13
16
|
-moz-font-feature-settings: "kern" 1;
|
14
17
|
-o-font-feature-settings: "kern" 1;
|
15
18
|
font-feature-settings: "kern" 1;
|
16
19
|
font-kerning: normal;
|
17
|
-
background-color: $
|
20
|
+
background-color: $background-color;
|
18
21
|
}
|
19
22
|
|
20
23
|
a {
|
@@ -22,6 +25,10 @@ a {
|
|
22
25
|
}
|
23
26
|
|
24
27
|
a:visited {
|
28
|
+
color: $link-color;
|
29
|
+
}
|
30
|
+
|
31
|
+
.post-list a:visited, #page-content a:visited {
|
25
32
|
color: $link-color-visited;
|
26
33
|
}
|
27
34
|
|
@@ -43,21 +50,22 @@ h1 {
|
|
43
50
|
font-family: $code-font-family, monospace;
|
44
51
|
}
|
45
52
|
|
53
|
+
#site-title {
|
54
|
+
display: block;
|
55
|
+
font-size: 2em;
|
56
|
+
font-weight: bold;
|
57
|
+
margin-block: 0.67em;
|
58
|
+
font-family: $code-font-family, monospace;
|
59
|
+
}
|
60
|
+
|
61
|
+
|
46
62
|
.post-list-heading {
|
47
63
|
font-size: 26px;
|
48
64
|
}
|
49
65
|
|
50
|
-
|
51
|
-
color: $light-color;
|
66
|
+
.social-icon {
|
52
67
|
text-decoration: none;
|
53
68
|
}
|
54
|
-
h1 a:visited {
|
55
|
-
color: $light-color;
|
56
|
-
}
|
57
|
-
|
58
|
-
.static-links a:visited {
|
59
|
-
color: $link-color;
|
60
|
-
}
|
61
69
|
|
62
70
|
code {
|
63
71
|
font-family: $code-font-family, monospace;
|
@@ -141,3 +149,5 @@ body {
|
|
141
149
|
display: block;
|
142
150
|
}
|
143
151
|
}
|
152
|
+
|
153
|
+
@import "custom";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-glass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Linus Warnatz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.4.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: jekyll-font-awesome-sass
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 0.1.1
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 0.1.1
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: bundler
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,7 +134,7 @@ files:
|
|
120
134
|
- _sass/_custom.scss
|
121
135
|
- _sass/_variables.scss
|
122
136
|
- assets/css/main.scss
|
123
|
-
homepage: https://
|
137
|
+
homepage: https://libewa.xyz/jekyll-glass
|
124
138
|
licenses:
|
125
139
|
- MIT
|
126
140
|
metadata: {}
|