jekyll-theme-handwritten 4.2.0 → 4.3.1
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/README.md +11 -0
- data/_includes/head.html +7 -0
- data/_sass/minima/_layout.scss +1 -0
- data/_sass/minima/_mysass.scss +37 -1
- 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: 75310bd309a6f48c8327777d2a6336920f36b38ae99ba05bccf5cd5f14e79945
|
4
|
+
data.tar.gz: 6c78d618bc4d7f8a540c1c2642732eeeca9a8f159506a3fa54e58f650bc01213
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8a215e439aeb1f90975d96fa19247180f7a0a40ce633055d580bc3f79301aefd735e01dfaa48269f92a3f9e675dc8608fd308f620b9c2ed6cf85aa5c6a925e7
|
7
|
+
data.tar.gz: 6f8e7596f23c07bf81a80f37227a922007773ef6f696e67b38b0dc63894caf6917a0b39790b272611a80c7689dfa3dfb4ec65644333a18cb9898f62fc1c74002
|
data/README.md
CHANGED
@@ -63,6 +63,17 @@ Or install it yourself as:
|
|
63
63
|
|
64
64
|
## Usage
|
65
65
|
|
66
|
+
To pin a post add `status: pinned` to the front matter of the post markdown file e.g
|
67
|
+
|
68
|
+
```yaml
|
69
|
+
---
|
70
|
+
layout: post
|
71
|
+
title: "Welcome to Jekyll!"
|
72
|
+
status: pinned
|
73
|
+
---
|
74
|
+
<!-- post content -->
|
75
|
+
```
|
76
|
+
|
66
77
|
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
67
78
|
|
68
79
|
### TODO
|
data/_includes/head.html
CHANGED
@@ -9,6 +9,13 @@
|
|
9
9
|
type="font/woff2"
|
10
10
|
crossorigin
|
11
11
|
>
|
12
|
+
<link
|
13
|
+
rel="preload"
|
14
|
+
href="/assets/theme-assets/theme-fonts/comic shanns.otf"
|
15
|
+
as="font"
|
16
|
+
type="font/otf"
|
17
|
+
crossorigin
|
18
|
+
>
|
12
19
|
{% comment %} {%- seo -%} {% endcomment %}
|
13
20
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
14
21
|
<script>
|
data/_sass/minima/_layout.scss
CHANGED
data/_sass/minima/_mysass.scss
CHANGED
@@ -51,6 +51,8 @@
|
|
51
51
|
border-radius: 14px;
|
52
52
|
padding: 12px;
|
53
53
|
width: 30%;
|
54
|
+
transform-origin: top right;
|
55
|
+
animation: pin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
54
56
|
background-color: var(--md-sys-color-primary-container);
|
55
57
|
& p,
|
56
58
|
span,
|
@@ -131,7 +133,7 @@
|
|
131
133
|
bottom: 0;
|
132
134
|
width: 100vw;
|
133
135
|
height: fit-content;
|
134
|
-
background-color: var(--md-sys-color-surface-container
|
136
|
+
background-color: var(--md-sys-color-surface-container);
|
135
137
|
padding: 0px;
|
136
138
|
box-shadow: 0px -4px 16px 0px var(--md-sys-color-shadow);
|
137
139
|
.navrail-icon {
|
@@ -248,3 +250,37 @@ h1 {
|
|
248
250
|
@include media-query($on-palm) {
|
249
251
|
}
|
250
252
|
}
|
253
|
+
@keyframes pin {
|
254
|
+
0% {
|
255
|
+
transform: rotate(-35deg);
|
256
|
+
}
|
257
|
+
20% {
|
258
|
+
transform: rotate(10deg);
|
259
|
+
}
|
260
|
+
40% {
|
261
|
+
transform: rotate(-3deg);
|
262
|
+
}
|
263
|
+
60% {
|
264
|
+
transform: rotate(2deg);
|
265
|
+
}
|
266
|
+
80% {
|
267
|
+
transform: rotate(-1deg);
|
268
|
+
}
|
269
|
+
100% {
|
270
|
+
transform: rotate(0deg);
|
271
|
+
}
|
272
|
+
}
|
273
|
+
@keyframes mainreveal {
|
274
|
+
from {
|
275
|
+
transform: translateY(20%);
|
276
|
+
opacity: 0;
|
277
|
+
}
|
278
|
+
to {
|
279
|
+
transform: translate(0);
|
280
|
+
opacity: 1;
|
281
|
+
}
|
282
|
+
}
|
283
|
+
main {
|
284
|
+
overflow: hidden;
|
285
|
+
animation: mainreveal 0.25s;
|
286
|
+
}
|