aemi 1.1.1 → 1.1.4

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: 2e175581a2edf55001c3a100c02878fa4458f6963b66a1710540341b22e94887
4
- data.tar.gz: d413280c443fef0026572dc1c9e6f55ca7eed95536a2a107a43aa3a0d6661dac
3
+ metadata.gz: fbbd788d965ed50d3ca4c7473f91ae3f54a59d4bd2635bcf75d732f41c129a5e
4
+ data.tar.gz: 1a73de9d2ca72fe7b40f6a92a73d6306643cb2c5ed5e014859d1a115fe690dbe
5
5
  SHA512:
6
- metadata.gz: e1434b70131c7e130314ff29d0e0d30513998b21ecc7c069b1229f291eee06868319fc0022256f96aec457fa871d2178b3d09705f07a2154686f71f2f29fd076
7
- data.tar.gz: 57a08f4c86320b26982ae3aa1b755a940fbae97b0191afe8b8feb886ee755775a6cfb4b465df6d20d1cfe7112d729fa1916f0a496cc1e7107e058ad3530d33ed
6
+ metadata.gz: 02fc807521c7f54009f2e23b2fc15392467b7d2dbe4c2e7429c498629ab429daf96574e454805dcd0c927b8ec4edb840b304cdf0b74075e37387af202ccf941e
7
+ data.tar.gz: 9fad4ffedec0b9f304a99a04c4b4f1c83c1fd30a59dbb1e2be8bf7fc2c067088d1f5dba955a5985a779f206974f16b51da7fdda5f161fba5f49aae539f53b1c7
data/_layouts/home.html CHANGED
@@ -64,7 +64,7 @@ layout: default
64
64
 
65
65
  {% if post.thumbnail %}
66
66
  <div class="entry-thumbnail">
67
- <img src="{{ post.thumbnail | prepend: '/assets/images/thumbnails/' | relative_url }}" alt="{{ post.title | escape }}" loading="lazy" width="100%" height="100%">
67
+ <img src="{{ post.thumbnail | prepend: '/assets/images/thumbnails/' | relative_url }}" alt="{{ post.title | escape }}" width="100%" height="100%">
68
68
  </div>
69
69
  {% endif %}
70
70
 
