aemi 1.1.0 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ce34ce20018b4e07b9f4e3d0f9bb53cd89be6f67a9874720e93ba1df4789e5b
4
- data.tar.gz: d1f32189b58feb2da2124ee7e65d43ed5975681131dab1686f7fb9a7dce920fe
3
+ metadata.gz: 18d814822771be8d8c70c994f78bb51b3229baa6b14c9d6f5dbf9abcbb391339
4
+ data.tar.gz: 0c63182ab812bfa0558922e5aa5a8f1c957dfd27046b5f591ab187385eeac611
5
5
  SHA512:
6
- metadata.gz: a27b7b34c8dbbea57b1c7dd67b873e548987e87fe7f2a6def2304836f7d41eaec589986692023810cc81f34318075ccb54b04f7406fa763f5b5d63d8b2b81af4
7
- data.tar.gz: bfb824633531471b626cffb9a671837318f2dc47576a1c4b783d958b4b43560dbd413372726b45a3a042cb490529d23a61d13e4c878669e789a9e8ef43b3b6b5
6
+ metadata.gz: 7b95ccf23fd87417284e2b5995aba84e80164d502ef8ce62f49ca8eb28aa788347e92a0edd66baee129fdc63c5b350f2a1f5e1662c4da40b27f1e90611f196d4
7
+ data.tar.gz: 2e11d2fcb057cb725046a1e85d88bb638ac370b74dbaba2a9de3cd7fdff713bad326bd403a5b35c063dcca4f9d8c443af0a206b2b78107f21861d4d5e2f5bb9d
data/_data/mime.yml ADDED
@@ -0,0 +1,28 @@
1
+ types:
2
+ images:
3
+ -
4
+ ext: avif
5
+ type: avif
6
+ -
7
+ ext: webp
8
+ type: webp
9
+ -
10
+ ext: jpg
11
+ type: jpeg
12
+ -
13
+ ext: png
14
+ type: png
15
+ video:
16
+ -
17
+ ext: avif.webm
18
+ type: av1
19
+ -
20
+ ext: mov
21
+ type: H265
22
+ -
23
+ ext: webm
24
+ type: webm
25
+ -
26
+ ext: mp4
27
+ type: mp4
28
+
data/_data/sizes.yml ADDED
@@ -0,0 +1,38 @@
1
+ landscape:
2
+ -
3
+ width: 1920
4
+ height: 1080
5
+ -
6
+ width: 1280
7
+ height: 720
8
+ -
9
+ width: 853
10
+ height: 480
11
+ -
12
+ width: 640
13
+ height: 480
14
+ -
15
+ width: 427
16
+ height: 240
17
+ -
18
+ width: 256
19
+ height: 144
20
+ portrait:
21
+ -
22
+ width: 1080
23
+ height: 1920
24
+ -
25
+ width: 720
26
+ height: 1280
27
+ -
28
+ width: 480
29
+ height: 853
30
+ -
31
+ width: 360
32
+ height: 640
33
+ -
34
+ width: 240
35
+ height: 427
36
+ -
37
+ width: 144
38
+ height: 256
@@ -3,7 +3,7 @@
3
3
  <div class="contained">
4
4
 
5
5
  <div class="footer-header">
6
- <a class="footer-heading" rel="author" href="{{ '/' | relative_url }}">
6
+ <a class="footer-title brand" rel="author" href="{{ '/' | relative_url }}">
7
7
  {%- if site.logo -%}
8
8
  <strong class="screen-reader-text">{{ site.title | escape }}</strong>
9
9
  <img src="{{ site.logo | relative_url }}" alt="{{ site.title | escape }}" height="2rem">
@@ -3,7 +3,7 @@
3
3
  <div class="site-header-wrapper contained">
4
4
  {%- assign default_paths = site.pages | map: "path" -%}
5
5
  {%- assign page_paths = site.header_pages | default: default_paths -%}
