jekyll-theme-handwritten 4.3.5 → 4.3.6
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/LICENSE.txt +21 -21
- data/README.md +92 -92
- data/_config.yml +54 -54
- data/_data/images.json +2 -2
- data/_includes/disqus_comments.html +20 -20
- data/_includes/footer.html +49 -49
- data/_includes/google-analytics.html +12 -12
- data/_includes/head.html +44 -45
- data/_includes/header.html +33 -33
- data/_includes/icon-github.html +1 -1
- data/_includes/icon-github.svg +1 -1
- data/_includes/icon-twitter.html +1 -1
- data/_includes/icon-twitter.svg +1 -1
- data/_includes/navrail.html +23 -23
- data/_includes/social.html +14 -14
- data/_includes/theme_selector.html +35 -35
- data/_layouts/default.html +23 -23
- data/_layouts/home.html +80 -80
- data/_layouts/page.html +14 -14
- data/_layouts/post.html +35 -35
- data/_sass/minima/_base.scss +846 -840
- data/_sass/minima/_layout.scss +277 -271
- data/_sass/minima/_mysass.scss +288 -287
- data/_sass/minima/_syntax-highlighting.scss +68 -68
- data/_sass/minima.scss +52 -52
- data/assets/main.scss +5 -5
- data/assets/minima-social-icons.svg +33 -33
- data/assets/theme-assets/js/theme.js +27 -27
- data/assets/theme-assets/material-theme/colors.module.css +294 -294
- data/assets/theme-assets/material-theme/theme.css +5 -5
- data/assets/theme-assets/material-theme/theme.dark.css +51 -51
- data/assets/theme-assets/material-theme/theme.light.css +51 -51
- data/assets/theme-assets/material-theme/tokens.css +303 -303
- data/assets/theme-assets/material-theme/typography.module.css +150 -150
- data/assets/theme-assets/theme-fonts/CascadiaCode-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/ComicShanns-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/Lexend-Regular.ttf +0 -0
- data/assets/theme-assets/theme-fonts/LilitaOne-Regular.ttf +0 -0
- data/assets/theme-assets/theme-fonts/Virgil-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/comic shanns.otf +0 -0
- data/assets/theme-assets/theme-icons/aboutme-small.svg +102 -102
- data/assets/theme-assets/theme-icons/aboutme.svg +9 -9
- data/assets/theme-assets/theme-icons/bookmark.svg +9 -9
- data/assets/theme-assets/theme-icons/categories-rough.svg +9 -9
- data/assets/theme-assets/theme-icons/categories2.svg +9 -9
- data/assets/theme-assets/theme-icons/divider.svg +19 -19
- data/assets/theme-assets/theme-icons/home-rough.svg +9 -9
- data/assets/theme-assets/theme-icons/home.svg +5 -5
- data/assets/theme-assets/theme-icons/home2.svg +9 -9
- data/assets/theme-assets/theme-icons/pin.svg +18 -18
- data/assets/theme-assets/theme-images/border-thick.svg +15 -15
- data/assets/theme-assets/theme-images/comp.png +0 -0
- data/assets/theme-assets/theme-images/comp.svg +9 -9
- data/assets/theme-assets/theme-images/logo.svg +9 -9
- data/assets/theme-assets/theme-images/menu.svg +9 -9
- metadata +13 -7
data/_sass/minima/_mysass.scss
CHANGED
@@ -1,288 +1,289 @@
|
|
1
|
-
.theme-picker {
|
2
|
-
display: flex;
|
3
|
-
padding-top: 12px;
|
4
|
-
padding-bottom: 12px;
|
5
|
-
padding-right: 15px;
|
6
|
-
margin-top: 4px;
|
7
|
-
justify-content: flex-end;
|
8
|
-
}
|
9
|
-
.all-post-wrapper {
|
10
|
-
max-width: 1200px;
|
11
|
-
margin-left: auto;
|
12
|
-
margin-right: auto;
|
13
|
-
}
|
14
|
-
.post-list {
|
15
|
-
display: grid;
|
16
|
-
grid-template-columns: repeat(6, 1fr);
|
17
|
-
gap: 8px;
|
18
|
-
grid-auto-flow: row;
|
19
|
-
grid-auto-rows: minmax(200px, auto);
|
20
|
-
margin-left: 0;
|
21
|
-
list-style: none;
|
22
|
-
}
|
23
|
-
.post-card {
|
24
|
-
position: relative;
|
25
|
-
grid-column: auto / span 2;
|
26
|
-
box-sizing: border-box;
|
27
|
-
display: flex;
|
28
|
-
flex-direction: column;
|
29
|
-
border-radius: 14px;
|
30
|
-
padding: 20px;
|
31
|
-
border: 1px solid var(--md-sys-color-outline);
|
32
|
-
& p {
|
33
|
-
display: -webkit-box;
|
34
|
-
line-clamp: 3;
|
35
|
-
-webkit-line-clamp: 3;
|
36
|
-
-webkit-box-orient: vertical;
|
37
|
-
overflow: hidden;
|
38
|
-
}
|
39
|
-
@media screen and (max-width: 1200px) {
|
40
|
-
grid-column: auto/span 3;
|
41
|
-
}
|
42
|
-
@media screen and (max-width: 800px) {
|
43
|
-
grid-column: auto/span 6;
|
44
|
-
}
|
45
|
-
}
|
46
|
-
.pinned-post-card {
|
47
|
-
position: relative;
|
48
|
-
box-sizing: border-box;
|
49
|
-
display: flex;
|
50
|
-
flex-direction: column;
|
51
|
-
border-radius: 14px;
|
52
|
-
padding: 12px;
|
53
|
-
width: 30%;
|
54
|
-
transform-origin: top right;
|
55
|
-
animation: pin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
56
|
-
background-color: var(--md-sys-color-primary-container);
|
57
|
-
& p,
|
58
|
-
span,
|
59
|
-
a {
|
60
|
-
color: var(--md-sys-color-on-primary-container);
|
61
|
-
}
|
62
|
-
& img {
|
63
|
-
background-color: var(--md-sys-color-surface-container-high);
|
64
|
-
border-radius: 24px;
|
65
|
-
}
|
66
|
-
@media screen and (max-width: 1300px) {
|
67
|
-
width: 46%;
|
68
|
-
}
|
69
|
-
@media screen and (max-width: 850px) {
|
70
|
-
width: 100%;
|
71
|
-
& p {
|
72
|
-
display: -webkit-box;
|
73
|
-
line-clamp: 5;
|
74
|
-
-webkit-line-clamp: 5;
|
75
|
-
-webkit-box-orient: vertical;
|
76
|
-
overflow: hidden;
|
77
|
-
}
|
78
|
-
}
|
79
|
-
}
|
80
|
-
|
81
|
-
.pinned-post-list {
|
82
|
-
display: flex;
|
83
|
-
margin-left: 0;
|
84
|
-
flex-wrap: wrap;
|
85
|
-
justify-content: space-around;
|
86
|
-
padding-top: 12px;
|
87
|
-
list-style: none;
|
88
|
-
background-color: var(--md-sys-color-surface-container);
|
89
|
-
border-radius: 24px;
|
90
|
-
padding: $spacing-unit;
|
91
|
-
min-height: 390px;
|
92
|
-
@media screen and (max-width: 850px) {
|
93
|
-
padding: $spacing-unit/2;
|
94
|
-
min-height: 200px;
|
95
|
-
}
|
96
|
-
|
97
|
-
> li:not(:last-child) {
|
98
|
-
margin-bottom: $spacing-unit;
|
99
|
-
}
|
100
|
-
}
|
101
|
-
.pinned-post-card::before {
|
102
|
-
content: "";
|
103
|
-
position: absolute;
|
104
|
-
top: -10px;
|
105
|
-
left: -12px;
|
106
|
-
right: -10px;
|
107
|
-
bottom: -10px;
|
108
|
-
background-image: url("/assets/theme-assets/theme-images/border-thick.svg");
|
109
|
-
background-size: 100% 100%;
|
110
|
-
filter: var(--outline-filter);
|
111
|
-
pointer-events: none; /* Allows interaction with content inside the border */
|
112
|
-
}
|
113
|
-
.navrail {
|
114
|
-
font-family: "Comic Shanns", $base-font-family;
|
115
|
-
position: fixed;
|
116
|
-
display: flex;
|
117
|
-
flex-direction: column;
|
118
|
-
height: 100vh;
|
119
|
-
justify-content: flex-start;
|
120
|
-
align-items: center;
|
121
|
-
z-index: 99;
|
122
|
-
padding: 30px 8px 30px 16px;
|
123
|
-
box-sizing: border-box;
|
124
|
-
width: 100px;
|
125
|
-
// background-color: var(--md-sys-color-surface);
|
126
|
-
@media screen and (min-width: 1360px) {
|
127
|
-
width: 130px;
|
128
|
-
}
|
129
|
-
|
130
|
-
@include media-query($on-palm) {
|
131
|
-
flex-direction: row;
|
132
|
-
bottom: 0;
|
133
|
-
width: 100vw;
|
134
|
-
height: fit-content;
|
135
|
-
background-color: var(--md-sys-color-surface-container-high);
|
136
|
-
padding: 0px;
|
137
|
-
box-shadow: 0px -4px 16px 0px var(--md-sys-color-shadow);
|
138
|
-
.navrail-icon {
|
139
|
-
max-height: 34px;
|
140
|
-
max-width: max-content;
|
141
|
-
object-fit: cover;
|
142
|
-
}
|
143
|
-
.navrail-button {
|
144
|
-
padding: 8px 0 8px 0;
|
145
|
-
}
|
146
|
-
}
|
147
|
-
}
|
148
|
-
.navrail-button {
|
149
|
-
padding: 12px 0 12px 0;
|
150
|
-
position: relative;
|
151
|
-
display: flex;
|
152
|
-
flex-direction: column;
|
153
|
-
width: 100%;
|
154
|
-
justify-content: center;
|
155
|
-
align-items: center;
|
156
|
-
color: var(--md-sys-color-on-surface);
|
157
|
-
}
|
158
|
-
.navrail-icon {
|
159
|
-
max-width: 40px;
|
160
|
-
}
|
161
|
-
|
162
|
-
.theme-selector {
|
163
|
-
position: relative;
|
164
|
-
display: flex;
|
165
|
-
justify-content: flex-end;
|
166
|
-
margin-left: auto;
|
167
|
-
padding: 6px;
|
168
|
-
margin-top: 8px;
|
169
|
-
margin-right: 8px;
|
170
|
-
border-radius: 99px;
|
171
|
-
background-color: rgba(70, 70, 70, 0.233);
|
172
|
-
backdrop-filter: blur(8px);
|
173
|
-
width: fit-content;
|
174
|
-
@media screen and (min-width: 601px) {
|
175
|
-
position: fixed;
|
176
|
-
z-index: 103;
|
177
|
-
bottom: 10px;
|
178
|
-
left: 30px;
|
179
|
-
}
|
180
|
-
}
|
181
|
-
|
182
|
-
.current-theme {
|
183
|
-
height: 26px;
|
184
|
-
width: 26px;
|
185
|
-
border-radius: 50%;
|
186
|
-
background-color: var(--current-color); /* Initial theme color */
|
187
|
-
margin-left: 12px;
|
188
|
-
cursor: pointer;
|
189
|
-
transition: transform 0.3s;
|
190
|
-
}
|
191
|
-
.theme-options {
|
192
|
-
display: flex;
|
193
|
-
gap: 10px;
|
194
|
-
max-width: 0px;
|
195
|
-
transition: all 0.3s;
|
196
|
-
}
|
197
|
-
.theme-option {
|
198
|
-
width: 26px;
|
199
|
-
height: 26px;
|
200
|
-
border-radius: 50%;
|
201
|
-
cursor: pointer;
|
202
|
-
}
|
203
|
-
.home {
|
204
|
-
padding-right: $spacing-unit;
|
205
|
-
padding-left: $spacing-unit + 100;
|
206
|
-
@extend %clearfix;
|
207
|
-
@include media-query($on-laptop) {
|
208
|
-
padding-right: $spacing-unit / 2;
|
209
|
-
padding-left: ($spacing-unit / 2)+100;
|
210
|
-
}
|
211
|
-
@include media-query($on-palm) {
|
212
|
-
padding-left: $spacing-unit/2;
|
213
|
-
}
|
214
|
-
}
|
215
|
-
.pin-svg {
|
216
|
-
position: absolute;
|
217
|
-
height: 80px;
|
218
|
-
width: auto;
|
219
|
-
top: -34px;
|
220
|
-
right: 15px;
|
221
|
-
z-index: 11;
|
222
|
-
}
|
223
|
-
.pin-path {
|
224
|
-
stroke: var(--md-sys-color-tertiary);
|
225
|
-
stroke-width: 2.5;
|
226
|
-
}
|
227
|
-
h1 {
|
228
|
-
font-family: "Comic Shanns", $base-font-family;
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
margin-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
stroke
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
margin-
|
249
|
-
|
250
|
-
|
251
|
-
}
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
}
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
}
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
1
|
+
.theme-picker {
|
2
|
+
display: flex;
|
3
|
+
padding-top: 12px;
|
4
|
+
padding-bottom: 12px;
|
5
|
+
padding-right: 15px;
|
6
|
+
margin-top: 4px;
|
7
|
+
justify-content: flex-end;
|
8
|
+
}
|
9
|
+
.all-post-wrapper {
|
10
|
+
max-width: 1200px;
|
11
|
+
margin-left: auto;
|
12
|
+
margin-right: auto;
|
13
|
+
}
|
14
|
+
.post-list {
|
15
|
+
display: grid;
|
16
|
+
grid-template-columns: repeat(6, 1fr);
|
17
|
+
gap: 8px;
|
18
|
+
grid-auto-flow: row;
|
19
|
+
grid-auto-rows: minmax(200px, auto);
|
20
|
+
margin-left: 0;
|
21
|
+
list-style: none;
|
22
|
+
}
|
23
|
+
.post-card {
|
24
|
+
position: relative;
|
25
|
+
grid-column: auto / span 2;
|
26
|
+
box-sizing: border-box;
|
27
|
+
display: flex;
|
28
|
+
flex-direction: column;
|
29
|
+
border-radius: 14px;
|
30
|
+
padding: 20px;
|
31
|
+
border: 1px solid var(--md-sys-color-outline);
|
32
|
+
& p {
|
33
|
+
display: -webkit-box;
|
34
|
+
line-clamp: 3;
|
35
|
+
-webkit-line-clamp: 3;
|
36
|
+
-webkit-box-orient: vertical;
|
37
|
+
overflow: hidden;
|
38
|
+
}
|
39
|
+
@media screen and (max-width: 1200px) {
|
40
|
+
grid-column: auto/span 3;
|
41
|
+
}
|
42
|
+
@media screen and (max-width: 800px) {
|
43
|
+
grid-column: auto/span 6;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
.pinned-post-card {
|
47
|
+
position: relative;
|
48
|
+
box-sizing: border-box;
|
49
|
+
display: flex;
|
50
|
+
flex-direction: column;
|
51
|
+
border-radius: 14px;
|
52
|
+
padding: 12px;
|
53
|
+
width: 30%;
|
54
|
+
transform-origin: top right;
|
55
|
+
animation: pin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
56
|
+
background-color: var(--md-sys-color-primary-container);
|
57
|
+
& p,
|
58
|
+
span,
|
59
|
+
a {
|
60
|
+
color: var(--md-sys-color-on-primary-container);
|
61
|
+
}
|
62
|
+
& img {
|
63
|
+
background-color: var(--md-sys-color-surface-container-high);
|
64
|
+
border-radius: 24px;
|
65
|
+
}
|
66
|
+
@media screen and (max-width: 1300px) {
|
67
|
+
width: 46%;
|
68
|
+
}
|
69
|
+
@media screen and (max-width: 850px) {
|
70
|
+
width: 100%;
|
71
|
+
& p {
|
72
|
+
display: -webkit-box;
|
73
|
+
line-clamp: 5;
|
74
|
+
-webkit-line-clamp: 5;
|
75
|
+
-webkit-box-orient: vertical;
|
76
|
+
overflow: hidden;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
81
|
+
.pinned-post-list {
|
82
|
+
display: flex;
|
83
|
+
margin-left: 0;
|
84
|
+
flex-wrap: wrap;
|
85
|
+
justify-content: space-around;
|
86
|
+
padding-top: 12px;
|
87
|
+
list-style: none;
|
88
|
+
background-color: var(--md-sys-color-surface-container);
|
89
|
+
border-radius: 24px;
|
90
|
+
padding: $spacing-unit;
|
91
|
+
min-height: 390px;
|
92
|
+
@media screen and (max-width: 850px) {
|
93
|
+
padding: $spacing-unit/2;
|
94
|
+
min-height: 200px;
|
95
|
+
}
|
96
|
+
|
97
|
+
> li:not(:last-child) {
|
98
|
+
margin-bottom: $spacing-unit;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
.pinned-post-card::before {
|
102
|
+
content: "";
|
103
|
+
position: absolute;
|
104
|
+
top: -10px;
|
105
|
+
left: -12px;
|
106
|
+
right: -10px;
|
107
|
+
bottom: -10px;
|
108
|
+
background-image: url("/assets/theme-assets/theme-images/border-thick.svg");
|
109
|
+
background-size: 100% 100%;
|
110
|
+
filter: var(--outline-filter);
|
111
|
+
pointer-events: none; /* Allows interaction with content inside the border */
|
112
|
+
}
|
113
|
+
.navrail {
|
114
|
+
font-family: "Comic Shanns", $base-font-family;
|
115
|
+
position: fixed;
|
116
|
+
display: flex;
|
117
|
+
flex-direction: column;
|
118
|
+
height: 100vh;
|
119
|
+
justify-content: flex-start;
|
120
|
+
align-items: center;
|
121
|
+
z-index: 99;
|
122
|
+
padding: 30px 8px 30px 16px;
|
123
|
+
box-sizing: border-box;
|
124
|
+
width: 100px;
|
125
|
+
// background-color: var(--md-sys-color-surface);
|
126
|
+
@media screen and (min-width: 1360px) {
|
127
|
+
width: 130px;
|
128
|
+
}
|
129
|
+
|
130
|
+
@include media-query($on-palm) {
|
131
|
+
flex-direction: row;
|
132
|
+
bottom: 0;
|
133
|
+
width: 100vw;
|
134
|
+
height: fit-content;
|
135
|
+
background-color: var(--md-sys-color-surface-container-high);
|
136
|
+
padding: 0px;
|
137
|
+
box-shadow: 0px -4px 16px 0px var(--md-sys-color-shadow);
|
138
|
+
.navrail-icon {
|
139
|
+
max-height: 34px;
|
140
|
+
max-width: max-content;
|
141
|
+
object-fit: cover;
|
142
|
+
}
|
143
|
+
.navrail-button {
|
144
|
+
padding: 8px 0 8px 0;
|
145
|
+
}
|
146
|
+
}
|
147
|
+
}
|
148
|
+
.navrail-button {
|
149
|
+
padding: 12px 0 12px 0;
|
150
|
+
position: relative;
|
151
|
+
display: flex;
|
152
|
+
flex-direction: column;
|
153
|
+
width: 100%;
|
154
|
+
justify-content: center;
|
155
|
+
align-items: center;
|
156
|
+
color: var(--md-sys-color-on-surface);
|
157
|
+
}
|
158
|
+
.navrail-icon {
|
159
|
+
max-width: 40px;
|
160
|
+
}
|
161
|
+
|
162
|
+
.theme-selector {
|
163
|
+
position: relative;
|
164
|
+
display: flex;
|
165
|
+
justify-content: flex-end;
|
166
|
+
margin-left: auto;
|
167
|
+
padding: 6px;
|
168
|
+
margin-top: 8px;
|
169
|
+
margin-right: 8px;
|
170
|
+
border-radius: 99px;
|
171
|
+
background-color: rgba(70, 70, 70, 0.233);
|
172
|
+
backdrop-filter: blur(8px);
|
173
|
+
width: fit-content;
|
174
|
+
@media screen and (min-width: 601px) {
|
175
|
+
position: fixed;
|
176
|
+
z-index: 103;
|
177
|
+
bottom: 10px;
|
178
|
+
left: 30px;
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
.current-theme {
|
183
|
+
height: 26px;
|
184
|
+
width: 26px;
|
185
|
+
border-radius: 50%;
|
186
|
+
background-color: var(--current-color); /* Initial theme color */
|
187
|
+
margin-left: 12px;
|
188
|
+
cursor: pointer;
|
189
|
+
transition: transform 0.3s;
|
190
|
+
}
|
191
|
+
.theme-options {
|
192
|
+
display: flex;
|
193
|
+
gap: 10px;
|
194
|
+
max-width: 0px;
|
195
|
+
transition: all 0.3s;
|
196
|
+
}
|
197
|
+
.theme-option {
|
198
|
+
width: 26px;
|
199
|
+
height: 26px;
|
200
|
+
border-radius: 50%;
|
201
|
+
cursor: pointer;
|
202
|
+
}
|
203
|
+
.home {
|
204
|
+
padding-right: $spacing-unit;
|
205
|
+
padding-left: $spacing-unit + 100;
|
206
|
+
@extend %clearfix;
|
207
|
+
@include media-query($on-laptop) {
|
208
|
+
padding-right: $spacing-unit / 2;
|
209
|
+
padding-left: ($spacing-unit / 2)+100;
|
210
|
+
}
|
211
|
+
@include media-query($on-palm) {
|
212
|
+
padding-left: $spacing-unit/2;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
.pin-svg {
|
216
|
+
position: absolute;
|
217
|
+
height: 80px;
|
218
|
+
width: auto;
|
219
|
+
top: -34px;
|
220
|
+
right: 15px;
|
221
|
+
z-index: 11;
|
222
|
+
}
|
223
|
+
.pin-path {
|
224
|
+
stroke: var(--md-sys-color-tertiary);
|
225
|
+
stroke-width: 2.5;
|
226
|
+
}
|
227
|
+
h1 {
|
228
|
+
font-family: "Comic Shanns", $base-font-family;
|
229
|
+
// text-align: start;
|
230
|
+
}
|
231
|
+
.tagline {
|
232
|
+
font-family: "Comic Shanns", $base-font-family;
|
233
|
+
text-align: center;
|
234
|
+
font-size: 1.2rem;
|
235
|
+
}
|
236
|
+
.home {
|
237
|
+
max-width: 1200px;
|
238
|
+
margin-left: auto;
|
239
|
+
margin-right: auto;
|
240
|
+
}
|
241
|
+
.divider-path {
|
242
|
+
stroke: var(--md-sys-color-outline);
|
243
|
+
stroke-width: 2;
|
244
|
+
}
|
245
|
+
.divider-svg {
|
246
|
+
width: 100%;
|
247
|
+
height: auto;
|
248
|
+
margin-left: auto;
|
249
|
+
margin-right: auto;
|
250
|
+
@include media-query($on-palm) {
|
251
|
+
}
|
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
|
+
}
|
287
|
+
.card-title{
|
288
|
+
font-family: "Comic Shanns", $base-font-family;
|
288
289
|
}
|