@t8/docsgen 0.3.30 → 0.3.32

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.
package/.lintincludes ADDED
@@ -0,0 +1,2 @@
1
+ **
2
+ !schema.json
package/dist/css/base.css CHANGED
@@ -8,7 +8,8 @@
8
8
 
9
9
  --aux-color: #797979;
10
10
  --aux-background: #f2f2f2;
11
- --aux-background-end: #e3e3e3;
11
+ --aux-background-end: #f2f2f2;
12
+ --aux-border-color: #828282;
12
13
  --aux-link-color: royalblue;
13
14
  --aux-secondary-color: var(--color);
14
15
  --aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
@@ -28,7 +29,8 @@
28
29
 
29
30
  --aux-color: #8e9198;
30
31
  --aux-background: #1d2331;
31
- --aux-background-end: #232738;
32
+ --aux-background-end: #1d2331;
33
+ --aux-border-color: #49587b;
32
34
  --aux-link-color: deepskyblue;
33
35
  --aux-secondary-color: var(--color);
34
36
  --aux-emphatic-color: #c6c7cb;
@@ -106,7 +106,7 @@ section {
106
106
  }
107
107
  section .section-content {
108
108
  max-width: var(--max-content-width);
109
- padding: 1em 3.5vw 2em;
109
+ padding: 15vh 2.5em;
110
110
  box-sizing: border-box;
111
111
  }
112
112
  section.intro-title {
@@ -122,15 +122,13 @@ section.intro-title {
122
122
  var(--aux-background),
123
123
  var(--aux-background-end)
124
124
  );
125
- border-right: 0.05em solid var(--line-color);
125
+ border-right: 0.05em solid var(--aux-border-color);
126
126
  }
127
127
  section.intro-title .section-content {
128
128
  display: flex;
129
129
  flex-direction: column;
130
- justify-content: center;
131
130
  align-items: flex-end;
132
131
  max-width: 24em;
133
- min-height: 95vh;
134
132
  }
135
133
  section.intro-title:last-of-type {
136
134
  width: 100%;
@@ -147,7 +145,6 @@ section.intro {
147
145
  display: flex;
148
146
  width: 60%;
149
147
  flex-direction: column;
150
- justify-content: center;
151
148
  }
152
149
  section.intro .section-content {
153
150
  width: 100%;
@@ -177,7 +174,7 @@ section.intro pre {
177
174
  var(--aux-background-end)
178
175
  );
179
176
  border-right: none;
180
- border-bottom: 0.05em solid var(--line-color);
177
+ border-bottom: 0.05em solid var(--aux-border-color);
181
178
  }
182
179
  section.intro-title .section-content {
183
180
  min-height: 35vh;
@@ -244,9 +241,6 @@ section.intro pre {
244
241
  padding: 0;
245
242
  }
246
243
  }
247
- .pagenav {
248
- text-align: right;
249
- }
250
244
  p.installation {
251
245
  margin: 0;
252
246
  }
@@ -40,7 +40,7 @@ footer {
40
40
  var(--aux-background),
41
41
  var(--aux-background-end)
42
42
  );
43
- border-right: 0.05em solid var(--line-color);
43
+ border-right: 0.05em solid var(--aux-border-color);
44
44
  padding: 0.75rem var(--content-padding-x);
45
45
  margin: 0;
46
46
  box-sizing: border-box;
@@ -109,7 +109,7 @@ footer {
109
109
  var(--aux-background),
110
110
  var(--aux-background-end)
111
111
  );
112
- border-top: 0.35em solid var(--line-color);
112
+ border-top: 0.35em solid var(--aux-border-color);
113
113
  border-right: none;
114
114
  padding: 0.25rem var(--content-padding-x) 0.35rem;
115
115
  margin: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/docsgen",
3
- "version": "0.3.30",
3
+ "version": "0.3.32",
4
4
  "description": "",
5
5
  "main": "dist/bin.js",
6
6
  "type": "module",
package/src/css/base.css CHANGED
@@ -8,7 +8,8 @@
8
8
 
9
9
  --aux-color: #797979;
10
10
  --aux-background: #f2f2f2;
11
- --aux-background-end: #e3e3e3;
11
+ --aux-background-end: #f2f2f2;
12
+ --aux-border-color: #828282;
12
13
  --aux-link-color: royalblue;
13
14
  --aux-secondary-color: var(--color);
14
15
  --aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
@@ -28,7 +29,8 @@
28
29
 
29
30
  --aux-color: #8e9198;
30
31
  --aux-background: #1d2331;
31
- --aux-background-end: #232738;
32
+ --aux-background-end: #1d2331;
33
+ --aux-border-color: #49587b;
32
34
  --aux-link-color: deepskyblue;
33
35
  --aux-secondary-color: var(--color);
34
36
  --aux-emphatic-color: #c6c7cb;
package/src/css/index.css CHANGED
@@ -106,7 +106,7 @@ section {
106
106
  }
107
107
  section .section-content {
108
108
  max-width: var(--max-content-width);
109
- padding: 1em 3.5vw 2em;
109
+ padding: 15vh 2.5em;
110
110
  box-sizing: border-box;
111
111
  }
112
112
  section.intro-title {
@@ -122,15 +122,13 @@ section.intro-title {
122
122
  var(--aux-background),
123
123
  var(--aux-background-end)
124
124
  );
125
- border-right: 0.05em solid var(--line-color);
125
+ border-right: 0.05em solid var(--aux-border-color);
126
126
  }
127
127
  section.intro-title .section-content {
128
128
  display: flex;
129
129
  flex-direction: column;
130
- justify-content: center;
131
130
  align-items: flex-end;
132
131
  max-width: 24em;
133
- min-height: 95vh;
134
132
  }
135
133
  section.intro-title:last-of-type {
136
134
  width: 100%;
@@ -147,7 +145,6 @@ section.intro {
147
145
  display: flex;
148
146
  width: 60%;
149
147
  flex-direction: column;
150
- justify-content: center;
151
148
  }
152
149
  section.intro .section-content {
153
150
  width: 100%;
@@ -177,7 +174,7 @@ section.intro pre {
177
174
  var(--aux-background-end)
178
175
  );
179
176
  border-right: none;
180
- border-bottom: 0.05em solid var(--line-color);
177
+ border-bottom: 0.05em solid var(--aux-border-color);
181
178
  }
182
179
  section.intro-title .section-content {
183
180
  min-height: 35vh;
@@ -244,9 +241,6 @@ section.intro pre {
244
241
  padding: 0;
245
242
  }
246
243
  }
247
- .pagenav {
248
- text-align: right;
249
- }
250
244
  p.installation {
251
245
  margin: 0;
252
246
  }
@@ -40,7 +40,7 @@ footer {
40
40
  var(--aux-background),
41
41
  var(--aux-background-end)
42
42
  );
43
- border-right: 0.05em solid var(--line-color);
43
+ border-right: 0.05em solid var(--aux-border-color);
44
44
  padding: 0.75rem var(--content-padding-x);
45
45
  margin: 0;
46
46
  box-sizing: border-box;
@@ -109,7 +109,7 @@ footer {
109
109
  var(--aux-background),
110
110
  var(--aux-background-end)
111
111
  );
112
- border-top: 0.35em solid var(--line-color);
112
+ border-top: 0.35em solid var(--aux-border-color);
113
113
  border-right: none;
114
114
  padding: 0.25rem var(--content-padding-x) 0.35rem;
115
115
  margin: 0;