documentor 0.3.4 → 0.3.5
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/_config.yml +1 -1
- data/assets/css/main.css +2 -0
- 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: d1d729d580903796037e1db31c5e7adb63b17ffd5535356ccd0668210368026b
|
4
|
+
data.tar.gz: 66c91e2c50547888e12c6230e619cc0b25fd683897cbef98699776819c00a4b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65de07fdf64e2bdc3a2b0404f0ae37c38278c74919ca0477d6d8646efc0d61e019393bbc8555cc193086fdb67bb6ea7f15fccea07b4f177477e3110d13f253bf
|
7
|
+
data.tar.gz: c64f7e13886db177490ce4a8b4cfc46ad9485e4a71ff15637252fd333005e8de7e6ec6a782267ce10d25afe51bb2562d04345d8c5ef60a9a7f305d26815bb557
|
data/_config.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
author_obfuscate_email: false
|
2
2
|
author_round_mugshot: true
|
3
3
|
index_show_header_latest: false
|
4
|
-
index_single_card:
|
4
|
+
index_single_card: false
|
5
5
|
index_use_font: menuregular
|
6
6
|
short_navigation_ignore: [index, index-with-cards, categories, page404]
|
7
7
|
style_typewriter: true
|
data/assets/css/main.css
CHANGED
@@ -89,6 +89,7 @@
|
|
89
89
|
:root {
|
90
90
|
--width-page: 90%;
|
91
91
|
--width-page-vw: 90vw;
|
92
|
+
--width-page-ratio: 0.9;
|
92
93
|
--width-indent-page: 2rem;
|
93
94
|
--width-padding: 1rem;
|
94
95
|
}
|
@@ -387,6 +388,7 @@ body, .container {
|
|
387
388
|
border-width: 0 0 0 calc(1rem / 16);
|
388
389
|
font-family: mono;
|
389
390
|
width: calc(var(--width-page-vw) - var(--width-padding));
|
391
|
+
max-width: calc(var(--width-page-ratio) * 64rem);
|
390
392
|
overflow-x: auto;
|
391
393
|
}
|
392
394
|
|