create-trellis-docs 1.0.0

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.
Files changed (148) hide show
  1. package/bin/index.js +29 -0
  2. package/lib/index.js +178 -0
  3. package/package.json +23 -0
  4. package/template/_gitignore +6 -0
  5. package/template/blog/2025-01-01-welcome.md +15 -0
  6. package/template/design-tokens.json +218 -0
  7. package/template/docs/faq/general.mdx +16 -0
  8. package/template/docs/faq/index.mdx +13 -0
  9. package/template/docs/getting-started.mdx +54 -0
  10. package/template/docs/guides/writing-docs.mdx +90 -0
  11. package/template/docusaurus.config.js.tpl +200 -0
  12. package/template/package.json.tpl +60 -0
  13. package/template/packages/faq-index-plugin/README.md +104 -0
  14. package/template/packages/faq-index-plugin/index.js +91 -0
  15. package/template/packages/faq-index-plugin/package.json +15 -0
  16. package/template/packages/redirects-plugin/README.md +186 -0
  17. package/template/packages/redirects-plugin/index.js +167 -0
  18. package/template/packages/redirects-plugin/package.json +15 -0
  19. package/template/packages/redirects-plugin/yarn.lock +31 -0
  20. package/template/redirects.json +1 -0
  21. package/template/scripts/build-tokens.js +34 -0
  22. package/template/sidebars.js +17 -0
  23. package/template/src/components/CustomSearch/CustomSearch.js +241 -0
  24. package/template/src/components/CustomSearch/CustomSearchContent.js +171 -0
  25. package/template/src/components/CustomSearch/NavbarSearch.js +211 -0
  26. package/template/src/components/CustomSearch/SearchContext.js +26 -0
  27. package/template/src/components/CustomSearch/styles.module.css +171 -0
  28. package/template/src/components/CustomSearch/wrapperInit.js +11 -0
  29. package/template/src/components/FaqTableOfContents/index.jsx +176 -0
  30. package/template/src/components/FaqTableOfContents/styles.module.css +167 -0
  31. package/template/src/components/Feedback/Feedback.js +310 -0
  32. package/template/src/components/Feedback/api.js +77 -0
  33. package/template/src/components/FlippingCard/FlippingCard.js +197 -0
  34. package/template/src/components/FlippingCard/styles.module.css +248 -0
  35. package/template/src/components/Glossary.js +57 -0
  36. package/template/src/css/custom.css +765 -0
  37. package/template/src/data/glossary.json +1 -0
  38. package/template/src/pages/index.js.tpl +38 -0
  39. package/template/src/theme/Admonition/Icon/Danger.js +11 -0
  40. package/template/src/theme/Admonition/Icon/Info.js +11 -0
  41. package/template/src/theme/Admonition/Icon/Note.js +11 -0
  42. package/template/src/theme/Admonition/Icon/Tip.js +11 -0
  43. package/template/src/theme/Admonition/Icon/Warning.js +11 -0
  44. package/template/src/theme/Admonition/Layout/index.js +39 -0
  45. package/template/src/theme/Admonition/Layout/styles.module.css +36 -0
  46. package/template/src/theme/Admonition/Type/Caution.js +28 -0
  47. package/template/src/theme/Admonition/Type/Danger.js +26 -0
  48. package/template/src/theme/Admonition/Type/Info.js +26 -0
  49. package/template/src/theme/Admonition/Type/Note.js +26 -0
  50. package/template/src/theme/Admonition/Type/Tip.js +26 -0
  51. package/template/src/theme/Admonition/Type/Warning.js +26 -0
  52. package/template/src/theme/Admonition/Types.js +27 -0
  53. package/template/src/theme/Admonition/index.js +18 -0
  54. package/template/src/theme/AnnouncementBar/CloseButton/index.js +20 -0
  55. package/template/src/theme/AnnouncementBar/CloseButton/styles.module.css +4 -0
  56. package/template/src/theme/AnnouncementBar/Content/index.js +17 -0
  57. package/template/src/theme/AnnouncementBar/Content/styles.module.css +10 -0
  58. package/template/src/theme/AnnouncementBar/index.js +33 -0
  59. package/template/src/theme/AnnouncementBar/styles.module.css +55 -0
  60. package/template/src/theme/BlogSidebar/Content/index.js +35 -0
  61. package/template/src/theme/BlogSidebar/Desktop/index.js +44 -0
  62. package/template/src/theme/BlogSidebar/Desktop/styles.module.css +60 -0
  63. package/template/src/theme/BlogSidebar/Mobile/index.js +38 -0
  64. package/template/src/theme/BlogSidebar/Mobile/styles.module.css +3 -0
  65. package/template/src/theme/BlogSidebar/index.js +15 -0
  66. package/template/src/theme/Details/index.js +23 -0
  67. package/template/src/theme/Details/styles.module.css +52 -0
  68. package/template/src/theme/DocBreadcrumbs/Items/Home/index.js +22 -0
  69. package/template/src/theme/DocBreadcrumbs/Items/Home/styles.module.css +7 -0
  70. package/template/src/theme/DocBreadcrumbs/StructuredData/index.js +15 -0
  71. package/template/src/theme/DocBreadcrumbs/index.js +75 -0
  72. package/template/src/theme/DocBreadcrumbs/styles.module.css +5 -0
  73. package/template/src/theme/DocCard/index.js +93 -0
  74. package/template/src/theme/DocCard/styles.module.css +53 -0
  75. package/template/src/theme/DocCardList/index.js +27 -0
  76. package/template/src/theme/DocCardList/styles.module.css +7 -0
  77. package/template/src/theme/DocItem/Content/index.js +121 -0
  78. package/template/src/theme/DocItem/Content/styles.module.css +96 -0
  79. package/template/src/theme/DocItem/Footer/index.js +43 -0
  80. package/template/src/theme/DocItem/Footer/styles.module.css +19 -0
  81. package/template/src/theme/DocItem/Layout/index.js +55 -0
  82. package/template/src/theme/DocItem/Layout/styles.module.css +14 -0
  83. package/template/src/theme/DocItem/Metadata/index.js +17 -0
  84. package/template/src/theme/DocItem/Paginator/index.js +17 -0
  85. package/template/src/theme/DocItem/TOC/Desktop/index.js +15 -0
  86. package/template/src/theme/DocItem/TOC/Mobile/index.js +17 -0
  87. package/template/src/theme/DocItem/TOC/Mobile/styles.module.css +12 -0
  88. package/template/src/theme/DocItem/index.js +19 -0
  89. package/template/src/theme/DocItem/styles.module.css +28 -0
  90. package/template/src/theme/DocRoot/Layout/Main/index.js +23 -0
  91. package/template/src/theme/DocRoot/Layout/Main/styles.module.css +31 -0
  92. package/template/src/theme/DocRoot/Layout/Sidebar/ExpandButton/index.js +28 -0
  93. package/template/src/theme/DocRoot/Layout/Sidebar/ExpandButton/styles.module.css +27 -0
  94. package/template/src/theme/DocRoot/Layout/Sidebar/index.js +70 -0
  95. package/template/src/theme/DocRoot/Layout/Sidebar/styles.module.css +32 -0
  96. package/template/src/theme/DocRoot/Layout/index.js +27 -0
  97. package/template/src/theme/DocRoot/Layout/styles.module.css +9 -0
  98. package/template/src/theme/DocRoot/index.js +25 -0
  99. package/template/src/theme/DocSidebar/Desktop/CollapseButton/index.js +28 -0
  100. package/template/src/theme/DocSidebar/Desktop/CollapseButton/styles.module.css +40 -0
  101. package/template/src/theme/DocSidebar/Desktop/Content/index.js +44 -0
  102. package/template/src/theme/DocSidebar/Desktop/Content/styles.module.css +16 -0
  103. package/template/src/theme/DocSidebar/Desktop/index.js +28 -0
  104. package/template/src/theme/DocSidebar/Desktop/styles.module.css +37 -0
  105. package/template/src/theme/DocSidebar/Mobile/index.js +39 -0
  106. package/template/src/theme/DocSidebar/index.js +18 -0
  107. package/template/src/theme/DocSidebarItem/Category/index.js +203 -0
  108. package/template/src/theme/DocSidebarItem/Html/index.js +20 -0
  109. package/template/src/theme/DocSidebarItem/Html/styles.module.css +6 -0
  110. package/template/src/theme/DocSidebarItem/Link/index.js +49 -0
  111. package/template/src/theme/DocSidebarItem/Link/styles.module.css +3 -0
  112. package/template/src/theme/DocSidebarItem/index.js +15 -0
  113. package/template/src/theme/EditMetaRow/index.js +25 -0
  114. package/template/src/theme/EditMetaRow/styles.module.css +11 -0
  115. package/template/src/theme/EditThisPage/index.js +29 -0
  116. package/template/src/theme/ErrorPageContent.js +34 -0
  117. package/template/src/theme/Footer/Copyright/index.js +11 -0
  118. package/template/src/theme/Footer/Layout/index.js +21 -0
  119. package/template/src/theme/Footer/LinkItem/index.js +26 -0
  120. package/template/src/theme/Footer/Links/MultiColumn/index.js +44 -0
  121. package/template/src/theme/Footer/Links/Simple/index.js +32 -0
  122. package/template/src/theme/Footer/Links/index.js +11 -0
  123. package/template/src/theme/Footer/Logo/index.js +35 -0
  124. package/template/src/theme/Footer/Logo/styles.module.css +9 -0
  125. package/template/src/theme/Footer/index.js +22 -0
  126. package/template/src/theme/MDXComponents/Heading.js +120 -0
  127. package/template/src/theme/MDXComponents/index.js +17 -0
  128. package/template/src/theme/MDXComponents/styles.module.css +110 -0
  129. package/template/src/theme/MDXContent/index.js +6 -0
  130. package/template/src/theme/NavbarItem/DropdownNavbarItem/Desktop/index.js +110 -0
  131. package/template/src/theme/NavbarItem/DropdownNavbarItem/Mobile/index.js +136 -0
  132. package/template/src/theme/NavbarItem/DropdownNavbarItem/Mobile/styles.module.css +3 -0
  133. package/template/src/theme/NavbarItem/DropdownNavbarItem/index.js +7 -0
  134. package/template/src/theme/NotFound/Content/index.js +46 -0
  135. package/template/src/theme/NotFound/index.js +19 -0
  136. package/template/src/theme/NotFound.js +49 -0
  137. package/template/src/theme/PaginatorNavLink/index.js +17 -0
  138. package/template/src/theme/TOC/index.js +19 -0
  139. package/template/src/theme/TOC/styles.module.css +16 -0
  140. package/template/src/theme/TOCItems/Tree.js +30 -0
  141. package/template/src/theme/TOCItems/index.js +47 -0
  142. package/template/src/theme/TabItem/index.js +15 -0
  143. package/template/src/theme/TabItem/styles.module.css +10 -0
  144. package/template/src/theme/Tabs/index.js +189 -0
  145. package/template/src/theme/Tabs/styles.module.css +74 -0
  146. package/template/static/img/favicon.svg +4 -0
  147. package/template/static/img/oops-404.svg +11 -0
  148. package/template/static/searchIndex.json +1 -0
