jekyll-theme-noesya 1.0.41 → 1.0.45
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/seo.html +2 -2
- data/_sass/commons/fonts.sass +7 -0
- data/_sass/commons/typography.sass +9 -0
- data/_sass/main.sass +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb9c6ea2e8f2b0923503a80a1f1fa41d616e63087ede6266f8a4726839bdc225
|
4
|
+
data.tar.gz: 317d2a46177b78e3e03d788f62cf5ab604cbc0921d34f21376d31c0fe2203fdd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30429da8ed46a3feaf35e7c7d878d97f89cff8bac7d24fa06897aa0b3a42475d9f872d682889e295f303e5887c648d7b2d29d6b445371cee51b7740820f61dde
|
7
|
+
data.tar.gz: c580c12b9caa747a0f2f4e654f85346c7da09b7884eab59d066d537c6fd0fa98f9601ad74d2c0734be43d8522c74b2d9847c5560f1ef982e1afc33daad16351e
|
data/_includes/seo.html
CHANGED
@@ -24,8 +24,8 @@
|
|
24
24
|
<meta name="twitter:description" content="{{ description_seo }}">
|
25
25
|
<meta name="twitter:image" content="{{ image_seo }}">
|
26
26
|
<meta name="twitter:card" content="summary_large_image">
|
27
|
-
<meta property="twitter:domain" content="
|
27
|
+
<meta property="twitter:domain" content="noesya_coop">
|
28
28
|
<meta property="twitter:url" content="{{ site.url }}{{ page.url }}">
|
29
29
|
|
30
30
|
<!-- Icons -->
|
31
|
-
<link rel="icon" type="image/png" href="
|
31
|
+
<link rel="icon" type="image/png" href="https://assets.noesya.coop/images/share/favicon.png" />
|
data/_sass/commons/fonts.sass
CHANGED
@@ -12,6 +12,13 @@
|
|
12
12
|
font-weight: 400
|
13
13
|
src: url('https://assets.noesya.coop/fonts/signifier/signifier-web-regular-italic.woff2') format('woff2')
|
14
14
|
|
15
|
+
@font-face
|
16
|
+
font-display: swap
|
17
|
+
font-family: 'Signifier'
|
18
|
+
font-style: normal
|
19
|
+
font-weight: 700
|
20
|
+
src: url('https://assets.noesya.coop/fonts/signifier/signifier-bold.woff2') format('woff2')
|
21
|
+
|
15
22
|
@font-face
|
16
23
|
font-display: swap
|
17
24
|
font-family: 'Soehne'
|
@@ -33,6 +33,9 @@ h2
|
|
33
33
|
@include media-breakpoint-up(lg)
|
34
34
|
font-size: px2rem(45)
|
35
35
|
|
36
|
+
strong, b
|
37
|
+
font-weight: 700
|
38
|
+
|
36
39
|
// Engagements
|
37
40
|
p + h2
|
38
41
|
margin-top: $grid-gutter * 4
|
@@ -79,6 +82,12 @@ sup
|
|
79
82
|
em, i
|
80
83
|
font-style: italic
|
81
84
|
|
85
|
+
abbr
|
86
|
+
text-decoration-color: rgba(255,255,255,0.5)
|
87
|
+
text-decoration-style: dotted
|
88
|
+
text-decoration-thickness: 1px
|
89
|
+
text-underline-offset: 3px
|
90
|
+
|
82
91
|
blockquote
|
83
92
|
border-bottom: 1px $border-color solid
|
84
93
|
border-top: 1px $border-color solid
|
data/_sass/main.sass
CHANGED