jekyll-theme-superb 0.1.2 → 0.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40c4eec3d224570384b058705f1b0ecc6410b3196a89e83de7bcf21d44ffc0af
4
- data.tar.gz: 5fcdfe6c8d4a2f1715c83c8ee07c37fd50eddd5b6587fe7586b75d809651d66a
3
+ metadata.gz: 0a972fe88237d448a9a83ff486ef271240bb43902d29fb62b0e6cfee50800314
4
+ data.tar.gz: 542bde7431c58aa109e1fdd8315bd7c6095da3f0d2a977ae7cea2a0830ff8a18
5
5
  SHA512:
6
- metadata.gz: 5c385b06343e019a43b4de454f1d85759a901f507c662812951c400290c28f2e2fadaa37249c11da459e9ad56d96a608dbac18df97d8bebefbd3f098a69efdaa
7
- data.tar.gz: bba773f18608c4ac9549268a8b5225eb4aaff1ae0d0ab0ad2a0f6e4a62064502d3e3c6e59ce53fc3ccdd2939b27eb4a3b1ddfbea7fcf761293fc07d4a64df935
6
+ metadata.gz: 38ad183df39727644b6c8c8b3a0ced6a2d1c544007e84cc20c8b46caeebd4c5688182f9425da1e645f94cbc5a88d7f8a880420dc62536a2af96340b39dd76030
7
+ data.tar.gz: af5f1b3efa7413293fd13c27fdeac38b6a22638b7a0ebfc134e33097fa9dc05bb3ccc0a055c1a767f72e7ba1d059482e698cc5bf306fa15eb9e9766e9d6031a5
@@ -3,7 +3,7 @@
3
3
 
4
4
  {%- include head.html -%}
5
5
 
6
- <body class="font-merriweather">
6
+ <body class="font-serif">
7
7
  <div class="container mx-auto">
8
8
 
9
9
  {%- include header.html -%}
@@ -13,5 +13,4 @@
13
13
  {%- include footer.html -%}
14
14
  </div>
15
15
  </body>
16
-
17
16
  </html>
data/_layouts/page.html CHANGED
@@ -2,4 +2,6 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- {{ content }}
5
+ <div class="px-4 py-2 desktop:px-0 page">
6
+ {{ content }}
7
+ </div>
data/_layouts/post.html CHANGED
@@ -2,12 +2,12 @@
2
2
  layout: default
3
3
  ---
4
4
 
5
- <div class="prose max-w-fit py-4 px-4 desktop:px-4">
6
- <div>
7
- <span class="text-grey/50">0644</span>
8
- <span class="text-graphite mx-4">{{ page.author }}</span>
9
- <span class="text-graphite">{{ page.date | date: "%-d %b '%y" }}</span>
10
- </div>
11
- <h2 class="mb-6 mt-0">{{page.title}}</h2>
12
- {{ content }}
5
+ <div class="px-4 py-2 desktop:px-0 post">
6
+ <div>
7
+ <span class="text-grey/50">0644</span>
8
+ <span class="text-graphite mx-4">{{ page.author }}</span>
9
+ <span class="text-graphite">{{ page.date | date: "%-d %b '%y" }}</span>
10
+ </div>
11
+ <h2 class="mb-6 mt-0 desktop:text-h4 text-h5 font-bold">{{page.title}}</h2>
12
+ <div class="font-serif font-thin post">{{ content }}</div>
13
13
  </div>
data/_sass/theme.scss CHANGED
@@ -1,5 +1,25 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');
2
-
3
1
  @tailwind base;
4
2
  @tailwind components;
5
- @tailwind utilities;
3
+ @tailwind utilities;
4
+
5
+
6
+ @layer components {
7
+ .post, .page {
8
+ p {
9
+ margin-top: 1.25em;
10
+ margin-bottom: 1.25em;
11
+ }
12
+
13
+ a {
14
+ @apply link link-green;
15
+ }
16
+
17
+ code {
18
+ @apply bg-porcelain px-2;
19
+ }
20
+
21
+ ul, ol {
22
+ @apply list list-green;
23
+ }
24
+ }
25
+ }
data/assets/css/style.css CHANGED
@@ -1,10 +1,6 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');
2
-
3
1
  /*
4
2
  ! tailwindcss v3.0.9 | MIT License | https://tailwindcss.com
5
- */
6
-
7
- /*
3
+ *//*
8
4
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
9
5
  2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
10
6
  */
@@ -36,7 +32,7 @@ html {
36
32
  -moz-tab-size: 4; /* 3 */
37
33
  -o-tab-size: 4;
38
34
  tab-size: 4; /* 3 */
39
- font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
35
+ font-family: "Merriweather Sans", sans-serif; /* 4 */
40
36
  }