6
- <a class="site-title" rel="author" href="{{ '/' | relative_url }}">
6
+ <a class="site-title brand" rel="author" href="{{ '/' | relative_url }}">
7
7
  {%- if site.logo -%}
8
8
  <img src="{{ site.logo | relative_url }}" alt="{{ site.title | escape }}" height="2rem">
9
9
  {%- else -%}
@@ -0,0 +1,13 @@
1
+ <figure class="image with-caption">
2
+ <picture>
3
+ {% for format in site.data.mime.types.images %}
4
+ <source srcset="{{ include.name | relative_url }}.{{ format.ext }}" type="image/{{ format.type }}">
5
+ {% endfor %}
6
+ <img src="{{ include.name | relative_url }}.png" {% if include.alt != nil %}alt="{{ include.alt | escape }}"{% endif %} loading="lazy">
7
+ </picture>
8
+ {% if include.caption != nil %}
9
+ <figcaption>{{ include.caption | escape }}</figcaption>
10
+ {% else if include.alt != nil %}
11
+ <figcaption>{{ include.alt | escape }}</figcaption>
12
+ {% endif %}
13
+ </figure>
@@ -0,0 +1,11 @@
1
+ <figure class="image no-caption">
2
+ <picture>
3
+ {% for format in site.data.mime.types.images %}
4
+ <source srcset="{{ include.name | relative_url }}.{{ format.ext }}" type="image/{{ format.type }}">
5
+ {% endfor %}
6
+ <img src="{{ include.name | relative_url }}.png" {% if include.alt != nil %}alt="{{ include.alt | escape }}"{% endif %} loading="lazy">
7
+ </picture>
8
+ {% if include.alt != nil %}
9
+ <figcaption class="screen-reader-text">{{ include.alt | escape }}</figcaption>
10
+ {% endif %}
11
+ </figure>
@@ -0,0 +1,27 @@
1
+ <figure class="video with-caption">
2
+ <video {% if include.autoplay == true %}autoplay{% endif %}
3
+ {% if include.loop == true %}loop{% endif %}
4
+ {% if include.muted == true %}muted{% endif %}
5
+ {% if include.controls == true %}controls{% endif %}
6
+ {% if include.alt != nil %}alt="{{ include.alt | escape }}"{% endif %}
7
+ width="100%">
8
+ {% for format in site.data.mime.types.video %}
9
+ {% if include.portrait == true %}
10
+ <source src="{{ include.name }}.full.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-height: 2560px)">
11
+ {% for size in site.data.sizes.portrait %}
12
+ <source src="{{ include.name }}.{{ size.height }}p.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-height: {{ size.height }}px)">
13
+ {% endfor %}
14
+ {% else %}
15
+ <source src="{{ include.name }}.full.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-width: 2560px)">
16
+ {% for size in site.data.sizes.landscape %}
17
+ <source src="{{ include.name }}.{{ size.height }}p.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-width: {{ size.width }}px)">
18
+ {% endfor %}
19
+ {% endif %}
20
+ {% endfor %}
21
+ </video>
22
+ {% if include.caption != nil %}
23
+ <figcaption>{{ include.caption | escape }}</figcaption>
24
+ {% else if include.alt != nil %}
25
+ <figcaption>{{ include.alt | escape }}</figcaption>
26
+ {% endif %}
27
+ </figure>
@@ -0,0 +1,24 @@
1
+ <figure class="video no-caption">
2
+ <video {% if include.autoplay == true %}autoplay{% endif %}
3
+ {% if include.loop == true %}loop{% endif %}
4
+ {% if include.muted == true %}muted{% endif %}
5
+ {% if include.controls == true %}controls{% endif %}
6
+ {% if include.alt != nil %}alt="{{ include.alt | escape }}"{% endif %} width="100%">
7
+ {% for format in site.data.mime.types.video %}
8
+ {% if include.portrait == true %}
9
+ <source src="{{ include.name }}.full.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-height: 2560px)">
10
+ {% for size in site.data.sizes.portrait %}
11
+ <source src="{{ include.name }}.{{ size.height }}p.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-height: {{ size.height }}px)">
12
+ {% endfor %}
13
+ {% else %}
14
+ <source src="{{ include.name }}.full.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-width: 2560px)">
15
+ {% for size in site.data.sizes.landscape %}
16
+ <source src="{{ include.name }}.{{ size.height }}p.{{ format.ext }}" type="video/{{ format.type }}" media="all and (min-width: {{ size.width }}px)">
17
+ {% endfor %}
18
+ {% endif %}
19
+ {% endfor %}
20
+ </video>
21
+ {% if include.alt != nil %}
22
+ <figcaption class="screen-reader-text">{{ include.alt | escape }}</figcaption>
23
+ {% endif %}
24
+ </figure>
data/_layouts/home.html CHANGED
@@ -63,7 +63,9 @@ layout: default
63
63
  <header class="entry-header">
