featherweight 0.7.10 → 0.7.11
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 +4 -4
- data/_includes/main.css +22 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e68f7c99de85202fe0ce1f471fa2143ac021e2d24d6aff79180fe64debd80016
|
|
4
|
+
data.tar.gz: d304da47c5c9a1281966869920a536c20c0b66e932fa410ea56b897ea3469c90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e7c2b113b12aed01417b498b2b80316c7692f91eadf0d7a75a0dc516b43cf1fd2178fb6ee0c1968b153f191e07470a304c2121e019aac25d39a01a61b48c840
|
|
7
|
+
data.tar.gz: 5d20045b9532c6f840d6f9afe1b37a70220d0e8c64f900b1d8424284b05f34b14d5cfa2553e449b8df602857fe8466c05c9b221301d592f905c29145414ce331
|
data/_includes/main.css
CHANGED
|
@@ -4,12 +4,12 @@ body {
|
|
|
4
4
|
margin: auto;
|
|
5
5
|
line-height: 1.6;
|
|
6
6
|
font-size: 1.25em;
|
|
7
|
-
font-family: Helvetica
|
|
7
|
+
font-family: Helvetica
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.d {
|
|
11
11
|
font-size: medium;
|
|
12
|
-
color: grey
|
|
12
|
+
color: grey
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
img {
|
|
@@ -18,5 +18,24 @@ img {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
code {
|
|
21
|
-
white-space: pre-line
|
|
21
|
+
white-space: pre-line
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
table th,
|
|
25
|
+
table td {
|
|
26
|
+
border: 1px solid #d0d7de
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
table tr {
|
|
30
|
+
padding: 6px 13px;
|
|
31
|
+
border-top: 1px solid hsla(210, 18%, 87%, 1)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
table tr:nth-child(2n) {
|
|
35
|
+
background-color: #f6f8fa
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
table {
|
|
39
|
+
border-spacing: 0;
|
|
40
|
+
border-collapse: collapse
|
|
22
41
|
}
|