@apify/docs-theme 1.0.224 → 1.0.225
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/package.json +1 -1
- package/src/theme/custom.css +38 -7
package/package.json
CHANGED
package/src/theme/custom.css
CHANGED
|
@@ -126,12 +126,15 @@ html[data-theme='dark'] {
|
|
|
126
126
|
|
|
127
127
|
:root {
|
|
128
128
|
/* use default system font based on https://devhints.io/css-system-font-stack */
|
|
129
|
-
--ifm-font-family-base:
|
|
130
|
-
|
|
131
|
-
'Helvetica Neue',
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
129
|
+
--ifm-font-family-base:
|
|
130
|
+
-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
131
|
+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
132
|
+
sans-serif;
|
|
133
|
+
--ifm-heading-font-family: 'Lota Grotesque', sans-serif;
|
|
134
|
+
--tsd-spacing-vertical: 1.2rem !important;
|
|
135
|
+
--tsd-spacing-horizontal: 1.6rem !important;
|
|
136
|
+
--ifm-list-item-margin: 0.4rem !important;
|
|
137
|
+
--ifm-list-left-padding: 3.2rem !important;
|
|
135
138
|
--ifm-font-weight-semibold: 600;
|
|
136
139
|
--ifm-font-color-base: #242736;
|
|
137
140
|
|
|
@@ -286,6 +289,34 @@ html[data-theme='dark'] {
|
|
|
286
289
|
--button-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
|
|
287
290
|
}
|
|
288
291
|
|
|
292
|
+
@font-face {
|
|
293
|
+
font-family: 'Lota Grotesque';
|
|
294
|
+
src:
|
|
295
|
+
url('/font/lota.woff2') format('woff2'),
|
|
296
|
+
url('/font/lota.woff') format('woff');
|
|
297
|
+
font-weight: 600;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.apiItemContainer h2 {
|
|
301
|
+
font-size: 2.4rem;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.apiItemContainer h3 {
|
|
305
|
+
font-size: 2rem;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.apiItemContainer h4 {
|
|
309
|
+
font-size: 1.6rem;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.apiItemContainer h5 {
|
|
313
|
+
font-size: 1.4rem;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.tsd-comment {
|
|
317
|
+
margin-bottom: var(--tsd-spacing-vertical);
|
|
318
|
+
}
|
|
319
|
+
|
|
289
320
|
.markdown h1,
|
|
290
321
|
.markdown h2,
|
|
291
322
|
.markdown h3,
|
|
@@ -621,7 +652,7 @@ article .card h2 {
|
|
|
621
652
|
}
|
|
622
653
|
|
|
623
654
|
.tsd-panel-header .tsd-flag-group {
|
|
624
|
-
margin-right: .
|
|
655
|
+
margin-right: .8rem;
|
|
625
656
|
margin-left: .5rem;
|
|
626
657
|
}
|
|
627
658
|
|