41
37
 
42
38
  /*
@@ -344,7 +340,6 @@ button,
344
340
  /*
345
341
  Make sure disabled buttons don't get the pointer cursor.
346
342
  */
347
-
348
343
  :disabled {
349
344
  cursor: default;
350
345
  }
@@ -384,590 +379,468 @@ Ensure the default browser behavior of the `hidden` attribute.
384
379
  [hidden] {
385
380
  display: none;
386
381
  }
387
-
388
- *, ::before, ::after{
382
+ *, ::before, ::after {
389
383
  border-color: currentColor;
390
384
  }
391
- .container{
385
+ .container {
392
386
  width: 100%;
393
387
  }
394
- @media (min-width: 960px){
388
+ @media (min-width: 960px) {
395
389
 
396
- .container{
390
+ .container {
397
391
  max-width: 960px;
398
392
  }
399
393
  }
400
- .prose{
401
- color: var(--tw-prose-body);
402
- max-width: 65ch;
403
- }
404
- .prose :where([class~="lead"]):not(:where([class~="not-prose"] *)){
405
- color: var(--tw-prose-lead);
406
- font-size: 1.25em;
407
- line-height: 1.6;
408
- margin-top: 1.2em;
409
- margin-bottom: 1.2em;
410
- }
411
- .prose :where(a):not(:where([class~="not-prose"] *)){
412
- color: var(--tw-prose-links);
413
- text-decoration: underline;
414
- font-weight: 500;
415
- }
416
- .prose :where(strong):not(:where([class~="not-prose"] *)){
417
- color: var(--tw-prose-bold);
418
- font-weight: 600;
419
- }
420
- .prose :where(ol):not(:where([class~="not-prose"] *)){
421
- list-style-type: decimal;
422
- padding-left: 1.625em;
423
- }
424
- .prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)){
425
- list-style-type: upper-alpha;
426
- }
427
- .prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)){
428
- list-style-type: lower-alpha;
429
- }
430
- .prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)){
431
- list-style-type: upper-alpha;
394
+ @font-face {
395
+ font-family: 'Merriweather';
396
+ font-style: italic;
397
+ font-weight: 300;
398
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4l0qyriQwlOrhSvowK_l5-eR7lXff8jvzDP3WGO5g.woff2) format('woff2');
432
399
  }
433
- .prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)){
434
- list-style-type: lower-alpha;
400
+ @font-face {
401
+ font-family: 'Merriweather';
402
+ font-style: italic;
403
+ font-weight: 300;
404
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4l0qyriQwlOrhSvowK_l5-eR7lXff4jvzDP3WG.woff2) format('woff2');
435
405
  }
436
- .prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)){
437
- list-style-type: upper-roman;
406
+ @font-face {
407
+ font-family: 'Merriweather';
408
+ font-style: italic;
409
+ font-weight: 400;
410
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4m0qyriQwlOrhSvowK_l5-eRZKf-LVrPHpBXw.woff2) format('woff2');
438
411
  }
439
- .prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)){
440
- list-style-type: lower-roman;
412
+ @font-face {
413
+ font-family: 'Merriweather';
414
+ font-style: italic;
415
+ font-weight: 400;
416
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4m0qyriQwlOrhSvowK_l5-eRZOf-LVrPHp.woff2) format('woff2');
417
+ }
418
+ @font-face {
419
+ font-family: 'Merriweather';
420
+ font-style: normal;
421
+ font-weight: 300;
422
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l521wRZXMf6hPvhPUWH.woff2) format('woff2');
423
+ }
424
+ @font-face {
425
+ font-family: 'Merriweather';
426
+ font-style: normal;
427
+ font-weight: 300;
428
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l521wRZWMf6hPvhPQ.woff2) format('woff2');
429
+ }
430
+ @font-face {
431
+ font-family: 'Merriweather';
432
+ font-style: normal;
433
+ font-weight: 400;
434
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-440qyriQwlOrhSvowK_l5-eCZMdeX3rsHo.woff2) format('woff2');
441
435
  }
442
- .prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)){
443
- list-style-type: upper-roman;
436
+ @font-face {
437
+ font-family: 'Merriweather';
438
+ font-style: normal;
439
+ font-weight: 400;
440
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-440qyriQwlOrhSvowK_l5-fCZMdeX3rg.woff2) format('woff2');
444
441
  }