@@ -0,0 +1,765 @@
1
+ /**
2
+ * Any CSS included here will be global. The classic template
3
+ * bundles Infima by default. Infima is a CSS framework designed to
4
+ * work well for content-centric websites.
5
+ */
6
+
7
+ @import 'tokens.css';
8
+
9
+
10
+ /* You can override the default Infima variables here. */
11
+ :root {
12
+ --ifm-color-primary: var(--brand-primary-600-value);
13
+ --ifm-color-primary-dark: var(--brand-primary-700-value);
14
+ --ifm-color-primary-darker: var(--brand-primary-800-value);
15
+ --ifm-color-primary-darkest: var(--brand-primary-900-value);
16
+ --ifm-color-primary-light: var(--brand-primary-500-value);
17
+ --ifm-color-primary-lighter: var(--brand-primary-400-value);
18
+ --ifm-color-primary-lightest: var(--brand-primary-300-value);
19
+ --ifm-code-font-size: 90%;
20
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
21
+
22
+ --ifm-color-secondary: var(--brand-primary-800-value);
23
+ --ifm-color-secondary-dark: var(--brand-primary-900-value);
24
+ --ifm-color-secondary-darker: var(--brand-primary-900-value);
25
+ --ifm-color-secondary-darkest: #3b0764;
26
+ --ifm-color-secondary-light: var(--brand-primary-700-value);
27
+ --ifm-color-secondary-lighter: var(--brand-primary-600-value);
28
+ --ifm-color-secondary-lightest: var(--brand-primary-500-value);
29
+
30
+ --ifm-color-accent: var(--accent-teal-500-value);
31
+ --ifm-color-accent-dark: var(--accent-teal-600-value);
32
+ --ifm-color-accent-darker: #0f766e;
33
+ --ifm-color-accent-darkest: #115e59;
34
+ --ifm-color-accent-light: var(--accent-teal-400-value);
35
+ --ifm-color-accent-lighter: var(--accent-teal-300-value);
36
+ --ifm-color-accent-lightest: var(--accent-teal-200-value);
37
+
38
+ --ifm-background-color: var(--neutral-slate-50-value);
39
+ --ifm-color-content-secondary: rgba(15, 23, 42, 0.6);
40
+ --ifm-border-color: rgba(15, 23, 42, 0.12);
41
+ --ifm-global-shadow-lw: rgba(15, 23, 42, 0.03) 0px 0px 0px 1px,
42
+ rgba(15, 23, 42, 0.1) 0px 1px 2px 0px;
43
+ --ifm-global-shadow-md: rgba(15, 23, 42, 0.06) 0px 0px 0px 1px,
44
+ rgba(15, 23, 42, 0.1) 0px 10px 15px -3px, rgba(15, 23, 42, 0.05) 0px 4px 6px,
45
+ rgba(15, 23, 42, 0.05) 0px 30px 40px;
46
+ --ifm-global-shadow-tl: rgba(15, 23, 42, 0.08) 0px 0px 0px 1px,
47
+ rgba(15, 23, 42, 0.25) 0px 25px 50px -12px, rgba(15, 23, 42, 0.06) 0px 50px 80px;
48
+
49
+ --ifm-leading-desktop: 1;
50
+ --doc-sidebar-width: 320px !important;
51
+ --ifm-navbar-height: 56px;
52
+ --ifm-navbar-background-color: var(--ifm-background-color);
53
+ --ifm-navbar-shadow: var(--ifm-navbar-shadow);
54
+ --docusaurus-tag-list-border: var(--ifm-color-emphasis-300);
55
+ }
56
+
57
+ /* For readability concerns, you should choose a lighter palette in dark mode. */
58
+ [data-theme='dark'] {
59
+ --ifm-color-primary: var(--accent-teal-400-value);
60
+ --ifm-color-primary-dark: var(--accent-teal-500-value);
61
+ --ifm-color-primary-darker: var(--accent-teal-600-value);
62
+ --ifm-color-primary-darkest: #0f766e;
63
+ --ifm-color-primary-light: var(--accent-teal-300-value);
64
+ --ifm-color-primary-lighter: var(--accent-teal-200-value);
65
+ --ifm-color-primary-lightest: #a7f3d0;
66
+
67
+ --ifm-color-secondary: var(--brand-primary-400-value);
68
+ --ifm-color-secondary-dark: var(--brand-primary-500-value);
69
+ --ifm-color-secondary-darker: var(--brand-primary-600-value);
70
+ --ifm-color-secondary-darkest: var(--brand-primary-700-value);
71
+ --ifm-color-secondary-light: var(--brand-primary-300-value);
72
+ --ifm-color-secondary-lighter: var(--brand-primary-200-value);
73
+ --ifm-color-secondary-lightest: var(--brand-primary-100-value);
74
+
75
+ --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
76
+ --ifm-color-content: var(--neutral-slate-100-value);
77
+ --ifm-background-color: var(--neutral-slate-900-value);
78
+ }
79
+
80
+ [data-theme='dark'] .header-logo {
81
+ background-image: url('@site/static/img/favicon.svg');
82
+ }
83
+
84
+ [data-theme='dark'] hr {
85
+ background-color: var(--neutral-slate-700-value);
86
+ }
87
+
88
+ .markdown a {
89
+ color: var(--ifm-color-primary);
90
+ }
91
+
92
+ [data-theme='dark'] .markdown a {
93
+ color: var(--accent-teal-400-value);
94
+ }
95
+
96
+ body {
97
+ line-height: 1.5;
98
+ color: var(--ifm-color-content);
99
+ font-family: var(--typography-font-family-value);
100
+ background-color: var(--ifm-background-color);
101
+ hyphens: none;
102
+ }
103
+
104
+ h1:first-child {
105
+ --ifm-h1-font-size: 2.618rem;
106
+ line-height: 1.3;
107
+ }
108
+
109
+ header:first-child + p {
110
+ font-size: 1.2rem;
111
+ margin-top: calc(var(--ifm-leading) * -2);
112
+ margin-bottom: calc(var(--ifm-leading) * 1);
113
+ font-weight: 400;
114
+ line-height: 1.3;
115
+ }
116
+
117
+ h3 {
118
+ color: var(--neutral-slate-600-value);
119
+ }
120
+
121
+ [data-theme="dark"] h3 {
122
+ color: var(--neutral-slate-300-value);
123
+ }
124
+
125
+ .markdown h4 {
126
+ margin-top: 30px;
127
+ }
128
+
129
+ .markdown p {
130
+ margin-bottom: 2rem;
131
+ }
132
+
133
+ pre {
134
+ margin-top: 2rem;
135
+ }
136
+
137
+ .summary {
138
+ margin-top: 2rem;
139
+ }
140
+
141
+ blockquote {
142
+ background-color: var(--neutral-slate-100-value);
143
+ padding: 3px 16px;
144
+ }
145
+
146
+ [data-theme='dark'] blockquote {
147
+ color: var(--ifm-color-content);
148
+ background-color: var(--neutral-slate-800-value);
149
+ }
150
+
151
+ /* Navbar */
152
+
153
+ .navbar__toggle {
154
+ margin-right: 1.5rem;
155
+ }
156
+
157
+ .navbar__toggle svg {
158
+ width: 24px;
159
+ height: 24px;
160
+ }
161
+
162
+ .navbar__logo,
163
+ .navbar__logo img,
164
+ a[class^='sidebarLogo'] img {
165
+ height: 39px;
166
+ }
167
+
168
+ .navbar__link {
169
+ text-decoration: none;
170
+ }
171
+
172
+ /* Tooltips */
173
+
174
+ [data-tooltip] {
175
+ position: relative;
176
+ cursor: pointer;
177
+ border-bottom: 1px dashed var(--ifm-color-primary);
178
+ display: inline;
179
+ }
180
+
181
+ .tooltip-content {
182
+ visibility: hidden;
183
+ opacity: 0;
184
+ pointer-events: none;
185
+ transition: opacity 0.2s ease-in-out;
186
+ }
187
+
188
+ .tooltip-content {
189
+ position: absolute;
190
+ top: 115%;
191
+ left: 50%;
192
+ margin-bottom: 5px;
193
+ margin-left: -80px;
194
+ padding: 15px;
195
+ width: 370px;
196
+ border-radius: 6px;
197
+ background-color: hsla(0, 0%, 10%, 0.9);
198
+ color: #fff;
199
+ text-align: left;
200
+ font-size: 14px;
201
+ line-height: 1.2;
202
+ z-index: 2;
203
+ }
204
+
205
+ .tooltip-content a {
206
+ color: var(--brand-primary-400-value);
207
+ }
208
+
209
+ .tooltip-content::after {
210
+ content: ' ';
211
+ position: absolute;
212
+ top: -5px;
213
+ left: 50%;
214
+ margin-left: -5px;
215
+ width: 0;
216
+ border-bottom: 5px solid hsla(0, 0%, 10%, 0.9);
217
+ border-right: 5px solid transparent;
218
+ border-left: 5px solid transparent;
219
+ font-size: 0;
220
+ line-height: 0;
221
+ }
222
+
223
+ [data-tooltip]:hover .tooltip-content {
224
+ visibility: visible;
225
+ opacity: 1;
226
+ pointer-events: auto;
227
+ }
228
+
229
+ /* Nested ordered list */
230
+ ol li ol li {
231
+ list-style-type: lower-alpha;
232
+ margin-left: -15px;
233
+ }
234
+
235
+ ol li ol li ol li {
236
+ list-style-type: lower-roman;
237
+ margin-left: -15px;
238
+ }
239
+
240
+ ol li ol li ul li {
241
+ list-style-type: disc;
242
+ margin-left: -15px;
243
+ }
244
+
245
+ ol li ul li {
246
+ list-style-type: disc;
247
+ margin-left: -15px;
248
+ }
249
+
250
+ ul ol ul li {
251
+ list-style-type: disc;
252
+ margin-left: -15px;
253
+ }
254
+
255
+ ul li ol {
256
+ list-style-type: decimal;
257
+ margin-left: -15px;
258
+ }
259
+
260
+ ul li ul {
261
+ list-style-type: circle;
262
+ }
263
+
264
+ ul ul li ul {
265
+ list-style-type: square;
266
+ }
267
+
268
+ ul.no-style {
269
+ margin-left: -32px;
270
+ }
271
+
272
+ li.no-style {
273
+ list-style-type: none;
274
+ }
275
+
276
+ /* Images */
277
+
278
+ .markdown img {
279
+ border: 1px solid #ccc;
280
+ border-radius: 5px;
281
+ max-width: 60%;
282
+ height: auto;
283
+ margin-top: 1rem;
284
+ }
285
+
286
+ img.no-border {
287
+ border: none;
288
+ width: 100%;
289
+ height: auto;
290
+ margin: 0;
291
+ }
292
+
293
+ #diagrams {
294
+ display: block;
295
+ border: none;
296
+ padding: 0.5rem 0;
297
+ max-width: 100%;
298
+ border-radius: 5px;
299
+ }
300
+
301
+ /* Table of contents */
302
+
303
+ .table-of-contents {
304
+ padding-top: 16px;
305
+ padding-bottom: 0;
306
+ }
307
+
308
+ .table-of-contents::before {
309
+ content: 'On this page';
310
+ font-size: 16px;
311
+ font-weight: var(--ifm-font-weight-bold);
312
+ margin-left: var(--ifm-toc-padding-horizontal);
313
+ }
314
+
315
+ div[class^='tocCollapsible'] .table-of-contents::before {
316
+ content: none;
317
+ }
318
+
319
+ .table-of-contents__left-border {
320
+ border: none;
321
+ }
322
+
323
+ .table-of-contents__link {
324
+ text-decoration: none;
325
+ font-size: 13px;
326
+ }
327
+
328
+ .table-of-contents__link--active {
329
+ position: relative;
330
+ }
331
+
332
+ .table-of-contents__link--active::before {
333
+ content: '';
334
+ display: block;
335
+ position: absolute;
336
+ top: 0;
337
+ left: calc(var(--ifm-toc-padding-horizontal) * -2);
338
+ width: 0.1875rem;
339
+ height: 1rem;
340
+ border-radius: 0.09375rem;
341
+ background-color: var(--ifm-color-primary);
342
+ }
343
+
344
+ div[class^='tocCollapsible'] {
345
+ background-color: var(--ifm-background-color);
346
+ }
347
+
348
+ html[data-theme='dark'] div[class^='tocCollapsible'] {
349
+ background-color: var(--neutral-slate-800-value);
350
+ }
351
+
352
+ div[class^='tocCollapsibleContent'] {
353
+ margin: 0 0.5rem;
354
+ }
355
+
356
+ div[class^='tocCollapsibleContent'] > ul {
357
+ padding: 0.25rem 0;
358
+ }
359
+
360
+ div[class^='tocCollapsibleContent'] ul li {
361
+ line-height: 1.5rem;
362
+ margin: 0.25rem 0;
363
+ }
364
+
365
+ /* Footer */
366
+
367
+ .footer {
368
+ background-color: var(--ifm-color-primary);
369
+ padding: 0;
370
+ text-align: center;
371
+ font-size: 12px;
372
+ font-weight: 700;
373
+ color: white;
374
+ height: 24;
375
+ }
376
+
377
+ [data-theme='dark'] .footer {
378
+ color: var(--accent-teal-300-value);
379
+ }
380
+
381
+ [data-theme='dark'] .footer a {
382
+ color: var(--accent-teal-300-value);
383
+ }
384
+
385
+ .footer a {
386
+ color: white;
387
+ }
388
+
389
+ .footer a:hover {
390
+ color: white;
391
+ text-decoration: none;
392
+ }
393
+
394
+ /* Sidebar styles */
395
+
396
+ .theme-doc-sidebar-item-category.theme-doc-sidebar-item-category-level-2
397
+ ul.menu__list {
398
+ border-left: 1px solid #ccc;
399
+ padding-left: 0;
400
+ margin-left: 16px;
401
+ margin-bottom: 2px;
402
+ }
403
+
404
+ .theme-doc-sidebar-item-link.theme-doc-sidebar-item-link-level-3 a {
405
+ color: var(--ifm-font-color-secondary);
406
+ }
407
+
408
+ .theme-doc-sidebar-item-category.theme-doc-sidebar-item-category-level-3
409
+ ul.menu__list {
410
+ border-left: 0;
411
+ padding-left: 0;
412
+ margin-left: 16px;
413
+ margin-bottom: 2px;
414
+ }
415
+
416
+ .theme-doc-sidebar-item-link.theme-doc-sidebar-item-link-level-3.menu__list-item
417
+ a.menu__link {
418
+ border-bottom-left-radius: 0;
419
+ border-top-left-radius: 0;
420
+ }
421
+
422
+ .menu {
423
+ font-weight: var(--ifm-font-weight-normal);
424
+ }
425
+
426
+ nav[class^='menu'] {
427
+ padding: 1rem 0.5rem;
428
+ }
429
+
430
+ .menu .menu__link--sublist {
431
+ margin-bottom: 0;
432
+ }
433
+
434
+ .menu__link {
435
+ font-size: 1rem;
436
+ font-weight: 500;
437
+ line-height: 1.2rem;
438
+ color: var(--ifm-color-content-secondary);
439
+ min-height: 1.2rem;
440
+ position: relative;
441
+ text-decoration: none;
442
+ transition: none;
443
+ }
444
+
445
+ .theme-doc-sidebar-item-category-level-1 > .menu__list-item-collapsed {
446
+ background: none;
447
+ margin-top: 0.25rem;
448
+ }
449
+
450
+ .theme-doc-sidebar-menu.menu__list .menu__link--active:hover {
451
+ font-weight: 600;
452
+ }
453
+
454
+ .theme-doc-sidebar-item-category-level-1
455
+ > .menu__list-item-collapsible
456
+ > .menu__link {
457
+ font-weight: 600;
458
+ letter-spacing: 0.00786em;
459
+ color: var(--ifm-font-color-secondary);
460
+ cursor: default;
461
+ }
462
+
463
+ .theme-doc-sidebar-item-category-level-2
464
+ > .menu__list-item-collapsible
465
+ > .menu__link {
466
+ font-weight: 600;
467
+ letter-spacing: 0.00786em;
468
+ color: var(--ifm-font-color-secondary);
469
+ cursor: default;
470
+ }
471
+
472
+ .theme-doc-sidebar-item-category-level-1 > .menu__list {
473
+ padding-left: 12px;
474
+ }
475
+
476
+ .theme-doc-sidebar-item-link-level-2 .menu__link,
477
+ .theme-doc-sidebar-item-link-level-3 .menu__link {
478
+ font-size: 1rem;
479
+ font-weight: var(--ifm-font-weight-normal);
480
+ }
481
+
482
+ .theme-doc-sidebar-item-link-level-4 .menu__link {
483
+ font-size: .95rem;
484
+ font-weight: var(--ifm-font-weight-normal);
485
+ }
486
+
487
+ .menu__list .menu__list {
488
+ margin-top: 0;
489
+ margin-bottom: 0.12rem;
490
+ }
491
+
492
+ .menu__list-item:not(:first-child) {
493
+ margin-top: 0;
494
+ }
495
+
496
+ .menu__list-item--collapsed .menu__link--sublist:after,
497
+ .menu__list-item--collapsed .menu__caret::before {
498
+ transform: rotate(90deg);
499
+ }
500
+
501
+ .menu__link--sublist::after,
502
+ .menu__caret::before {
503
+ background-size: 1.5rem;
504
+ transform: rotate(180deg);
505
+ }
506
+
507
+ .menu__caret {
508
+ margin: 0;
509
+ }
510
+
511
+ .menu__list-item--collapsed .menu__link--active {
512
+ background: var(--ifm-menu-color-background-active) !important;
513
+ }
514
+
515
+ .menu__link--active,
516
+ .menu__link--active:hover {
517
+ color: var(--ifm-menu-color);
518
+ }
519
+
520
+ :not(.menu__list-item-collapsible) > .menu__link--active::before,
521
+ .menu__list-item--collapsed .menu__link--active::before {
522
+ content: '';
523
+ display: block;
524
+ position: absolute;
525
+ top: 50%;
526
+ right: 0;
527
+ width: 0.1875rem;
528
+ height: 1rem;
529
+ transform: translateY(-0.5rem);
530
+ border-radius: 0.09375rem;
531
+ background-color: var(--ifm-color-primary);
532
+ }
533
+
534
+ .sidebar-version {
535
+ font-size: 14px;
536
+ font-weight: 600;
537
+ color: var(--ifm-color-content);
538
+ text-decoration: none;
539
+ text-align: left;
540
+ padding: 10px 0;
541
+ }
542
+
543
+ /* 404 page */
544
+
545
+ .cover-404 {
546
+ background-color: rgba(124, 58, 237, 0.08);
547
+ background-size: cover;
548
+ }
549
+
550
+ .not-found-header {
551
+ height: 100%;
552
+ padding: 10px;
553
+ border-radius: 10px;
554
+ background-repeat: no-repeat;
555
+ background-size: 100%;
556
+ background-image: url('../../static/img/oops-404.svg');
557
+ }
558
+
559
+ h1.not-found {
560
+ text-align: center;
561
+ font-size: 56px;
562
+ margin-top: 6rem;
563
+ }
564
+
565
+ p.not-found {
566
+ font-size: 18px;
567
+ text-align: center;
568
+ margin-top: 30px;
569
+ }
570
+
571
+ .intro-text-button {
572
+ padding: 20px 0px 0px 0;
573
+ text-align: center;
574
+ }
575
+
576
+ .button-404 {
577
+ border-radius: 20px;
578
+ margin: 0 0.75em;
579
+ font-weight: 500;
580
+ }
581
+
582
+ /* Cards */
583
+
584
+ .no-pointer {
585
+ pointer-events: none;
586
+ }
587
+
588
+ [data-theme='dark'] .no-pointer {
589
+ background-color: var(--ifm-background-color);
590
+ }
591
+
592
+ [data-theme='dark'] .card {
593
+ border: 1px solid var(--neutral-slate-700-value);
594
+ }
595
+
596
+ .card__header {
597
+ padding: 16px;
598
+ }
599
+
600
+ .card__header h3 {
601
+ margin-top: -8px;
602
+ font-size: 17px;
603
+ padding-bottom: 0.5rem;
604
+ }
605
+
606
+ .card__body p {
607
+ margin: 4px 0 6px 0;
608
+ font-size: 0.9rem;
609
+ }
610
+
611
+ .card__body li {
612
+ font-size: 0.9rem;
613
+ }
614
+
615
+ .card__body h5 {
616
+ margin-top: 14px;
617
+ margin-bottom: 4px;
618
+ }
619
+
620
+ [data-theme='dark'] .card-border {
621
+ border: 1px solid var(--neutral-slate-700-value);
622
+ }
623
+
624
+ .header-background {
625
+ background-color: var(--neutral-slate-200-value);
626
+ }
627
+ [data-theme='dark'] .header-background {
628
+ background-color: var(--neutral-slate-800-value);
629
+ }
630
+
631
+ /* Badges */
632
+
633
+ .badge {
634
+ border-radius: 12px;
635
+ padding: 6px;
636
+ margin-bottom: 12px;
637
+ }
638
+
639
+ .badge--primary {
640
+ background-color: var(--ifm-color-primary);
641
+ }
642
+
643
+ [data-theme='dark'] .badge--primary {
644
+ color: var(--neutral-slate-900-value);
645
+ }
646
+
647
+ .badge--secondary {
648
+ background-color: var(--ifm-color-secondary);
649
+ color: white;
650
+ }
651
+
652
+ .badge--info {
653
+ background-color: var(--ifm-background-color);
654
+ color: var(--ifm-color-content-secondary);
655
+ }
656
+
657
+ /* Tables */
658
+
659
+ th,
660
+ td {
661
+ vertical-align: top;
662
+ }
663
+
664
+ .markdown th {
665
+ text-align: left;
666
+ text-transform: uppercase;
667
+ font-variant: small-caps;
668
+ font-size: small;
669
+ margin: 0;
670
+ }
671
+
672
+ .markdown p,
673
+ li {
674
+ font-size: 16px;
675
+ font-weight: 400;
676
+ margin: 0;
677
+ padding: 0;
678
+ }
679
+
680
+ .markdown li {
681
+ margin: 12px 0;
682
+ }
683
+
684
+ .markdown p {
685
+ margin: 0.5rem 0;
686
+ }
687
+
688
+ /* Announcement bar */
689
+
690
+ .theme-announcement-bar {
691
+ font-size: 22px;
692
+ height: 64px;
693
+ --site-announcement-bar-stripe-color1: var(--accent-teal-400-value);
694
+ --site-announcement-bar-stripe-color2: var(--accent-teal-400-value);
695
+ background: repeating-linear-gradient(
696
+ 35deg,
697
+ var(--site-announcement-bar-stripe-color1),
698
+ var(--site-announcement-bar-stripe-color1) 20px,
699
+ var(--site-announcement-bar-stripe-color2) 10px,
700
+ var(--site-announcement-bar-stripe-color2) 40px
701
+ );
702
+ font-weight: bold;
703
+ }
704
+
705
+ /* Custom Dropdown Styles */
706
+
707
+ .custom-dropdown__menu {
708
+ padding: 0.5rem 0;
709
+ background-color: var(--ifm-dropdown-background-color);
710
+ border: 1px solid var(--ifm-color-emphasis-200);
711
+ border-radius: var(--ifm-global-radius);
712
+ box-shadow: var(--ifm-global-shadow-md);
713
+ }
714
+
715
+ .custom-dropdown__item {
716
+ font-size: 15px;
717
+ }
718
+
719
+ .custom-dropdown__item a,
720
+ .dropdown__menu .dropdown__link {
721
+ color: var(--ifm-font-color-base) !important;
722
+ background-color: transparent !important;
723
+ padding: 0.5rem 1rem;
724
+ display: block;
725
+ transition: all 0.2s ease-in-out;
726
+ text-decoration: none !important;
727
+ }
728
+
729
+ .custom-dropdown__item a:hover,
730
+ .custom-dropdown__item a:focus,
731
+ .dropdown__menu .dropdown__link:hover,
732
+ .dropdown__menu .dropdown__link:focus {
733
+ color: var(--ifm-color-primary) !important;
734
+ background-color: var(--ifm-color-emphasis-100) !important;
735
+ }
736
+
737
+ .custom-dropdown__item a.dropdown__link--active,
738
+ .dropdown__menu .dropdown__link--active {
739
+ color: var(--ifm-font-color-base) !important;
740
+ background-color: transparent !important;
741
+ }
742
+
743
+ .custom-dropdown__item a.dropdown__link--active:hover,
744
+ .dropdown__menu .dropdown__link--active:hover {
745
+ color: var(--ifm-color-primary) !important;
746
+ background-color: var(--ifm-color-emphasis-100) !important;
747
+ }
748
+
749
+ .dropdown--show .custom-dropdown__menu {
750
+ margin-top: 0.2rem;
751
+ }
752
+
753
+ [data-theme='dark'] .custom-dropdown__item a,
754
+ [data-theme='dark'] .dropdown__menu .dropdown__link {
755
+ color: var(--ifm-font-color-base) !important;
756
+ background-color: transparent !important;
757
+ }
758
+
759
+ [data-theme='dark'] .custom-dropdown__item a:hover,
760
+ [data-theme='dark'] .custom-dropdown__item a:focus,
761
+ [data-theme='dark'] .dropdown__menu .dropdown__link:hover,
762
+ [data-theme='dark'] .dropdown__menu .dropdown__link:focus {
763
+ color: var(--ifm-color-primary) !important;
764
+ background-color: var(--ifm-color-emphasis-200) !important;
765
+ }