@t8/docsgen 0.3.28 → 0.3.29

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/dist/css/base.css CHANGED
@@ -8,6 +8,7 @@
8
8
 
9
9
  --aux-color: #797979;
10
10
  --aux-background: #f2f2f2;
11
+ --aux-background-end: var(--aux-background);
11
12
  --aux-link-color: royalblue;
12
13
  --aux-secondary-color: var(--color);
13
14
  --aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
@@ -117,6 +117,11 @@ section.intro-title {
117
117
  text-align: right;
118
118
  line-height: 1.3;
119
119
  color: var(--emphatic-color);
120
+ background: linear-gradient(
121
+ to right,
122
+ var(--aux-background),
123
+ var(--aux-background-end)
124
+ );
120
125
  border-right: 0.05em solid var(--line-color);
121
126
  }
122
127
  section.intro-title .section-content {
@@ -166,6 +171,11 @@ section.intro pre {
166
171
  align-items: center;
167
172
  justify-content: center;
168
173
  text-align: center;
174
+ background: linear-gradient(
175
+ to bottom,
176
+ var(--aux-background),
177
+ var(--aux-background-end)
178
+ );
169
179
  border-right: none;
170
180
  border-bottom: 0.05em solid var(--line-color);
171
181
  }
@@ -35,6 +35,11 @@ footer {
35
35
  font-size: 0.9em;
36
36
  line-height: 1.25;
37
37
  text-align: end;
38
+ background: linear-gradient(
39
+ to right,
40
+ var(--aux-background),
41
+ var(--aux-background-end)
42
+ );
38
43
  border-right: 0.05em solid var(--line-color);
39
44
  padding: 0.75rem var(--content-padding-x);
40
45
  margin: 0;
@@ -99,6 +104,11 @@ footer {
99
104
  display: block;
100
105
  font-size: inherit;
101
106
  text-align: start;
107
+ background: linear-gradient(
108
+ to top,
109
+ var(--aux-background),
110
+ var(--aux-background-end)
111
+ );
102
112
  border-top: 0.35em solid var(--line-color);
103
113
  border-right: none;
104
114
  padding: 0.25rem var(--content-padding-x) 0.35rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t8/docsgen",
3
- "version": "0.3.28",
3
+ "version": "0.3.29",
4
4
  "description": "",
5
5
  "main": "dist/bin.js",
6
6
  "type": "module",
package/src/css/base.css CHANGED
@@ -8,6 +8,7 @@
8
8
 
9
9
  --aux-color: #797979;
10
10
  --aux-background: #f2f2f2;
11
+ --aux-background-end: var(--aux-background);
11
12
  --aux-link-color: royalblue;
12
13
  --aux-secondary-color: var(--color);
13
14
  --aux-emphatic-color: #3d3d3d; /* cover title, selected nav item */
package/src/css/index.css CHANGED
@@ -117,6 +117,11 @@ section.intro-title {
117
117
  text-align: right;
118
118
  line-height: 1.3;
119
119
  color: var(--emphatic-color);
120
+ background: linear-gradient(
121
+ to right,
122
+ var(--aux-background),
123
+ var(--aux-background-end)
124
+ );
120
125
  border-right: 0.05em solid var(--line-color);
121
126
  }
122
127
  section.intro-title .section-content {
@@ -166,6 +171,11 @@ section.intro pre {
166
171
  align-items: center;
167
172
  justify-content: center;
168
173
  text-align: center;
174
+ background: linear-gradient(
175
+ to bottom,
176
+ var(--aux-background),
177
+ var(--aux-background-end)
178
+ );
169
179
  border-right: none;
170
180
  border-bottom: 0.05em solid var(--line-color);
171
181
  }
@@ -35,6 +35,11 @@ footer {
35
35
  font-size: 0.9em;
36
36
  line-height: 1.25;
37
37
  text-align: end;
38
+ background: linear-gradient(
39
+ to right,
40
+ var(--aux-background),
41
+ var(--aux-background-end)
42
+ );
38
43
  border-right: 0.05em solid var(--line-color);
39
44
  padding: 0.75rem var(--content-padding-x);
40
45
  margin: 0;
@@ -99,6 +104,11 @@ footer {
99
104
  display: block;
100
105
  font-size: inherit;
101
106
  text-align: start;
107
+ background: linear-gradient(
108
+ to top,
109
+ var(--aux-background),
110
+ var(--aux-background-end)
111
+ );
102
112
  border-top: 0.35em solid var(--line-color);
103
113
  border-right: none;
104
114
  padding: 0.25rem var(--content-padding-x) 0.35rem;