aemi 1.1.2 → 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: 6e27c4e7657e8d0ec2e5cfdcd33c70a835cb5b5d623a90ac1244d4c429826548
4
- data.tar.gz: e8c0778184ea5aa058646af2579adee518224d2117bb7899ba978ce82fa6b400
3
+ metadata.gz: 18d814822771be8d8c70c994f78bb51b3229baa6b14c9d6f5dbf9abcbb391339
4
+ data.tar.gz: 0c63182ab812bfa0558922e5aa5a8f1c957dfd27046b5f591ab187385eeac611
5
5
  SHA512:
6
- metadata.gz: 20d1a6090e86bc25a839a811bb06b5c0a89cd657016a9c3bdf9f6d3a6acf999303e811d622d16575d73b6042d8f597d0fb06f6954e96c8bb0638d02730653117
7
- data.tar.gz: a3668748422ed9fab515a3ebc689fc1916d8a6bb00c87093df665a89d4cb43746745872c9acf5d55ef38181dc1d8fe43d85112808251407d643f76e7cd78400f
6
+ metadata.gz: 7b95ccf23fd87417284e2b5995aba84e80164d502ef8ce62f49ca8eb28aa788347e92a0edd66baee129fdc63c5b350f2a1f5e1662c4da40b27f1e90611f196d4
7
+ data.tar.gz: 2e11d2fcb057cb725046a1e85d88bb638ac370b74dbaba2a9de3cd7fdff713bad326bd403a5b35c063dcca4f9d8c443af0a206b2b78107f21861d4d5e2f5bb9d
@@ -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
@@ -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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aemi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume C
@@ -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