64
64
 
65
65
  {% if post.thumbnail %}
66
- <div class="entry-thumbnail" style="background-image:url(/assets/images/thumbnails/{{ post.thumbnail | relative_url }})"></div>
66
+ <div class="entry-thumbnail">
67
+ <img src="{{ post.thumbnail | prepend: '/assets/images/thumbnails/' | relative_url }}" alt="{{ post.title | escape }}" width="100%" height="100%">
68
+ </div>
67
69
  {% endif %}
68
70
 
69
71
  <a class="entry-info {% if post.thumbnail %}with-thumbnail{% endif %}" href="{{ post.url | relative_url }}">
@@ -135,7 +135,7 @@ video {
135
135
  vertical-align: middle;
136
136
  }
137
137
 
138
- :not(figure, a) {
138
+ :not(figure, figure>picture, a) {
139
139
  > img,
140
140
  > video {
141
141
  margin-top: var(--half-spacing-unit);
@@ -148,14 +148,25 @@ video {
148
148
  * Figures
149
149
  */
150
150
  figure {
151
+
152
+ background-color: var(--background-color-lighten);
153
+ border: 1px solid var(--border-color);
154
+ border-radius: var(--border-radius);
155
+ padding: var(--quarter-spacing-unit);
156
+
151
157
  > img,
152
158
  > video {
159
+ border-radius: calc(var(--border-radius) / 2);
153
160
  display: block;
154
161
  }
155
162
  }
156
163
 
157
164
  figcaption {
165
+ display: block;
158
166
  font-size: .875rem;
167
+ font-style: italic;
168
+ margin-top: var(--quarter-spacing-unit);
169
+ text-align: center;
159
170
  }
160
171
 
161
172
 
@@ -197,6 +208,7 @@ h6,
197
208
  .h7 {
198
209
  font-family: var(--head-font-family);
199
210
  font-weight: var(--head-font-weight);
211
+ font-feature-settings: "wght" var(--head-font-weight);
200
212
 
201
213
  &:only-child {
202
214
  margin-bottom: 0;
@@ -282,11 +294,18 @@ a {
282
294
  }
283
295
  }
284
296
 
297
+ abbr,
298
+ abbr[title],
299
+ acronym {
300
+ border-bottom: 2px dotted currentColor;
301
+ text-decoration: none;
302
+ }
303
+
285
304
  /**
286
305
  * Paragraphs
287
306
  */
288
307
  p {
289
- text-align: justify;
308
+ text-align: left;
290
309
  text-align-last: left;
291
310
  }
292
311
 
@@ -318,7 +337,7 @@ blockquote {
318
337
  border-left: 4px solid var(--border-color);
319
338
  padding-left: var(--half-spacing-unit);
320
339
  font-style: italic;
321
- text-align: justify;
340
+ text-align: left;
322
341
  text-align-last: left;
323
342
 
324
343
  > :last-child {
@@ -327,6 +346,19 @@ blockquote {
327
346
  }
328
347
 
329
348
 
349
+ dfn {
350
+ border-bottom: 2px solid currentColor;
351
+ }
352
+
353
+ dt {
354
+ font-weight: bold;
355
+ padding-left: 0em;
356
+ }
357
+
358
+ dd {
359
+ margin-bottom: 1em;
360
+ }
361
+
330
362
 
331
363
  /**
332
364
  * Code formatting
@@ -358,6 +390,8 @@ code {
358
390
  }
359
391
 
360
392
  :not(pre)>code {
393
+ border-radius: calc(var(--border-radius) * 0.75 );
394
+ line-height: 1;
361
395
  white-space: normal;
362
396
  word-break: break-all;
363
397
  }
@@ -397,6 +431,17 @@ template {
397
431
  display: none;
398
432
  }
399
433
 
434
+ progress {
435
+ vertical-align: baseline;
436
+ }
437
+
438
+ iframe {
439
+ border: 0;
440
+ max-width: 100%;
441
+ padding: 0;
442
+ resize: none;
443
+ }
444
+
400
445
 
401
446
  /**
402
447
  * Wrapper
@@ -618,9 +618,33 @@
618
618
  font-display: swap;
619
619
  }
620
620
 
621
+ @font-face {
622
+ font-family: "JetBrains Mono Var";
623
+ font-weight: 100 900;
624
+ font-style: normal;
625
+ font-named-instance: "Regular";
626
+ font-display: swap;
627
+ src: url("/assets/font-files/JetBrainsMono[wght].woff2") format("woff2"),
628
+ url("https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/variable/JetBrainsMono[wght].woff2") format("woff2");
629
+ }
630
+
631
+ @font-face {
632
+ font-family: "JetBrains Mono Var";
633
+ font-weight: 100 900;
634
+ font-style: italic;
635
+ font-named-instance: "Italic";
636
+ font-display: swap;
637
+ src: url("/assets/font-files/JetBrainsMono-Italic[wght].woff2") format("woff2"),
638
+ url("https://raw.githubusercontent.com/JetBrains/JetBrainsMono/master/fonts/variable/JetBrainsMono-Italic[wght].woff2") format("woff2");
639
+ }
640
+
621
641
  :root {
622
642
 
623
- font: var(--base-font-weight) var(--base-font-size)/var(--base-line-height) var(--base-font-family);
643
+ font-weight: var(--base-font-weight);
644
+ font-feature-settings: "wght" var(--base-font-weight);
645
+ font-size: var(--base-font-size);
646
+ font-family: var(--base-font-family);
647
+ line-height: var(--base-line-height);
624
648
 
625
649
  // Font Kerning
626
650
  -webkit-font-feature-settings: "kern" 1;
@@ -89,30 +89,42 @@
89
89
  position: relative;
90
90
  }
91
91
 
92
- .site-title {
93
- display: block;
94
- font: var(--head-font-weight) 2rem/1 var(--head-font-family);
95
- line-height: 1.25;
96
- margin-bottom: 0;
97
- float: left;
98
- z-index: 1000;
92
+ .brand {
93
+
94
+ font-weight: var(--head-font-weight);
95
+ font-feature-settings: "wght" var(--head-font-weight);
96
+ font-family: var(--head-font-family);
97
+
98
+ &,
99
+ &:visited {
100
+ color: var(--text-color);
101
+ }
102
+
103
+ &,
104
+ &:hover {
105
+ text-decoration: none;
106
+ }
99
107
 
100
108
  > img {
101
109
  height: 2rem;
110
+ line-height: 1;
102
111
  border-radius: 0;
103
-
104
112
  @media (prefers-color-scheme: dark) {
105
113
  & {
114
+ color: var(--text-color-i);
106
115
  filter: invert(100%);
107
116
  }
108
117
  }
109
-
110
118
  }
119
+ }
111
120
 
112
- &,
113
- &:visited {
114
- color: var(--text-color);
115
- }
121
+ .site-title {
122
+ display: block;
123
+ font-size: 2rem;
124
+ line-height: 1;
125
+ margin-bottom: 0;
126
+ float: left;
127
+ z-index: 1000;
116
128
  }
117
129
 
118
130
  .site-nav {
@@ -132,6 +144,7 @@
132
144
  display: none;
133
145
  font-family: var(--head-font-family);
134
146
  font-weight: 700;
147
+ font-feature-settings: "wght" 700;
135
148
  letter-spacing: .075em;
136
149
  margin-right: -.075em;
137
150
  text-transform: uppercase;
@@ -225,6 +238,7 @@
225
238
  font-family: var(--head-font-family);
226
239
  display: block;
227
240
  font-weight: 600;
241
+ font-feature-settings: "wght" 600;
228
242
  line-height: 1;
229
243
  padding: var(--quarter-spacing-unit);
230
244
 
@@ -247,6 +261,7 @@
247
261
 
248
262
  .site-excerpt {
249
263
  font-weight: 400;
264
+ font-feature-settings: "wght" 400;
250
265
  font-family: var(--base-font-family);
251
266
  line-height: 1.4;
252
267
  }
@@ -262,26 +277,11 @@
262
277
  }
263
278
 
264
279
  .footer-header {
265
-
266
280
  display: block;
267
281
  margin-bottom: var(--half-spacing-unit);
268
-
269
- .footer-heading {
270
-
271
- &,
272
- &:visited {
273
- color: var(--text-color);
274
- }
275
-
276
- > img {
277
- height: 2rem;
278
- border-radius: 0;
279
- @media (prefers-color-scheme: dark) {
280
- & {
281
- filter: invert(100%);
282
- }
283
- }
284
- }
282
+ > .footer-title {
283
+ font-size: 1.5rem;
284
+ line-height: 1.25;
285
285
  }
286
286
  }
287
287
 
@@ -345,6 +345,7 @@
345
345
  > .entry-meta {
346
346
  font-size: 1.25rem;
347
347
  font-weight: 500;
348
+ font-feature-settings: "wght" 500;
348
349
  }
349
350
 
350
351
  .entry-title {
@@ -380,7 +381,7 @@
380
381
  position: relative;
381
382
  width: auto;
382
383
 
383
- border-radius: calc(var(--background-radius) * 2);
384
+ border-radius: calc(var(--background-radius) * 1.75);
384
385
 
385
386
  > header {
386
387
 
@@ -388,7 +389,7 @@
388
389
  background-position: center center;
389
390
  background-size: cover;
390
391
 
391
- border-radius: calc(var(--background-radius) * 2);
392
+ border-radius: calc(var(--background-radius) * 1.75);
392
393
 
393
394
  position: relative;
394
395
 
@@ -402,26 +403,36 @@
402
403
  transform: translate3d(0, 0, 0);
403
404
 
404
405
  >.entry-thumbnail {
405
- background-color: var(--item-background-color);
406
- background-position: center center;
407
- background-size: cover;
408
- filter: blur(0);
406
+ > img {
407
+ border-radius: 0;
408
+ filter: blur(0);
409
+ object-fit: cover;
410
+ object-position: center center;
411
+ transform: scale(1);
412
+ transition-property: filter, transform;
413
+ transition-duration: var(--transition-timing-std);
414
+ transition-timing-function: var(--transition-function-std);
415
+ }
409
416
  position: absolute;
410
- transform: translate(-50%, -50%) scale(1);
411
417
  height: 100%;
412
418
  width: 100%;
413
- top: 50%;
414
- left: 50%;
415
- transition-property: filter, opacity, transform;
419
+ top: 0;
420
+ left: 0;
421
+ transition-property: opacity;
416
422
  transition-duration: var(--transition-timing-std);
417
423
  transition-timing-function: var(--transition-function-std);
418
424
  }
419
425
 
420
426
  &:not(:hover) {
421
427
  >.entry-thumbnail {
422
- filter: blur(10px);
423
- transform: translate(-50%, -50%) scale(1.05);
424
- transition-property: filter, opacity, transform;
428
+ > img {
429
+ filter: blur(10px);
430
+ transform: scale(1.05);
431
+ transition-property: filter, transform;
432
+ transition-duration: var(--transition-timing-std);
433
+ transition-timing-function: var(--transition-function-std);
434
+ }
435
+ transition-property: opacity;
425
436
  transition-duration: var(--transition-timing-std);
426
437
  transition-timing-function: var(--transition-function-std);
427
438
  }
@@ -435,7 +446,7 @@
435
446
  border-width: 2px;
436
447
  border-color: transparent;
437
448
 
438
- border-radius: calc(var(--background-radius) * 2);
449
+ border-radius: calc(var(--background-radius) * 1.75);
439
450
 
440
451
  color: var(--text-color);
441
452
 
@@ -11,12 +11,12 @@ pre.highlight {
11
11
 
12
12
  .c { color: #998; font-style: italic } // Comment
13
13
  .err { color: #a61717; background-color: #e3d2d2 } // Error
14
- .k { font-weight: bold } // Keyword
15
- .o { font-weight: bold } // Operator
14
+ .k { font-weight: bold; font-feature-settings: "wght" 700; } // Keyword
15
+ .o { font-weight: bold; font-feature-settings: "wght" 700; } // Operator
16
16
  .cm { color: #998; font-style: italic } // Comment.Multiline
17
- .cp { color: #999; font-weight: bold } // Comment.Preproc
17
+ .cp { color: #999; font-weight: bold; font-feature-settings: "wght" 700; } // Comment.Preproc
18
18
  .c1 { color: #998; font-style: italic } // Comment.Single
19
- .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
19
+ .cs { color: #999; font-weight: bold; font-feature-settings: "wght" 700; font-style: italic } // Comment.Special
20
20
  .dl { color: #d14 } // Literal.String.Quote
21
21
  .gd { color: #000; background-color: #fdd } // Generic.Deleted
22
22
  .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
@@ -27,27 +27,27 @@ pre.highlight {
27
27
  .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
28
28
  .go { color: #888 } // Generic.Output
29
29
  .gp { color: #555 } // Generic.Prompt
30
- .gs { font-weight: bold } // Generic.Strong
30
+ .gs { font-weight: bold; font-feature-settings: "wght" 700; } // Generic.Strong
31
31
  .gu { color: #aaa } // Generic.Subheading
32
32
  .gt { color: #a00 } // Generic.Traceback
33
- .kc { font-weight: bold } // Keyword.Constant
34
- .kd { font-weight: bold } // Keyword.Declaration
35
- .kp { font-weight: bold } // Keyword.Pseudo
36
- .kr { font-weight: bold } // Keyword.Reserved
37
- .kt { color: #458; font-weight: bold } // Keyword.Type
33
+ .kc { font-weight: bold; font-feature-settings: "wght" 700; } // Keyword.Constant
34
+ .kd { font-weight: bold; font-feature-settings: "wght" 700; } // Keyword.Declaration
35
+ .kp { font-weight: bold; font-feature-settings: "wght" 700; } // Keyword.Pseudo
36
+ .kr { font-weight: bold; font-feature-settings: "wght" 700; } // Keyword.Reserved
37
+ .kt { color: #458; font-weight: bold; font-feature-settings: "wght" 700; } // Keyword.Type
38
38
  .m { color: #099 } // Literal.Number
39
39
  .s { color: #d14 } // Literal.String
40
40
  .na { color: #008080 } // Name.Attribute
41
41
  .nb { color: #0086B3 } // Name.Builtin
42
- .nc { color: #458; font-weight: bold } // Name.Class
42
+ .nc { color: #458; font-weight: bold; font-feature-settings: "wght" 700; } // Name.Class
43
43
  .no { color: #008080 } // Name.Constant
44
44
  .ni { color: #800080 } // Name.Entity
45
- .ne { color: #900; font-weight: bold } // Name.Exception
46
- .nf { color: #900; font-weight: bold } // Name.Function
45
+ .ne { color: #900; font-weight: bold; font-feature-settings: "wght" 700; } // Name.Exception
46
+ .nf { color: #900; font-weight: bold; font-feature-settings: "wght" 700; } // Name.Function
47
47
  .nn { color: #555 } // Name.Namespace
48
48
  .nt { color: #000080 } // Name.Tag
49
49
  .nv { color: #008080 } // Name.Variable
50
- .ow { font-weight: bold } // Operator.Word
50
+ .ow { font-weight: bold; font-feature-settings: "wght" 700; } // Operator.Word
51
51
  .w { color: #bbb } // Text.Whitespace
52
52
  .mf { color: #099 } // Literal.Number.Float
53
53
  .mh { color: #099 } // Literal.Number.Hex
@@ -4,7 +4,7 @@
4
4
 
5
5
  --head-font-family: -apple-system, BlinkMacSystemFont, "Inter Display var", "Inter Display", "Inter var", Inter, Lato, Roboto, system-ui, "Helvetica Neue", HelveticaNeue,Helvetica, Arial, sans-serif;
6
6
 
7
- --mono-font-family: "SFMono-Regular", "JetBrains Mono", "Roboto Mono", "Inconsolata", "Menlo", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Consolas", Courier, "Courier New", monospace;
7
+ --mono-font-family: "SFMono-Regular", "JetBrains Mono Var", "JetBrains Mono", "Roboto Mono", "Inconsolata", "Menlo", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Consolas", Courier, "Courier New", monospace;
8
8
 
9
9
  --base-font-size: 16px;
10
10
  --base-line-height: 1.5;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aemi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume C
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-24 00:00:00.000000000 Z
11
+ date: 2022-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -87,12 +87,18 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - _data/mime.yml
91
+ - _data/sizes.yml
90
92
  - _data/social.yml
91
93
  - _includes/content.html
92
94
  - _includes/footer.html
93
95
  - _includes/head.html
94
96
  - _includes/header.html
97
+ - _includes/image-caption.html
98
+ - _includes/image.html
95
99
  - _includes/social.html
100
+ - _includes/video-caption.html
101
+ - _includes/video.html
96
102
  - _layouts/default.html
97
103
  - _layouts/home.html
98
104
  - _layouts/page.html
@@ -188,6 +194,7 @@ files:
188
194
  - assets/font-files/JetBrainsMono-ExtraLight.woff2
189
195
  - assets/font-files/JetBrainsMono-ExtraLightItalic.woff2
190
196
  - assets/font-files/JetBrainsMono-Italic.woff2
197
+ - assets/font-files/JetBrainsMono-Italic[wght].woff2
191
198
  - assets/font-files/JetBrainsMono-Light.woff2
192
199
  - assets/font-files/JetBrainsMono-LightItalic.woff2
193
200
  - assets/font-files/JetBrainsMono-Medium.woff2
@@ -195,6 +202,7 @@ files:
195
202
  - assets/font-files/JetBrainsMono-Regular.woff2
196
203
  - assets/font-files/JetBrainsMono-Thin.woff2
197
204
  - assets/font-files/JetBrainsMono-ThinItalic.woff2
205
+ - assets/font-files/JetBrainsMono[wght].woff2
198
206
  - assets/images/logo/favicon.svg
199
207
  - assets/images/thumbnails/thumbnail.svg
200
208
  - assets/main.scss