445
- .prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)){
446
- list-style-type: lower-roman;
442
+ @font-face {
443
+ font-family: 'Merriweather';
444
+ font-style: normal;
445
+ font-weight: 700;
446
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l52xwNZXMf6hPvhPUWH.woff2) format('woff2');
447
447
  }
448
- .prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)){
449
- list-style-type: decimal;
448
+ @font-face {
449
+ font-family: 'Merriweather';
450
+ font-style: normal;
451
+ font-weight: 700;
452
+ src: url(https://fonts.gstatic.com/s/merriweather/v28/u-4n0qyriQwlOrhSvowK_l52xwNZWMf6hPvhPQ.woff2) format('woff2');
450
453
  }
451
- .prose :where(ul):not(:where([class~="not-prose"] *)){
452
- list-style-type: disc;
453
- padding-left: 1.625em;
454
+ @font-face {
455
+ font-family: 'Merriweather Sans';
456
+ font-style: italic;
457
+ font-weight: 300;
458
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwcjfj9zlcxZI.woff2) format('woff2');
454
459
  }
455
- .prose :where(ol > li):not(:where([class~="not-prose"] *))::marker{
460
+ @font-face {
461
+ font-family: 'Merriweather Sans';
462
+ font-style: italic;
456
463
  font-weight: 400;
457
- color: var(--tw-prose-counters);
464
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwcjfj9zlcxZI.woff2) format('woff2');
458
465
  }
459
- .prose :where(ul > li):not(:where([class~="not-prose"] *))::marker{
460
- color: var(--tw-prose-bullets);
466
+ @font-face {
467
+ font-family: 'Merriweather Sans';
468
+ font-style: italic;
469
+ font-weight: 700;
470
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwcjfj9zlcxZI.woff2) format('woff2');
461
471
  }
462
- .prose :where(hr):not(:where([class~="not-prose"] *)){
463
- border-color: var(--tw-prose-hr);
464
- border-top-width: 1px;
465
- margin-top: 3em;
466
- margin-bottom: 3em;
472
+ @font-face {
473
+ font-family: 'Merriweather Sans';
474
+ font-style: italic;
475
+ font-weight: 800;
476
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwcjrj9zlcxZKhaw.woff2) format('woff2');
467
477
  }
468
- .prose :where(blockquote):not(:where([class~="not-prose"] *)){
469
- font-weight: 500;
478
+ @font-face {
479
+ font-family: 'Merriweather Sans';
470
480
  font-style: italic;
471
- color: var(--tw-prose-quotes);
472
- border-left-width: 0.25rem;
473
- border-left-color: var(--tw-prose-quote-borders);
474
- quotes: "\201C""\201D""\2018""\2019";
475
- margin-top: 1.6em;
476
- margin-bottom: 1.6em;
477
- padding-left: 1em;
478
- }
479
- .prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before{
480
- content: open-quote;
481
- }
482
- .prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after{
483
- content: close-quote;
484
- }
485
- .prose :where(h1):not(:where([class~="not-prose"] *)){
486
- color: var(--tw-prose-headings);
487
481
  font-weight: 800;
488
- font-size: 2.25em;
489
- margin-top: 0;
490
- margin-bottom: 0.8888889em;
491
- line-height: 1.1111111;
482
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwcjfj9zlcxZI.woff2) format('woff2');
483
+ }
484
+ @font-face {
485
+ font-family: 'Merriweather Sans';
486
+ font-style: normal;
487
+ font-weight: 300;
488
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX4QjXp8Bte9ZM.woff2) format('woff2');
489
+ }
490
+ @font-face {
491
+ font-family: 'Merriweather Sans';
492
+ font-style: normal;
493
+ font-weight: 300;
494
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX1QjXp8Bte.woff2) format('woff2');
495
+ }
496
+ @font-face {
497
+ font-family: 'Merriweather Sans';
498
+ font-style: normal;
499
+ font-weight: 400;
500
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX4QjXp8Bte9ZM.woff2) format('woff2');
492
501
  }
493
- .prose :where(h1 strong):not(:where([class~="not-prose"] *)){
494
- font-weight: 900;
502
+ @font-face {
503
+ font-family: 'Merriweather Sans';
504
+ font-style: normal;
505
+ font-weight: 400;
506
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX1QjXp8Bte.woff2) format('woff2');
495
507
  }