@@ -208,6 +208,7 @@ h6,
208
208
  .h7 {
209
209
  font-family: var(--head-font-family);
210
210
  font-weight: var(--head-font-weight);
211
+ font-feature-settings: "wght" var(--head-font-weight);
211
212
 
212
213
  &:only-child {
213
214
  margin-bottom: 0;
@@ -293,11 +294,18 @@ a {
293
294
  }
294
295
  }
295
296
 
297
+ abbr,
298
+ abbr[title],
299
+ acronym {
300
+ border-bottom: 2px dotted currentColor;
301
+ text-decoration: none;
302
+ }
303
+
296
304
  /**
297
305
  * Paragraphs
298
306
  */
299
307
  p {
300
- text-align: justify;
308
+ text-align: left;
301
309
  text-align-last: left;
302
310
  }
303
311
 
@@ -329,7 +337,7 @@ blockquote {
329
337
  border-left: 4px solid var(--border-color);
330
338
  padding-left: var(--half-spacing-unit);
331
339
  font-style: italic;
332
- text-align: justify;
340
+ text-align: left;
333
341
  text-align-last: left;
334
342
 
335
343
  > :last-child {
@@ -338,6 +346,19 @@ blockquote {
338
346
  }
339
347
 
340
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
+
341
362
 
342
363
  /**
343
364
  * Code formatting
@@ -369,6 +390,8 @@ code {
369
390
  }
370
391
 
371
392
  :not(pre)>code {
393
+ border-radius: calc(var(--border-radius) * 0.75 );
394
+ line-height: 1;
372
395
  white-space: normal;
373
396
  word-break: break-all;
374
397
  }
@@ -408,6 +431,17 @@ template {
408
431
  display: none;
409
432
  }
410
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
+
411
445
 
412
446
  /**
413
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;
@@ -92,6 +92,7 @@
92
92
  .brand {
93
93
 
94
94
  font-weight: var(--head-font-weight);
95
+ font-feature-settings: "wght" var(--head-font-weight);
95
96
  font-family: var(--head-font-family);
96
97
 
97
98
  &,
@@ -143,6 +144,7 @@
143
144
  display: none;
144
145
  font-family: var(--head-font-family);
145
146
  font-weight: 700;
147
+ font-feature-settings: "wght" 700;
146
148
  letter-spacing: .075em;
147
149
  margin-right: -.075em;
148
150
  text-transform: uppercase;
@@ -236,6 +238,7 @@
236
238
  font-family: var(--head-font-family);
237
239
  display: block;
238
240
  font-weight: 600;
241
+ font-feature-settings: "wght" 600;
239
242
  line-height: 1;
240
243
  padding: var(--quarter-spacing-unit);
241
244
 
@@ -258,6 +261,7 @@
258
261
 
259
262
  .site-excerpt {
260
263
  font-weight: 400;
264
+ font-feature-settings: "wght" 400;
261
265
  font-family: var(--base-font-family);
262
266
  line-height: 1.4;
263
267
  }
@@ -341,6 +345,7 @@
341
345
  > .entry-meta {
342
346
  font-size: 1.25rem;
343
347
  font-weight: 500;
348
+ font-feature-settings: "wght" 500;
344
349
  }
345
350
 
346
351
  .entry-title {
@@ -376,7 +381,7 @@
376
381
  position: relative;
377
382
  width: auto;
378
383
 
379
- border-radius: calc(var(--background-radius) * 2);
384
+ border-radius: calc(var(--background-radius) * 1.75);
380
385
 
381
386
  > header {
382
387
 
@@ -384,7 +389,7 @@
384
389
  background-position: center center;
385
390
  background-size: cover;
386
391
 
387
- border-radius: calc(var(--background-radius) * 2);
392
+ border-radius: calc(var(--background-radius) * 1.75);
388
393
 
389
394
  position: relative;
390
395
 
@@ -441,7 +446,7 @@
441
446
  border-width: 2px;
442
447
  border-color: transparent;
443
448
 
444
- border-radius: calc(var(--background-radius) * 2);
449
+ border-radius: calc(var(--background-radius) * 1.75);
445
450
 
446
451
  color: var(--text-color);
447
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
@@ -74,7 +74,7 @@ pre.highlight {
74
74
  @media (prefers-color-scheme: dark) {
75
75
  pre.highlight {
76
76
 
77
- .o, .k, .p, .n, .pi, .kc, .kd, .nx { color: var(--lighten-text-color-i); }
77
+ .o, .k, .p, .n, .pi, .kc, .kd, .nx, .py { color: var(--lighten-text-color-i); }
78
78
 
79
79
  > code * {
80
80
  filter: invert(1);
@@ -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.1
4
+ version: 1.1.4
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-29 00:00:00.000000000 Z
11
+ date: 2022-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -194,6 +194,7 @@ files:
194
194
  - assets/font-files/JetBrainsMono-ExtraLight.woff2
195
195
  - assets/font-files/JetBrainsMono-ExtraLightItalic.woff2
196
196
  - assets/font-files/JetBrainsMono-Italic.woff2
197
+ - assets/font-files/JetBrainsMono-Italic[wght].woff2
197
198
  - assets/font-files/JetBrainsMono-Light.woff2
198
199
  - assets/font-files/JetBrainsMono-LightItalic.woff2
199
200
  - assets/font-files/JetBrainsMono-Medium.woff2
@@ -201,6 +202,7 @@ files:
201
202
  - assets/font-files/JetBrainsMono-Regular.woff2
202
203
  - assets/font-files/JetBrainsMono-Thin.woff2
203
204
  - assets/font-files/JetBrainsMono-ThinItalic.woff2
205
+ - assets/font-files/JetBrainsMono[wght].woff2
204
206
  - assets/images/logo/favicon.svg
205
207
  - assets/images/thumbnails/thumbnail.svg
206
208
  - assets/main.scss