paraqeet 0.2.0 → 0.4.0

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: 0d7bfda7f94b94d8ef1ad46e276e7c4b7e756ed1c4b03e9afa1161444f4b7238
4
- data.tar.gz: 200e46ef89cdb7809b16eb2bbbd19a18921ef5ce5b47998fad9a612ee7a402d9
3
+ metadata.gz: d29388a2976f27d75ea56fe8bc0f17ee245ba5f3447f85ecdca63aeaead05523
4
+ data.tar.gz: e89fd92d4ccd0d8a199a6012fbaeaaf98c05b8a5400fc8f01871e9ac6540161e
5
5
  SHA512:
6
- metadata.gz: aeab9111072d31ca65769048cea97a000e209ded937b2c42b53f71f8827a0312795fc0d8e89f9837ae254c0297214609962e35a76444868f89c215a68c35de47
7
- data.tar.gz: b006bfb109f7246bf5884fdd5df7c7753c1312a9e51f1f00ffde14b760ea0348c71f95d416ae2dfd69e5f11465b6c95be240b25634dcc8b1c3abee44a2c35507
6
+ metadata.gz: 18d9101b0b20b080c5e60e69bdb70b7411d05af16e0ef4aaa66d766579e26d6a3ace9824b2566c59be1a2504924faf2844eac440c82450d2998c45392702c154
7
+ data.tar.gz: b7f735e411de4c12f5de255bff4e546ec351b95cac84b89ebbd783edce3e8d399e41360a76b003bb05997f316a9ee03a81cb3c8ad5b78ae1a4e0ebb477434755
data/_sass/_prose.scss ADDED
@@ -0,0 +1,75 @@
1
+ .prose {
2
+
3
+ // Abbreviations
4
+ abbr {
5
+ @include font-size($initialism-font-size);
6
+ text-transform: uppercase;
7
+ }
8
+
9
+ // Blockquotes
10
+ blockquote {
11
+ margin-bottom: $blockquote-margin-y;
12
+ @include font-size($blockquote-font-size);
13
+
14
+ > :last-child {
15
+ margin-bottom: 0;
16
+ }
17
+
18
+ figcaption {
19
+ margin-top: -$blockquote-margin-y;
20
+ margin-bottom: $blockquote-margin-y;
21
+ @include font-size($blockquote-footer-font-size);
22
+ color: $blockquote-footer-color;
23
+
24
+ &::before {
25
+ content: "\2014\00A0";
26
+ }
27
+ }
28
+ }
29
+
30
+ // Figures
31
+ figure {
32
+ display: inline-block;
33
+
34
+ figcaption {
35
+ @include font-size($figure-caption-font-size);
36
+ color: $figure-caption-color;
37
+ }
38
+
39
+ img {
40
+ margin-bottom: $spacer * .5;
41
+ line-height: 1;
42
+ @include img-fluid();
43
+ }
44
+ }
45
+
46
+ // Images
47
+ img {
48
+ @include img-fluid();
49
+ }
50
+
51
+ // Tables
52
+ table {
53
+ width: 100%;
54
+ margin-bottom: $spacer;
55
+ color: var(--#{$prefix}table-color);
56
+ vertical-align: $table-cell-vertical-align;
57
+ border-color: var(--#{$prefix}table-border-color);
58
+
59
+ > :not(caption) > * > * {
60
+ padding: $table-cell-padding-y $table-cell-padding-x;
61
+ background-color: var(--#{$prefix}table-bg);
62
+ border-bottom-width: $table-border-width;
63
+ box-shadow: inset 0 0 0 9999px var(--#{$prefix}table-accent-bg);
64
+ }
65
+
66
+ > tbody {
67
+ vertical-align: inherit;
68
+ }
69
+
70
+ > thead {
71
+ vertical-align: bottom;
72
+ }
73
+ }
74
+
75
+ }
@@ -5,3 +5,4 @@
5
5
  @import "bootstrap/bootstrap";
6
6
  @import "bootstrap-icons";
7
7
  @import "highlight";
8
+ @import "prose";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paraqeet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Love
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-05 00:00:00.000000000 Z
11
+ date: 2022-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -45,6 +45,7 @@ files:
45
45
  - _layouts/post.html
46
46
  - _sass/_bootstrap-icons.scss
47
47
  - _sass/_highlight.scss
48
+ - _sass/_prose.scss
48
49
  - _sass/_variables.scss
49
50
  - _sass/bootstrap/_accordion.scss
50
51
  - _sass/bootstrap/_alert.scss