496
- .prose :where(h2):not(:where([class~="not-prose"] *)){
497
- color: var(--tw-prose-headings);
508
+ @font-face {
509
+ font-family: 'Merriweather Sans';
510
+ font-style: normal;
498
511
  font-weight: 700;
499
- font-size: 1.5em;
500
- margin-top: 2em;
501
- margin-bottom: 1em;
502
- line-height: 1.3333333;
503
- }
504
- .prose :where(h2 strong):not(:where([class~="not-prose"] *)){
505
- font-weight: 800;
506
- }
507
- .prose :where(h3):not(:where([class~="not-prose"] *)){
508
- color: var(--tw-prose-headings);
509
- font-weight: 600;
510
- font-size: 1.25em;
511
- margin-top: 1.6em;
512
- margin-bottom: 0.6em;
513
- line-height: 1.6;
512
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX4QjXp8Bte9ZM.woff2) format('woff2');
514
513
  }
515
- .prose :where(h3 strong):not(:where([class~="not-prose"] *)){
514
+ @font-face {
515
+ font-family: 'Merriweather Sans';
516
+ font-style: normal;
516
517
  font-weight: 700;
518
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX1QjXp8Bte.woff2) format('woff2');
517
519
  }
518
- .prose :where(h4):not(:where([class~="not-prose"] *)){
519
- color: var(--tw-prose-headings);
520
- font-weight: 600;
521
- margin-top: 1.5em;
522
- margin-bottom: 0.5em;
523
- line-height: 1.5;
520
+ @font-face {
521
+ font-family: 'Merriweather Sans';
522
+ font-style: normal;
523
+ font-weight: 800;
524
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX4QjXp8Bte9ZM.woff2) format('woff2');
524
525
  }
