jekyll-theme-bean 1.0.5 → 1.0.7
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/assets/css/base.css +1 -1
- data/assets/css/ibm-plex.css +8 -8
- data/assets/css/layout.css +10 -1
- data/assets/css/reset.css +1 -1
- data/assets/css/theme.css +8 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e10ddbdb26778e9e727f2995daf198966b74d85e65d125dd8edca168309684b1
|
4
|
+
data.tar.gz: 55b0973f0744aa0cdfb7cbaf1a7eeff99c0857ed62afefd0f0fd5dde454a7077
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f59e3aabbf884648b22310c9b906f74896a0d2963be46a027c503e5c6322fd64e909970fd39a4a1e1278e051d5952fc9c9ae508098e36876fb93a81358ace547
|
7
|
+
data.tar.gz: '038042d630a7ed5c9c335605c743bb33b8d204433b71bcbad5b0cefc1a39be969a661b7267d21d94cd272607cc42ee3dc129358a11e51a6122eb76373398b26d'
|
data/assets/css/base.css
CHANGED
@@ -45,7 +45,7 @@ ins {
|
|
45
45
|
a {
|
46
46
|
color: var(--color-accent);
|
47
47
|
text-decoration: underline;
|
48
|
-
text-decoration-thickness: 0.
|
48
|
+
text-decoration-thickness: 0.1em;
|
49
49
|
text-decoration-color: transparent;
|
50
50
|
transition-property: color, text-decoration-color;
|
51
51
|
transition-timing-function: ease;
|
data/assets/css/ibm-plex.css
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
font-display: swap;
|
8
8
|
font-style: normal;
|
9
9
|
font-weight: 400;
|
10
|
-
src: url("
|
10
|
+
src: url("../fonts/plex-sans-400.woff2") format("woff2");
|
11
11
|
}
|
12
12
|
|
13
13
|
@font-face {
|
@@ -15,7 +15,7 @@
|
|
15
15
|
font-display: swap;
|
16
16
|
font-style: italic;
|
17
17
|
font-weight: 400;
|
18
|
-
src: url("
|
18
|
+
src: url("../fonts/plex-sans-400i.woff2") format("woff2");
|
19
19
|
}
|
20
20
|
|
21
21
|
@font-face {
|
@@ -23,7 +23,7 @@
|
|
23
23
|
font-display: swap;
|
24
24
|
font-style: normal;
|
25
25
|
font-weight: 700;
|
26
|
-
src: url("
|
26
|
+
src: url("../fonts/plex-sans-700.woff2") format("woff2");
|
27
27
|
}
|
28
28
|
|
29
29
|
@font-face {
|
@@ -31,7 +31,7 @@
|
|
31
31
|
font-display: swap;
|
32
32
|
font-style: italic;
|
33
33
|
font-weight: 700;
|
34
|
-
src: url("
|
34
|
+
src: url("../fonts/plex-sans-700i.woff2") format("woff2");
|
35
35
|
}
|
36
36
|
|
37
37
|
/*
|
@@ -43,7 +43,7 @@
|
|
43
43
|
font-display: swap;
|
44
44
|
font-style: normal;
|
45
45
|
font-weight: 400;
|
46
|
-
src: url("
|
46
|
+
src: url("../fonts/plex-mono-400.woff2") format("woff2");
|
47
47
|
}
|
48
48
|
|
49
49
|
@font-face {
|
@@ -51,7 +51,7 @@
|
|
51
51
|
font-display: swap;
|
52
52
|
font-style: italic;
|
53
53
|
font-weight: 400;
|
54
|
-
src: url("
|
54
|
+
src: url("../fonts/plex-mono-400i.woff2") format("woff2");
|
55
55
|
}
|
56
56
|
|
57
57
|
@font-face {
|
@@ -59,7 +59,7 @@
|
|
59
59
|
font-display: swap;
|
60
60
|
font-style: normal;
|
61
61
|
font-weight: 700;
|
62
|
-
src: url("
|
62
|
+
src: url("../fonts/plex-mono-700.woff2") format("woff2");
|
63
63
|
}
|
64
64
|
|
65
65
|
@font-face {
|
@@ -67,5 +67,5 @@
|
|
67
67
|
font-display: swap;
|
68
68
|
font-style: italic;
|
69
69
|
font-weight: 700;
|
70
|
-
src: url("
|
70
|
+
src: url("../fonts/plex-mono-700i.woff2") format("woff2");
|
71
71
|
}
|
data/assets/css/layout.css
CHANGED
@@ -330,6 +330,11 @@
|
|
330
330
|
margin-bottom: calc(var(--spacing-unit) / 2);
|
331
331
|
}
|
332
332
|
|
333
|
+
.post-header .post-meta a:hover,
|
334
|
+
.post-header .post-meta a:focus {
|
335
|
+
text-decoration-color: currentcolor;
|
336
|
+
}
|
337
|
+
|
333
338
|
.post .post-title {
|
334
339
|
font-weight: normal;
|
335
340
|
margin-bottom: 0;
|
@@ -367,8 +372,12 @@
|
|
367
372
|
color: var(--color-details);
|
368
373
|
}
|
369
374
|
|
370
|
-
.post
|
375
|
+
.post-meta a {
|
371
376
|
color: currentcolor;
|
377
|
+
text-decoration-thickness: 0.1em;
|
378
|
+
}
|
379
|
+
|
380
|
+
.post-footer .post-meta a {
|
372
381
|
text-decoration: underline;
|
373
382
|
}
|
374
383
|
|
data/assets/css/reset.css
CHANGED
data/assets/css/theme.css
CHANGED
@@ -6,8 +6,8 @@
|
|
6
6
|
:root {
|
7
7
|
/* Sizing */
|
8
8
|
/* --base-font-size: clamp(1.6rem, 2vw, 1.9rem); */
|
9
|
-
/* --small-font-size: clamp(1.
|
10
|
-
/* --spacing-unit:
|
9
|
+
/* --small-font-size: clamp(1.2rem, 1.5vw, 1.4rem); */
|
10
|
+
/* --spacing-unit: clamp(2rem, 2.5vw, 2.5rem); */
|
11
11
|
|
12
12
|
/* Typography */
|
13
13
|
/* --main-font-family: "IBM Plex Sans", system-ui, sans-serif; */
|
@@ -25,6 +25,11 @@
|
|
25
25
|
/* --color-details: rgb(149, 149, 153); */
|
26
26
|
/* --color-accent: rgb(1, 157, 224); */
|
27
27
|
/* --color-accent-alt: rgb(255, 0, 24); */
|
28
|
+
|
29
|
+
/* Defaults */
|
30
|
+
/* --border: 0.1rem solid var(--color-details); */
|
31
|
+
/* --radius: 0.5rem; */
|
32
|
+
/* --shadow: 0 0 0.5rem var(--color-details); */
|
28
33
|
}
|
29
34
|
|
30
35
|
@media screen and (prefers-color-scheme: dark) {
|
@@ -36,7 +41,7 @@
|
|
36
41
|
|
37
42
|
/* Colors */
|
38
43
|
/* --color-text: rgb(255, 255, 255); */
|
39
|
-
/* --color-shadows:
|
44
|
+
/* --color-shadows: rgb(0, 0, 0); */
|
40
45
|
/* --color-details: rgb(234, 238, 241); */
|
41
46
|
/* --color-accent: rgb(255, 241, 6); */
|
42
47
|
/* --color-accent-alt: rgb(235, 140, 45); */
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-bean
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arthur Freitas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|