525
- .prose :where(h4 strong):not(:where([class~="not-prose"] *)){
526
- font-weight: 700;
526
+ @font-face {
527
+ font-family: 'Merriweather Sans';
528
+ font-style: normal;
529
+ font-weight: 800;
530
+ src: url(https://fonts.gstatic.com/s/merriweathersans/v14/2-c99IRs1JiJN1FRAMjTN5zd9vgsFHX1QjXp8Bte.woff2) format('woff2');
527
531
  }
528
- .prose :where(figure > *):not(:where([class~="not-prose"] *)){
529
- margin-top: 0;
530
- margin-bottom: 0;
532
+ .link {
533
+ transition-property: color;
534
+ transition-duration: 200ms;
535
+ cursor: pointer;
536
+ color: #2e2e2e;
537
+ border-bottom: 2px solid #2e2e2e;
531
538
  }
532
- .prose :where(figcaption):not(:where([class~="not-prose"] *)){
533
- color: var(--tw-prose-captions);
534
- font-size: 0.875em;
535
- line-height: 1.4285714;
536
- margin-top: 0.8571429em;
539
+ .link:hover {
540
+ color: #000;
541
+ border-color: #000;
537
542
  }
538
- .prose :where(code):not(:where([class~="not-prose"] *)){
539
- color: var(--tw-prose-code);
540
- font-weight: 600;
541
- font-size: 0.875em;
543
+ .list li {
544
+ margin-left: 30px;
542
545
  }
543
- .prose :where(code):not(:where([class~="not-prose"] *))::before{
544
- content: "`";
546
+ .list li::marker {
547
+ color: #aaaaaa;
545
548
  }
546
- .prose :where(code):not(:where([class~="not-prose"] *))::after{
547
- content: "`";
549
+ ul.list {
550
+ list-style-type: disc;
548
551
  }
549
- .prose :where(a code):not(:where([class~="not-prose"] *)){
550
- color: var(--tw-prose-links);
552
+ ol.list {
553
+ list-style-type: counter;
551
554
  }
552
- .prose :where(pre):not(:where([class~="not-prose"] *)){
553
- color: var(--tw-prose-pre-code);
554
- background-color: var(--tw-prose-pre-bg);
555
- overflow-x: auto;
556
- font-weight: 400;
557
- font-size: 0.875em;
558
- line-height: 1.7142857;
559
- margin-top: 1.7142857em;
560
- margin-bottom: 1.7142857em;
561
- border-radius: 0.375rem;
562
- padding-top: 0.8571429em;
563
- padding-right: 1.1428571em;
564
- padding-bottom: 0.8571429em;
565
- padding-left: 1.1428571em;
566
- }
567
- .prose :where(pre code):not(:where([class~="not-prose"] *)){
568
- background-color: transparent;
569
- border-width: 0;
570
- border-radius: 0;
571
- padding: 0;
572
- font-weight: inherit;
573
- color: inherit;
574
- font-size: inherit;
575
- font-family: inherit;
576
- line-height: inherit;
555
+ .post p, .page p {
556
+ margin-top: 1.25em;
557
+ margin-bottom: 1.25em;
558
+ }
559
+ .post a, .page a {
560
+ transition-property: color;
561
+ transition-duration: 200ms;
562
+ cursor: pointer;
563
+ color: #2e2e2e;
564
+ border-bottom: 2px solid #2e2e2e;
577
565
  }
578
- .prose :where(pre code):not(:where([class~="not-prose"] *))::before{
579
- content: none;
566
+ .post a:hover, .page a:hover {
567
+ color: #000;
568
+ border-color: #000;
580
569
  }
581
- .prose :where(pre code):not(:where([class~="not-prose"] *))::after{
582
- content: none;
570
+ .post a, .page a {
571
+ color: #98b88b;
572
+ border-color: #98b88b;
583
573
  }
584
- .prose :where(table):not(:where([class~="not-prose"] *)){
585
- width: 100%;
586
- table-layout: auto;
587
- text-align: left;
588
- margin-top: 2em;
589
- margin-bottom: 2em;
590
- font-size: 0.875em;
591
- line-height: 1.7142857;
592
- }
593
- .prose :where(thead):not(:where([class~="not-prose"] *)){
594
- border-bottom-width: 1px;
595
- border-bottom-color: var(--tw-prose-th-borders);
574
+ .post a:hover, .page a:hover {
575
+ color: #98b88b;
576
+ border-color: #98b88b;
577
+ }
578
+ .post code, .page code {
579
+ --tw-bg-opacity: 1;
580
+ background-color: rgb(241 243 244 / var(--tw-bg-opacity));
581
+ padding-left: 0.5rem;
582
+ padding-right: 0.5rem;
596
583
  }
597
- .prose :where(thead th):not(:where([class~="not-prose"] *)){
598
- color: var(--tw-prose-headings);
599
- font-weight: 600;
600
- vertical-align: bottom;
601
- padding-right: 0.5714286em;
602
- padding-bottom: 0.5714286em;
603
- padding-left: 0.5714286em;
584
+ .post ul li, .post ol li, .page ul li, .page ol li {
585
+ margin-left: 30px;
604
586
  }
605
- .prose :where(tbody tr):not(:where([class~="not-prose"] *)){
606
- border-bottom-width: 1px;
607
- border-bottom-color: var(--tw-prose-td-borders);
587
+ .post ul li::marker, .post ol li::marker, .page ul li::marker, .page ol li::marker {
588
+ color: #aaaaaa;
608
589
  }
609
- .prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)){
610
- border-bottom-width: 0;
590
+ ul.post ul, ul.post ol, ul.page ul, ul.page ol {
591
+ list-style-type: disc;
611
592
  }
612
- .prose :where(tbody td):not(:where([class~="not-prose"] *)){
613
- vertical-align: baseline;
614
- padding-top: 0.5714286em;
615
- padding-right: 0.5714286em;
616
- padding-bottom: 0.5714286em;
617
- padding-left: 0.5714286em;
618
- }
619
- .prose{
620
- --tw-prose-body: #374151;
621
- --tw-prose-headings: #111827;
622
- --tw-prose-lead: #4b5563;
623
- --tw-prose-links: #111827;
624
- --tw-prose-bold: #111827;
625
- --tw-prose-counters: #6b7280;
626
- --tw-prose-bullets: #d1d5db;
627
- --tw-prose-hr: #e5e7eb;
628
- --tw-prose-quotes: #111827;
629
- --tw-prose-quote-borders: #e5e7eb;
630
- --tw-prose-captions: #6b7280;
631
- --tw-prose-code: #111827;
632
- --tw-prose-pre-code: #e5e7eb;
633
- --tw-prose-pre-bg: #1f2937;
634
- --tw-prose-th-borders: #d1d5db;
635
- --tw-prose-td-borders: #e5e7eb;
636
- --tw-prose-invert-body: #d1d5db;
637
- --tw-prose-invert-headings: #fff;
638
- --tw-prose-invert-lead: #9ca3af;
639
- --tw-prose-invert-links: #fff;
640
- --tw-prose-invert-bold: #fff;
641
- --tw-prose-invert-counters: #9ca3af;
642
- --tw-prose-invert-bullets: #4b5563;
643
- --tw-prose-invert-hr: #374151;
644
- --tw-prose-invert-quotes: #f3f4f6;
645
- --tw-prose-invert-quote-borders: #374151;
646
- --tw-prose-invert-captions: #9ca3af;
647
- --tw-prose-invert-code: #fff;
648
- --tw-prose-invert-pre-code: #d1d5db;
649
- --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
650
- --tw-prose-invert-th-borders: #4b5563;
651
- --tw-prose-invert-td-borders: #374151;
652
- font-size: 1rem;
653
- line-height: 1.75;
654
- }
655
- .prose :where(p):not(:where([class~="not-prose"] *)){
656
- margin-top: 1.25em;
657
- margin-bottom: 1.25em;
658
- }
659
- .prose :where(img):not(:where([class~="not-prose"] *)){
660
- margin-top: 2em;
661
- margin-bottom: 2em;
662
- }
663
- .prose :where(video):not(:where([class~="not-prose"] *)){
664
- margin-top: 2em;
665
- margin-bottom: 2em;
666
- }
667
- .prose :where(figure):not(:where([class~="not-prose"] *)){
668
- margin-top: 2em;
669
- margin-bottom: 2em;
670
- }
671
- .prose :where(h2 code):not(:where([class~="not-prose"] *)){
672
- font-size: 0.875em;
673
- }
674
- .prose :where(h3 code):not(:where([class~="not-prose"] *)){
675
- font-size: 0.9em;
676
- }
677
- .prose :where(li):not(:where([class~="not-prose"] *)){
678
- margin-top: 0.5em;
679
- margin-bottom: 0.5em;
680
- }
681
- .prose :where(ol > li):not(:where([class~="not-prose"] *)){
682
- padding-left: 0.375em;
683
- }
684
- .prose :where(ul > li):not(:where([class~="not-prose"] *)){
685
- padding-left: 0.375em;
686
- }
687
- .prose > :where(ul > li p):not(:where([class~="not-prose"] *)){
688
- margin-top: 0.75em;
689
- margin-bottom: 0.75em;
690
- }
691
- .prose > :where(ul > li > *:first-child):not(:where([class~="not-prose"] *)){
692
- margin-top: 1.25em;
693
- }
694
- .prose > :where(ul > li > *:last-child):not(:where([class~="not-prose"] *)){
695
- margin-bottom: 1.25em;
696
- }
697
- .prose > :where(ol > li > *:first-child):not(:where([class~="not-prose"] *)){
698
- margin-top: 1.25em;
699
- }
700
- .prose > :where(ol > li > *:last-child):not(:where([class~="not-prose"] *)){
701
- margin-bottom: 1.25em;
702
- }
703
- .prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)){
704
- margin-top: 0.75em;
705
- margin-bottom: 0.75em;
706
- }
707
- .prose :where(hr + *):not(:where([class~="not-prose"] *)){
708
- margin-top: 0;
709
- }
710
- .prose :where(h2 + *):not(:where([class~="not-prose"] *)){
711
- margin-top: 0;
712
- }
713
- .prose :where(h3 + *):not(:where([class~="not-prose"] *)){
714
- margin-top: 0;
715
- }
716
- .prose :where(h4 + *):not(:where([class~="not-prose"] *)){
717
- margin-top: 0;
718
- }
719
- .prose :where(thead th:first-child):not(:where([class~="not-prose"] *)){
720
- padding-left: 0;
721
- }
722
- .prose :where(thead th:last-child):not(:where([class~="not-prose"] *)){
723
- padding-right: 0;
724
- }
725
- .prose :where(tbody td:first-child):not(:where([class~="not-prose"] *)){
726
- padding-left: 0;
727
- }
728
- .prose :where(tbody td:last-child):not(:where([class~="not-prose"] *)){
729
- padding-right: 0;
730
- }
731
- .prose > :where(:first-child):not(:where([class~="not-prose"] *)){
732
- margin-top: 0;
593
+ ol.post ul, ol.post ol, ol.page ul, ol.page ol {
594
+ list-style-type: counter;
733
595
  }
734
- .prose > :where(:last-child):not(:where([class~="not-prose"] *)){
735
- margin-bottom: 0;
596
+ .post ul > li::marker, .post ol > li::marker, .page ul > li::marker, .page ol > li::marker {
597
+ color: #98b88b;
736
598
  }
737
- .visible{
599
+ .visible {
738
600
  visibility: visible;
739
601
  }
740
- .mx-auto{
602
+ .mx-auto {
741
603
  margin-left: auto;
742
604
  margin-right: auto;
743
605
  }
744
- .my-2{
606
+ .my-2 {
745
607
  margin-top: 0.5rem;
746
608
  margin-bottom: 0.5rem;
747
609
  }
748
- .mx-4{
610
+ .mx-4 {
749
611
  margin-left: 1rem;
750
612
  margin-right: 1rem;
751
613
  }
752
- .ml-4{
614
+ .ml-4 {
753
615
  margin-left: 1rem;
754
616
  }
755
- .mb-5{
617
+ .mb-5 {
756
618
  margin-bottom: 1.25rem;
757
619
  }
758
- .mb-10{
620
+ .mb-10 {
759
621
  margin-bottom: 2.5rem;
760
622
  }
761
- .mb-6{
623
+ .mb-6 {
762
624
  margin-bottom: 1.5rem;
763
625
  }
764
- .mt-0{
626
+ .mt-0 {
765
627
  margin-top: 0px;
766
628
  }
767
- .inline-block{
629
+ .inline-block {
768
630
  display: inline-block;
769
631
  }
770
- .flex{
632
+ .flex {
771
633
  display: flex;
772
634
  }
773
- .hidden{
635
+ .hidden {
774
636
  display: none;
775
637
  }
776
- .h-6{
638
+ .h-6 {
777
639
  height: 1.5rem;
778
640
  }
779
- .w-6{
641
+ .w-6 {
780
642
  width: 1.5rem;
781
643
  }
782
- .max-w-max{
644
+ .max-w-max {
783
645
  max-width: -webkit-max-content;
784
646
  max-width: -moz-max-content;
785
647
  max-width: max-content;
786
648
  }
787
- .max-w-fit{
788
- max-width: -webkit-fit-content;
789
- max-width: -moz-fit-content;
790
- max-width: fit-content;
791
- }
792
- .items-center{
649
+ .items-center {
793
650
  align-items: center;
794
651
  }
795
- .justify-between{
652
+ .justify-between {
796
653
  justify-content: space-between;
797
654
  }
798
- .space-y-2 > :not([hidden]) ~ :not([hidden]){
655
+ .space-y-2 > :not([hidden]) ~ :not([hidden]) {
799
656
  --tw-space-y-reverse: 0;
800
657
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
801
658
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
802
659
  }
803
- .space-x-5 > :not([hidden]) ~ :not([hidden]){
660
+ .space-x-5 > :not([hidden]) ~ :not([hidden]) {
804
661
  --tw-space-x-reverse: 0;
805
662
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
806
663
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
807
664
  }
808
- .border-t{
665
+ .border-t {
809
666
  border-top-width: 1px;
810
667
  }
811
- .border-b{
668
+ .border-b {
812
669
  border-bottom-width: 1px;
813
670
  }
814
- .border-b-2{
671
+ .border-b-2 {
815
672
  border-bottom-width: 2px;
816
673
  }
817
- .border-porcelain{
674
+ .border-porcelain {
818
675
  --tw-border-opacity: 1;
819
676
  border-color: rgb(241 243 244 / var(--tw-border-opacity));
820
677
  }
821
- .border-green{
678
+ .border-green {
822
679
  --tw-border-opacity: 1;
823
680
  border-color: rgb(152 184 139 / var(--tw-border-opacity));
824
681
  }
825
- .border-white{
682
+ .border-white {
826
683
  --tw-border-opacity: 1;
827
684
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
828
685
  }
829
- .bg-yellow{
686
+ .bg-yellow {
830
687
  --tw-bg-opacity: 1;
831
688
  background-color: rgb(255 198 52 / var(--tw-bg-opacity));
832
689
  }
833
- .bg-white{
690
+ .bg-white {
834
691
  --tw-bg-opacity: 1;
835
692
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
836
693
  }
837
- .p-4{
694
+ .p-4 {
838
695
  padding: 1rem;
839
696
  }
840
- .py-4{
697
+ .py-4 {
841
698
  padding-top: 1rem;
842
699
  padding-bottom: 1rem;
843
700
  }
844
- .py-1{
701
+ .py-1 {
845
702
  padding-top: 0.25rem;
846
703
  padding-bottom: 0.25rem;
847
704
  }
848
- .px-2{
705
+ .px-2 {
849
706
  padding-left: 0.5rem;
850
707
  padding-right: 0.5rem;
851
708
  }
852
- .px-4{
709
+ .px-4 {
853
710
  padding-left: 1rem;
854
711
  padding-right: 1rem;
855
712
  }
856
- .py-2{
713
+ .py-2 {
857
714
  padding-top: 0.5rem;
858
715
  padding-bottom: 0.5rem;
859
716
  }
860
- .py-10{
717
+ .py-10 {
861
718
  padding-top: 2.5rem;
862
719
  padding-bottom: 2.5rem;
863
720
  }
864
- .text-center{
721
+ .text-center {
865
722
  text-align: center;
866
723
  }
867
- .font-merriweather{
724
+ .font-serif {
868
725
  font-family: Merriweather, serif;
869
726
  }
870
- .text-caption{
727
+ .text-caption {
871
728
  font-size: 12px;
872
- line-height: 16px;
729
+ line-height: 18px;
873
730
  }
874
- .text-h4{
731
+ .text-h4 {
875
732
  font-size: 34px;
876
733
  line-height: 42px;
877
734
  }
878
- .text-h5{
735
+ .text-h5 {
879
736
  font-size: 24px;
880
737
  line-height: 32px;
881
738
  }
882
- .text-subtitle{
739
+ .text-subtitle {
883
740
  font-size: 16px;
884
- line-height: 20px;
741
+ line-height: 22px;
885
742
  }
886
- .font-bold{
743
+ .font-bold {
887
744
  font-weight: 700;
888
745
  }
889
- .text-green{
746
+ .font-thin {
747
+ font-weight: 100;
748
+ }
749
+ .text-green {
890
750
  --tw-text-opacity: 1;
891
751
  color: rgb(152 184 139 / var(--tw-text-opacity));
892
752
  }
893
- .text-white{
753
+ .text-white {
894
754
  --tw-text-opacity: 1;
895
755
  color: rgb(255 255 255 / var(--tw-text-opacity));
896
756
  }
897
- .text-graphite{
757
+ .text-graphite {
898
758
  --tw-text-opacity: 1;
899
759
  color: rgb(46 46 46 / var(--tw-text-opacity));
900
760
  }
901
- .text-grey\/50{
761
+ .text-grey\/50 {
902
762
  color: rgb(170 170 170 / 0.5);
903
763
  }
904
- .text-grey{
764
+ .text-grey {
905
765
  --tw-text-opacity: 1;
906
766
  color: rgb(170 170 170 / var(--tw-text-opacity));
907
767
  }
908
- .underline{
768
+ .underline {
909
769
  -webkit-text-decoration-line: underline;
910
770
  text-decoration-line: underline;
911
771
  }
912
- .outline-none{
772
+ .outline-none {
913
773
  outline: 2px solid transparent;
914
774
  outline-offset: 2px;
915
775
  }
916
- .transition{
776
+ .transition {
917
777
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
918
778
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
919
779
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
920
780
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
921
781
  transition-duration: 150ms;
922
782
  }
923
- .duration-300{
783
+ .duration-300 {
924
784
  transition-duration: 300ms;
925
785
  }
926
- .hover\:border-b-2:hover{
786
+
787
+
788
+ .hover\:border-b-2:hover {
927
789
  border-bottom-width: 2px;
928
790
  }
929
- .hover\:border-graphite:hover{
791
+
792
+
793
+ .hover\:border-graphite:hover {
930
794
  --tw-border-opacity: 1;
931
795
  border-color: rgb(46 46 46 / var(--tw-border-opacity));
932
796
  }
933
- .hover\:text-green:hover{
797
+
798
+
799
+ .hover\:text-green:hover {
934
800
  --tw-text-opacity: 1;
935
801
  color: rgb(152 184 139 / var(--tw-text-opacity));
936
802
  }
937
- @media (min-width: 960px){
938
803
 
939
- .desktop\:inline{
804
+
805
+ @media (min-width: 960px) {
806
+
807
+ .desktop\:inline {
940
808
  display: inline;
941
809
  }
942
810
 
943
- .desktop\:flex{
811
+ .desktop\:flex {
944
812
  display: flex;
945
813
  }
946
814
 
947
- .desktop\:hidden{
815
+ .desktop\:hidden {
948
816
  display: none;
949
817
  }
950
818
 
951
- .desktop\:justify-between{
819
+ .desktop\:justify-between {
952
820
  justify-content: space-between;
953
821
  }
954
822
 
955
- .desktop\:border-none{
823
+ .desktop\:border-none {
956
824
  border-style: none;
957
825
  }
958
826
 
959
- .desktop\:px-0{
827
+ .desktop\:px-0 {
960
828
  padding-left: 0px;
961
829
  padding-right: 0px;
962
830
  }
963
831
 
964
- .desktop\:py-4{
832
+ .desktop\:py-4 {
965
833
  padding-top: 1rem;
966
834
  padding-bottom: 1rem;
967
835
  }
968
836
 
969
- .desktop\:text-h3{
837
+ .desktop\:text-h3 {
970
838
  font-size: 48px;
971
839
  line-height: 60px;
972
840
  }
841
+
842
+ .desktop\:text-h4 {
843
+ font-size: 34px;
844
+ line-height: 42px;
845
+ }
973
846
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-superb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivanka Todorova
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-04 00:00:00.000000000 Z
11
+ date: 2022-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll