unaltraweb 0.3.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 (444) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/Makefile +412 -0
  4. data/README.md +226 -0
  5. data/_config.yml +842 -0
  6. data/_data/i18n/ca.yml +278 -0
  7. data/_data/i18n/en.yml +278 -0
  8. data/_data/i18n/es.yml +278 -0
  9. data/_includes/audio.liquid +30 -0
  10. data/_includes/bib_search.liquid +5 -0
  11. data/_includes/blog-list.liquid +66 -0
  12. data/_includes/book-citation.liquid +33 -0
  13. data/_includes/citation.liquid +26 -0
  14. data/_includes/custom_head.liquid +3 -0
  15. data/_includes/custom_scripts.liquid +5 -0
  16. data/_includes/cv/list.liquid +5 -0
  17. data/_includes/cv/list_groups.liquid +51 -0
  18. data/_includes/cv/map.liquid +29 -0
  19. data/_includes/cv/nested_list.liquid +16 -0
  20. data/_includes/cv/time_table.liquid +118 -0
  21. data/_includes/cv-download-card.liquid +26 -0
  22. data/_includes/developer-mode-switcher.liquid +24 -0
  23. data/_includes/disqus.liquid +13 -0
  24. data/_includes/distill_scripts.liquid +298 -0
  25. data/_includes/documentation-download-detail.liquid +76 -0
  26. data/_includes/documentation-downloads.liquid +71 -0
  27. data/_includes/documentation-profile-attributes.liquid +4 -0
  28. data/_includes/documentation-section-toc.liquid +9 -0
  29. data/_includes/documentation-sidebar.liquid +112 -0
  30. data/_includes/figure.liquid +87 -0
  31. data/_includes/footer.liquid +66 -0
  32. data/_includes/giscus.liquid +25 -0
  33. data/_includes/head.liquid +220 -0
  34. data/_includes/header.liquid +544 -0
  35. data/_includes/latest_posts.liquid +61 -0
  36. data/_includes/localized-date.liquid +5 -0
  37. data/_includes/manual-bibliography.liquid +2 -0
  38. data/_includes/manual-featured-readings.liquid +12 -0
  39. data/_includes/manual-other-readings.liquid +12 -0
  40. data/_includes/manual-page-toc.liquid +11 -0
  41. data/_includes/manual-sidebar.liquid +58 -0
  42. data/_includes/manual-teachers.liquid +74 -0
  43. data/_includes/metadata.liquid +278 -0
  44. data/_includes/news.liquid +48 -0
  45. data/_includes/newsletter.liquid +68 -0
  46. data/_includes/page-hero.liquid +96 -0
  47. data/_includes/page-link.liquid +8 -0
  48. data/_includes/pagination.liquid +22 -0
  49. data/_includes/post-reading-time.liquid +29 -0
  50. data/_includes/previous-next.liquid +37 -0
  51. data/_includes/profile-card.liquid +49 -0
  52. data/_includes/profile-feature-matrix.liquid +75 -0
  53. data/_includes/profile-highlights.liquid +122 -0
  54. data/_includes/project-grid.liquid +26 -0
  55. data/_includes/project-resource-link.liquid +45 -0
  56. data/_includes/project-resources.liquid +21 -0
  57. data/_includes/projects.liquid +38 -0
  58. data/_includes/projects_horizontal.liquid +37 -0
  59. data/_includes/publications-metrics-summary.liquid +69 -0
  60. data/_includes/publications-summary.liquid +127 -0
  61. data/_includes/reading-biblio-controls.liquid +65 -0
  62. data/_includes/reading-cover-card.liquid +93 -0
  63. data/_includes/reading-rating.liquid +11 -0
  64. data/_includes/recommended-readings.liquid +30 -0
  65. data/_includes/related_posts.liquid +39 -0
  66. data/_includes/repository/repo.liquid +48 -0
  67. data/_includes/repository/repo_trophies.liquid +44 -0
  68. data/_includes/repository/repo_user.liquid +35 -0
  69. data/_includes/resume/awards.liquid +19 -0
  70. data/_includes/resume/basics.liquid +28 -0
  71. data/_includes/resume/certificates.liquid +35 -0
  72. data/_includes/resume/education.liquid +54 -0
  73. data/_includes/resume/interests.liquid +34 -0
  74. data/_includes/resume/languages.liquid +31 -0
  75. data/_includes/resume/projects.liquid +32 -0
  76. data/_includes/resume/publications.liquid +28 -0
  77. data/_includes/resume/references.liquid +31 -0
  78. data/_includes/resume/skills.liquid +33 -0
  79. data/_includes/resume/volunteer.liquid +52 -0
  80. data/_includes/resume/work.liquid +52 -0
  81. data/_includes/scripts.liquid +364 -0
  82. data/_includes/search-data.js.liquid +341 -0
  83. data/_includes/selected_papers.liquid +3 -0
  84. data/_includes/t.liquid +31 -0
  85. data/_includes/team-grid.liquid +172 -0
  86. data/_includes/video.liquid +97 -0
  87. data/_layouts/about.liquid +93 -0
  88. data/_layouts/archive.liquid +45 -0
  89. data/_layouts/bib.liquid +677 -0
  90. data/_layouts/book-review.liquid +225 -0
  91. data/_layouts/book-shelf.liquid +66 -0
  92. data/_layouts/cv.liquid +127 -0
  93. data/_layouts/default.liquid +70 -0
  94. data/_layouts/distill.liquid +132 -0
  95. data/_layouts/documentation-download-detail.liquid +5 -0
  96. data/_layouts/documentation-home.liquid +100 -0
  97. data/_layouts/documentation-page.liquid +45 -0
  98. data/_layouts/manual-bib.liquid +73 -0
  99. data/_layouts/manual-chapter.liquid +99 -0
  100. data/_layouts/manual-featured-bib.liquid +100 -0
  101. data/_layouts/manual-home.liquid +120 -0
  102. data/_layouts/none.liquid +1 -0
  103. data/_layouts/outputs.liquid +29 -0
  104. data/_layouts/page.liquid +52 -0
  105. data/_layouts/post.liquid +95 -0
  106. data/_layouts/profile.liquid +36 -0
  107. data/_layouts/profiles.liquid +36 -0
  108. data/_layouts/project.liquid +7 -0
  109. data/_layouts/repositories.liquid +58 -0
  110. data/_layouts/theses.liquid +126 -0
  111. data/_plugins/bibliography_profiles.rb +164 -0
  112. data/_plugins/callouts.rb +104 -0
  113. data/_plugins/code_blocks.rb +277 -0
  114. data/_plugins/computation_figure_images.rb +266 -0
  115. data/_plugins/computation_sources.rb +42 -0
  116. data/_plugins/content_search_index.rb +210 -0
  117. data/_plugins/details.rb +23 -0
  118. data/_plugins/external-posts.rb +124 -0
  119. data/_plugins/figure_captions.rb +800 -0
  120. data/_plugins/file-exists.rb +22 -0
  121. data/_plugins/google-scholar-citations.rb +86 -0
  122. data/_plugins/hide-custom-bibtex.rb +18 -0
  123. data/_plugins/inspirehep-citations.rb +57 -0
  124. data/_plugins/localized_visual_sources.rb +145 -0
  125. data/_plugins/manual_release_metadata.rb +47 -0
  126. data/_plugins/mermaid_mmd_images.rb +233 -0
  127. data/_plugins/profile-pages.rb +28 -0
  128. data/_plugins/remove-accents.rb +32 -0
  129. data/_plugins/reproducible_build_time.rb +55 -0
  130. data/_plugins/search-data.rb +83 -0
  131. data/_plugins/theme-cache-bust.rb +56 -0
  132. data/_plugins/vega_visual_images.rb +290 -0
  133. data/_plugins/web_capture_images.rb +154 -0
  134. data/_sass/_base.scss +2133 -0
  135. data/_sass/_blog.scss +67 -0
  136. data/_sass/_callouts.scss +100 -0
  137. data/_sass/_custom.scss +437 -0
  138. data/_sass/_cv.scss +274 -0
  139. data/_sass/_developer.scss +97 -0
  140. data/_sass/_distill.scss +185 -0
  141. data/_sass/_documentation.scss +2220 -0
  142. data/_sass/_layout.scss +218 -0
  143. data/_sass/_manual.scss +2691 -0
  144. data/_sass/_profile.scss +323 -0
  145. data/_sass/_projects.scss +163 -0
  146. data/_sass/_reading.scss +465 -0
  147. data/_sass/_site-custom.scss +3 -0
  148. data/_sass/_tabs.scss +48 -0
  149. data/_sass/_team.scss +230 -0
  150. data/_sass/_themes.scss +254 -0
  151. data/_sass/_typograms.scss +132 -0
  152. data/_sass/_variables.scss +52 -0
  153. data/_sass/font-awesome/_animated.scss +152 -0
  154. data/_sass/font-awesome/_bordered-pulled.scss +20 -0
  155. data/_sass/font-awesome/_core.scss +49 -0
  156. data/_sass/font-awesome/_fixed-width.scss +7 -0
  157. data/_sass/font-awesome/_functions.scss +57 -0
  158. data/_sass/font-awesome/_icons.scss +13 -0
  159. data/_sass/font-awesome/_list.scss +18 -0
  160. data/_sass/font-awesome/_mixins.scss +65 -0
  161. data/_sass/font-awesome/_rotated-flipped.scss +31 -0
  162. data/_sass/font-awesome/_screen-reader.scss +14 -0
  163. data/_sass/font-awesome/_shims.scss +1578 -0
  164. data/_sass/font-awesome/_sizing.scss +16 -0
  165. data/_sass/font-awesome/_stacked.scss +32 -0
  166. data/_sass/font-awesome/_variables.scss +5044 -0
  167. data/_sass/font-awesome/brands.scss +30 -0
  168. data/_sass/font-awesome/fontawesome.scss +21 -0
  169. data/_sass/font-awesome/regular.scss +27 -0
  170. data/_sass/font-awesome/solid.scss +27 -0
  171. data/_sass/font-awesome/v4-shims.scss +11 -0
  172. data/_sass/tabler-icons/tabler-icons-filled.scss +1646 -0
  173. data/_sass/tabler-icons/tabler-icons-outline.scss +9859 -0
  174. data/_sass/tabler-icons/tabler-icons.scss +11463 -0
  175. data/_scripts/cronitor-analytics-setup.js +9 -0
  176. data/_scripts/giscus-setup.js +48 -0
  177. data/_scripts/google-analytics-setup.js +9 -0
  178. data/_scripts/open-panel-analytics-setup.js +14 -0
  179. data/_scripts/photoswipe-setup.js +11 -0
  180. data/assets/audio/epicaly-short-113909.mp3 +0 -0
  181. data/assets/bibliography/2018-12-22-distill.bib +7 -0
  182. data/assets/css/academicons.min.css +1 -0
  183. data/assets/css/bootstrap-toc.min.css +4 -0
  184. data/assets/css/bootstrap.min.css +7 -0
  185. data/assets/css/bootstrap.min.css.map +1 -0
  186. data/assets/css/jekyll-pygments-themes-github.css +209 -0
  187. data/assets/css/jekyll-pygments-themes-native.css +232 -0
  188. data/assets/css/jupyter-grade3.css +3758 -0
  189. data/assets/css/jupyter-monokai.css +3758 -0
  190. data/assets/css/jupyter.css +383 -0
  191. data/assets/css/main.scss +36 -0
  192. data/assets/css/mdb.min.css +48 -0
  193. data/assets/css/mdb.min.css.map +1 -0
  194. data/assets/css/scholar-icons.css +386 -0
  195. data/assets/fonts/academicons.ttf +0 -0
  196. data/assets/fonts/academicons.woff +0 -0
  197. data/assets/fonts/scholar-icons.ttf +0 -0
  198. data/assets/fonts/scholar-icons.woff +0 -0
  199. data/assets/fonts/tabler-icons-filled.ttf +0 -0
  200. data/assets/fonts/tabler-icons-filled.woff +0 -0
  201. data/assets/fonts/tabler-icons-filled.woff2 +0 -0
  202. data/assets/fonts/tabler-icons-outline.ttf +0 -0
  203. data/assets/fonts/tabler-icons-outline.woff +0 -0
  204. data/assets/fonts/tabler-icons-outline.woff2 +0 -0
  205. data/assets/fonts/tabler-icons.ttf +0 -0
  206. data/assets/fonts/tabler-icons.woff +0 -0
  207. data/assets/fonts/tabler-icons.woff2 +0 -0
  208. data/assets/html/relativity.html +15 -0
  209. data/assets/img/1.jpg +0 -0
  210. data/assets/img/10.jpg +0 -0
  211. data/assets/img/11.jpg +0 -0
  212. data/assets/img/12.jpg +0 -0
  213. data/assets/img/2.jpg +0 -0
  214. data/assets/img/3.jpg +0 -0
  215. data/assets/img/4.jpg +0 -0
  216. data/assets/img/5.jpg +0 -0
  217. data/assets/img/6.jpg +0 -0
  218. data/assets/img/7.jpg +0 -0
  219. data/assets/img/8.jpg +0 -0
  220. data/assets/img/9.jpg +0 -0
  221. data/assets/img/book_covers/the_godfather.jpg +0 -0
  222. data/assets/img/brand/dosquartsdedocs-logo-cafe.svg +31 -0
  223. data/assets/img/brand/dosquartsdedocs-logo-footer-cafe.svg +31 -0
  224. data/assets/img/brand/dosquartsdedocs-logo-white.svg +31 -0
  225. data/assets/img/brand/dosquartsdedocs-logo.svg +31 -0
  226. data/assets/img/prof_pic.jpg +0 -0
  227. data/assets/img/prof_pic_color.png +0 -0
  228. data/assets/img/profile-placeholder.svg +8 -0
  229. data/assets/img/publication_preview/brownian-motion.gif +0 -0
  230. data/assets/img/publication_preview/goodchild1992-gis-cover.jpg +0 -0
  231. data/assets/img/publication_preview/gutierrez2020-jtrg-preview.jpg +0 -0
  232. data/assets/img/publication_preview/harvey1989-postmodernity-cover.jpg +0 -0
  233. data/assets/img/publication_preview/tobler1970-economic-geography-cover.jpg +0 -0
  234. data/assets/img/publication_preview/tuan1977-space-place-cover.jpg +0 -0
  235. data/assets/img/publication_preview/wave-mechanics.gif +0 -0
  236. data/assets/img/publication_preview/zaragozi2025-rooftop-pv-preview.jpg +0 -0
  237. data/assets/img/rhino.png +0 -0
  238. data/assets/img/team/aaron-gutierrez.png +0 -0
  239. data/assets/img/team/alba-font.png +0 -0
  240. data/assets/img/team/alba-viana.png +0 -0
  241. data/assets/img/team/alejandro-gonzalez.png +0 -0
  242. data/assets/img/team/ana-pastor.png +0 -0
  243. data/assets/img/team/antoni-domenech.png +0 -0
  244. data/assets/img/team/benito-zaragozi.png +0 -0
  245. data/assets/img/team/cinta-sanz.png +0 -0
  246. data/assets/img/team/daniel-miravet.png +0 -0
  247. data/assets/img/team/eugenia-altamirano.png +0 -0
  248. data/assets/img/team/fiammetta-brandajs.png +0 -0
  249. data/assets/img/team/francesc-gonzalez.png +0 -0
  250. data/assets/img/team/isabel-paulino.png +0 -0
  251. data/assets/img/team/joan-borras.png +0 -0
  252. data/assets/img/team/julie-wilson.png +0 -0
  253. data/assets/img/team/liliana-sole.png +0 -0
  254. data/assets/img/team/maria-casado.png +0 -0
  255. data/assets/img/team/maria-medina.png +0 -0
  256. data/assets/img/team/marta-nello.png +0 -0
  257. data/assets/img/team/mogrify +1 -0
  258. data/assets/img/team/oscar-saladie.png +0 -0
  259. data/assets/img/team/paolo-russo.png +0 -0
  260. data/assets/img/team/raquel-santos.png +0 -0
  261. data/assets/img/team/salvador-anton.png +0 -0
  262. data/assets/img/team/sunsi-huertas.png +0 -0
  263. data/assets/img/team/user-placeholder.png +0 -0
  264. data/assets/img/team/wilbert-den-hoed.png +0 -0
  265. data/assets/img/team/xavier-delclos.png +0 -0
  266. data/assets/img/template_error.png +0 -0
  267. data/assets/js/bibsearch.js +70 -0
  268. data/assets/js/bootstrap-toc.min.js +5 -0
  269. data/assets/js/bootstrap.bundle.min.js +7 -0
  270. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  271. data/assets/js/callouts.js +115 -0
  272. data/assets/js/chartjs-setup.js +14 -0
  273. data/assets/js/common.js +117 -0
  274. data/assets/js/content-search-match.js +159 -0
  275. data/assets/js/content-search.js +441 -0
  276. data/assets/js/copy_code.js +60 -0
  277. data/assets/js/custom.js +6 -0
  278. data/assets/js/developer-mode.js +103 -0
  279. data/assets/js/diff2html-setup.js +20 -0
  280. data/assets/js/distillpub/overrides.js +27 -0
  281. data/assets/js/distillpub/template.v2.js +9616 -0
  282. data/assets/js/distillpub/template.v2.js.map +1 -0
  283. data/assets/js/distillpub/transforms.v2.js +14557 -0
  284. data/assets/js/distillpub/transforms.v2.js.map +1 -0
  285. data/assets/js/documentation.js +435 -0
  286. data/assets/js/echarts-setup.js +29 -0
  287. data/assets/js/highlight-search-term.js +110 -0
  288. data/assets/js/jupyter_new_tab.js +18 -0
  289. data/assets/js/leaflet-setup.js +22 -0
  290. data/assets/js/manual.js +308 -0
  291. data/assets/js/masonry.js +12 -0
  292. data/assets/js/mathjax-setup.js +46 -0
  293. data/assets/js/mermaid-setup.js +37 -0
  294. data/assets/js/newsletter.js +105 -0
  295. data/assets/js/no_defer.js +24 -0
  296. data/assets/js/plotly-setup.js +52 -0
  297. data/assets/js/profile-nav.js +92 -0
  298. data/assets/js/progress-bar.js +73 -0
  299. data/assets/js/pseudocode-setup.js +18 -0
  300. data/assets/js/search/base-styles.min.js +286 -0
  301. data/assets/js/search/command-score.min.js +7 -0
  302. data/assets/js/search/hotkeys-js/hotkeys.esm.min.js +18 -0
  303. data/assets/js/search/lit/decorators.min.js +7 -0
  304. data/assets/js/search/lit/directives/class-map.min.js +7 -0
  305. data/assets/js/search/lit/directives/join.min.js +7 -0
  306. data/assets/js/search/lit/directives/live.min.js +7 -0
  307. data/assets/js/search/lit/directives/ref.min.js +7 -0
  308. data/assets/js/search/lit/directives/repeat.min.js +7 -0
  309. data/assets/js/search/lit/directives/unsafe-html.min.js +7 -0
  310. data/assets/js/search/lit/index.min.js +7 -0
  311. data/assets/js/search/lit-element/lit-element.min.js +12 -0
  312. data/assets/js/search/lit-html/directives/class-map.min.js +22 -0
  313. data/assets/js/search/lit-html/directives/join.min.js +12 -0
  314. data/assets/js/search/lit-html/directives/live.min.js +28 -0
  315. data/assets/js/search/lit-html/directives/ref.min.js +32 -0
  316. data/assets/js/search/lit-html/directives/repeat.min.js +27 -0
  317. data/assets/js/search/lit-html/directives/unsafe-html.min.js +22 -0
  318. data/assets/js/search/lit-html/is-server.min.js +12 -0
  319. data/assets/js/search/lit-html/lit-html.min.js +12 -0
  320. data/assets/js/search/ninja-action.min.js +101 -0
  321. data/assets/js/search/ninja-footer.min.js +62 -0
  322. data/assets/js/search/ninja-header.min.js +78 -0
  323. data/assets/js/search/ninja-keys.min.js +39 -0
  324. data/assets/js/search/reactive-element/decorators/custom-element.min.js +12 -0
  325. data/assets/js/search/reactive-element/decorators/event-options.min.js +12 -0
  326. data/assets/js/search/reactive-element/decorators/property.min.js +22 -0
  327. data/assets/js/search/reactive-element/decorators/query-all.min.js +17 -0
  328. data/assets/js/search/reactive-element/decorators/query-assigned-elements.min.js +17 -0
  329. data/assets/js/search/reactive-element/decorators/query-assigned-nodes.min.js +17 -0
  330. data/assets/js/search/reactive-element/decorators/query-async.min.js +17 -0
  331. data/assets/js/search/reactive-element/decorators/query.min.js +17 -0
  332. data/assets/js/search/reactive-element/decorators/state.min.js +27 -0
  333. data/assets/js/search/reactive-element/reactive-element.min.js +17 -0
  334. data/assets/js/search-setup.js +17 -0
  335. data/assets/js/shortcut-key.js +11 -0
  336. data/assets/js/tabs.min.js +5 -0
  337. data/assets/js/theme.js +314 -0
  338. data/assets/js/tooltips-setup.js +3 -0
  339. data/assets/js/typograms.js +1341 -0
  340. data/assets/js/vanilla-back-to-top.min.js +1 -0
  341. data/assets/js/vega-setup.js +24 -0
  342. data/assets/js/venobox-setup.js +5 -0
  343. data/assets/js/wechat.js +14 -0
  344. data/assets/js/zoom.js +15 -0
  345. data/assets/json/resume.json +98 -0
  346. data/assets/json/table_data.json +128 -0
  347. data/assets/jupyter/blog.ipynb +48 -0
  348. data/assets/pdf/example_pdf.pdf +0 -0
  349. data/assets/plotly/demo.html +72 -0
  350. data/assets/video/pexels-engin-akyurt-6069112-960x540-30fps.mp4 +0 -0
  351. data/assets/webfonts/fa-brands-400.ttf +0 -0
  352. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  353. data/assets/webfonts/fa-regular-400.ttf +0 -0
  354. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  355. data/assets/webfonts/fa-solid-900.ttf +0 -0
  356. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  357. data/assets/webfonts/fa-v4compatibility.ttf +0 -0
  358. data/assets/webfonts/fa-v4compatibility.woff2 +0 -0
  359. data/docs/Gemfile +5 -0
  360. data/docs/_config.yml +83 -0
  361. data/docs/_documentation/en/01-quick-start.md +115 -0
  362. data/docs/_documentation/en/02-tools.md +146 -0
  363. data/docs/_documentation/en/03-usage.md +107 -0
  364. data/docs/_documentation/en/04-jekyll-basics.md +51 -0
  365. data/docs/_documentation/en/05-pages-collections.md +68 -0
  366. data/docs/_documentation/en/06-github-web-editing.md +92 -0
  367. data/docs/_documentation/en/10-profiles.md +125 -0
  368. data/docs/_documentation/en/11-unaltreselfie.md +39 -0
  369. data/docs/_documentation/en/12-unaltreprojecte.md +38 -0
  370. data/docs/_documentation/en/13-unaltremanual.md +237 -0
  371. data/docs/_documentation/en/14-unaltredocs.md +92 -0
  372. data/docs/_documentation/en/15-profile-checklist.md +39 -0
  373. data/docs/_documentation/en/20-syntax.md +353 -0
  374. data/docs/_documentation/en/21-themes.md +103 -0
  375. data/docs/_documentation/en/22-feature-reference.md +56 -0
  376. data/docs/_documentation/en/23-front-matter.md +51 -0
  377. data/docs/_documentation/en/24-data-files.md +28 -0
  378. data/docs/_documentation/en/30-customization.md +448 -0
  379. data/docs/_documentation/en/31-template.md +55 -0
  380. data/docs/_documentation/en/32-development.md +108 -0
  381. data/docs/_documentation/en/33-reusable-workflows.md +136 -0
  382. data/docs/_documentation/en/40-distribution.md +164 -0
  383. data/docs/_documentation/en/41-bibliometrics.md +137 -0
  384. data/docs/_documentation/en/42-docker-image.md +185 -0
  385. data/docs/_documentation/en/50-faq.md +33 -0
  386. data/docs/_pages/ca/index.md +35 -0
  387. data/docs/_pages/en/index.md +35 -0
  388. data/docs/_pages/es/index.md +35 -0
  389. data/docs/agents/action-prompts/00-start-site-session.txt +10 -0
  390. data/docs/agents/action-prompts/05-create-new-web.txt +5 -0
  391. data/docs/agents/action-prompts/10-content-update.txt +9 -0
  392. data/docs/agents/action-prompts/15-edit-default-content.txt +8 -0
  393. data/docs/agents/action-prompts/20-manual-teaching-materials.txt +18 -0
  394. data/docs/agents/action-prompts/22-manual-style-audit.txt +14 -0
  395. data/docs/agents/action-prompts/23-manual-structure-audit.txt +17 -0
  396. data/docs/agents/action-prompts/25-translation-prepublish.txt +8 -0
  397. data/docs/agents/action-prompts/30-project-site-update.txt +7 -0
  398. data/docs/agents/action-prompts/40-documentation-update.txt +7 -0
  399. data/docs/agents/action-prompts/50-bibliography-entry.txt +7 -0
  400. data/docs/agents/action-prompts/60-bibliometrics-refresh.txt +7 -0
  401. data/docs/agents/action-prompts/70-build-and-review.txt +12 -0
  402. data/docs/agents/manual-authoring-components.md +255 -0
  403. data/docs/agents/mcp-contract.md +162 -0
  404. data/docs/agents/quarto-computation-adoption.md +102 -0
  405. data/docs/assets/img/unaltraweb-docs-hero.svg +36 -0
  406. data/lib/unaltraweb/version.rb +8 -0
  407. data/lib/unaltraweb.rb +31 -0
  408. data/requirements.txt +5 -0
  409. data/scripts/biblio/fetch_scimago_csv.sh +126 -0
  410. data/scripts/biblio/metrics_common.py +154 -0
  411. data/scripts/biblio/metrics_merge_meta.py +73 -0
  412. data/scripts/biblio/metrics_update.py +826 -0
  413. data/scripts/computations/python/Dockerfile +37 -0
  414. data/scripts/computations/r/Dockerfile +31 -0
  415. data/scripts/computations/render.py +1267 -0
  416. data/scripts/cv/render_pdf_preview.sh +36 -0
  417. data/scripts/deploy/publish_branch.sh +80 -0
  418. data/scripts/generate_logo_variants.py +47 -0
  419. data/scripts/manual/Dockerfile +31 -0
  420. data/scripts/manual/build_pdf.py +1780 -0
  421. data/scripts/manual/filters/bibliography.lua +164 -0
  422. data/scripts/manual/filters/code-blocks.lua +102 -0
  423. data/scripts/manual/filters/figure-captions.lua +35 -0
  424. data/scripts/manual/publish_release.sh +281 -0
  425. data/scripts/manual/templates/manual.tex +494 -0
  426. data/scripts/manual/verify_release_assets.py +650 -0
  427. data/scripts/test_gem_build.py +128 -0
  428. data/scripts/test_reproducible_jekyll_build.py +191 -0
  429. data/scripts/test_wheel_install.py +282 -0
  430. data/scripts/unaltraweb-docker-mount.sh +36 -0
  431. data/scripts/unaltraweb-mcp-bootstrap.sh +105 -0
  432. data/scripts/unaltraweb-mcp-cleanup.sh +73 -0
  433. data/scripts/unaltraweb-mcp-project-id.sh +34 -0
  434. data/scripts/validate_distribution.py +563 -0
  435. data/scripts/validate_workflows.py +1285 -0
  436. data/scripts/web_captures/Dockerfile +31 -0
  437. data/scripts/web_captures/capture.mjs +157 -0
  438. data/scripts/web_captures/package-lock.json +56 -0
  439. data/scripts/web_captures/package.json +9 -0
  440. data/scripts/web_captures/render.py +867 -0
  441. data/src/unaltraweb_mcp/component-contract.json +153 -0
  442. data/src/unaltraweb_mcp/component-contract.schema.json +87 -0
  443. data/src/unaltraweb_mcp/docker_mount.py +19 -0
  444. metadata +861 -0
@@ -0,0 +1,2220 @@
1
+ .site-profile-unaltredocs {
2
+ --documentation-navbar-offset: 4.65rem;
3
+
4
+ .container[role="main"] {
5
+ max-width: 1360px;
6
+ }
7
+
8
+ .navbar .container {
9
+ max-width: 1360px;
10
+ }
11
+
12
+ #navbar.navbar {
13
+ z-index: 1080;
14
+ min-height: 3.65rem;
15
+ opacity: 1;
16
+ background: var(--global-bg-color);
17
+ padding-top: 0.35rem;
18
+ padding-bottom: 0.35rem;
19
+ isolation: isolate;
20
+ }
21
+
22
+ .navbar-brand.title {
23
+ display: inline-flex;
24
+ min-width: 0;
25
+ align-items: center;
26
+ gap: 0.7rem;
27
+ padding-top: 0;
28
+ padding-bottom: 0;
29
+ }
30
+
31
+ .documentation-navbar-logo-stack {
32
+ position: relative;
33
+ display: inline-block;
34
+ flex: 0 0 auto;
35
+ width: 2.6rem;
36
+ height: 2rem;
37
+ }
38
+
39
+ .documentation-navbar-logo {
40
+ position: absolute;
41
+ inset: 0;
42
+ width: 2.6rem;
43
+ height: 2rem;
44
+ object-fit: contain;
45
+ vertical-align: middle;
46
+ }
47
+
48
+ .documentation-navbar-logo-dark,
49
+ .documentation-navbar-logo-cafe {
50
+ display: none;
51
+ }
52
+
53
+ .documentation-navbar-title {
54
+ min-width: 0;
55
+ overflow: hidden;
56
+ text-overflow: ellipsis;
57
+ white-space: nowrap;
58
+ }
59
+
60
+ .documentation-navbar-search {
61
+ position: relative;
62
+ display: flex;
63
+ width: min(22rem, 34vw);
64
+ max-width: 22rem;
65
+ align-items: center;
66
+ margin: 0 0.35rem 0 0.6rem;
67
+ }
68
+
69
+ .documentation-navbar-search .documentation-search-input {
70
+ min-height: 2rem;
71
+ padding: 0.32rem 0.55rem;
72
+ font-size: 0.88rem;
73
+ }
74
+
75
+ .documentation-navbar-search-icon {
76
+ display: none;
77
+ }
78
+
79
+ .documentation-navbar-search .documentation-search-results {
80
+ position: absolute;
81
+ top: calc(100% + 0.42rem);
82
+ right: 0;
83
+ left: 0;
84
+ z-index: 1050;
85
+ margin-top: 0;
86
+ text-align: left;
87
+ }
88
+
89
+ .documentation-font-nav .nav-link {
90
+ font-weight: 700;
91
+ }
92
+
93
+ .dropdown-menu {
94
+ z-index: 1060;
95
+ }
96
+
97
+ .toggle-container {
98
+ display: flex;
99
+ align-items: center;
100
+ padding-left: 0.2rem;
101
+ }
102
+
103
+ #light-toggle {
104
+ display: inline-flex;
105
+ min-width: 2rem;
106
+ min-height: 2rem;
107
+ align-items: center;
108
+ justify-content: center;
109
+ }
110
+
111
+ #light-toggle-system,
112
+ #light-toggle-dark,
113
+ #light-toggle-light,
114
+ #light-toggle-cafe {
115
+ width: 1rem;
116
+ height: 1rem;
117
+ margin: 0 !important;
118
+ padding: 0 !important;
119
+ line-height: 1 !important;
120
+ }
121
+ }
122
+
123
+ html[data-theme="dark"] .site-profile-unaltredocs .documentation-navbar-logo-light,
124
+ html[data-theme="dark"] .site-profile-unaltredocs .documentation-navbar-logo-cafe,
125
+ html[data-theme="cafe"] .site-profile-unaltredocs .documentation-navbar-logo-light,
126
+ html[data-theme="cafe"] .site-profile-unaltredocs .documentation-navbar-logo-dark {
127
+ display: none;
128
+ }
129
+
130
+ html[data-theme="dark"] .site-profile-unaltredocs .documentation-navbar-logo-dark,
131
+ html[data-theme="cafe"] .site-profile-unaltredocs .documentation-navbar-logo-cafe {
132
+ display: block;
133
+ }
134
+
135
+ .documentation-sidebar-logo-dark,
136
+ .documentation-sidebar-logo-cafe {
137
+ display: none;
138
+ }
139
+
140
+ html[data-theme="dark"] .site-profile-unaltredocs .documentation-sidebar-logo-light,
141
+ html[data-theme="dark"] .site-profile-unaltredocs .documentation-sidebar-logo-cafe,
142
+ html[data-theme="cafe"] .site-profile-unaltredocs .documentation-sidebar-logo-light,
143
+ html[data-theme="cafe"] .site-profile-unaltredocs .documentation-sidebar-logo-dark {
144
+ display: none;
145
+ }
146
+
147
+ html[data-theme="dark"] .site-profile-unaltredocs .documentation-sidebar-logo-dark,
148
+ html[data-theme="cafe"] .site-profile-unaltredocs .documentation-sidebar-logo-cafe {
149
+ display: block;
150
+ }
151
+
152
+ .documentation-layout {
153
+ display: grid;
154
+ grid-template-columns: minmax(248px, 300px) minmax(0, 1fr) minmax(180px, 220px);
155
+ gap: 0 clamp(1.05rem, 2vw, 1.8rem);
156
+ align-items: start;
157
+ }
158
+
159
+ .documentation-home-layout {
160
+ grid-template-columns: minmax(270px, 318px) minmax(0, 1fr);
161
+ gap: 0 clamp(1.4rem, 3vw, 2.6rem);
162
+ }
163
+
164
+ .documentation-sidebar {
165
+ display: grid;
166
+ grid-column: 1;
167
+ grid-row: 1;
168
+ position: sticky;
169
+ top: var(--documentation-navbar-offset);
170
+ z-index: 1;
171
+ height: calc(100vh - var(--documentation-navbar-offset) - 0.75rem);
172
+ max-height: calc(100vh - var(--documentation-navbar-offset) - 0.75rem);
173
+ overflow: visible;
174
+ border-right: 1px solid var(--global-divider-color);
175
+ background: var(--global-bg-color);
176
+ padding: 0.85rem 1.1rem 2.6rem 0;
177
+ scrollbar-gutter: stable;
178
+ }
179
+
180
+ .documentation-sidebar-inner,
181
+ .documentation-nav,
182
+ .documentation-nav-block,
183
+ .documentation-nav-section,
184
+ .documentation-nav-group {
185
+ display: grid;
186
+ }
187
+
188
+ .documentation-sidebar-inner {
189
+ gap: 0.85rem;
190
+ grid-template-rows: minmax(0, 1fr);
191
+ height: 100%;
192
+ min-height: 0;
193
+ overflow: hidden;
194
+ }
195
+
196
+ .documentation-toc-collapsed .documentation-nav {
197
+ display: none;
198
+ }
199
+
200
+ .documentation-search-input {
201
+ width: 100%;
202
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
203
+ border-radius: 0;
204
+ background: var(--global-card-bg-color);
205
+ color: var(--global-text-color);
206
+ padding: 0.48rem 0.62rem;
207
+ }
208
+
209
+ .documentation-search-input:focus {
210
+ border-color: var(--global-theme-color);
211
+ outline: 0;
212
+ }
213
+
214
+ .documentation-search-results {
215
+ margin-top: 0.42rem;
216
+ max-height: min(38vh, 320px);
217
+ overflow: auto;
218
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
219
+ border-radius: 0;
220
+ background: var(--global-bg-color);
221
+ box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
222
+ padding: 0.75rem;
223
+ }
224
+
225
+ .documentation-search-results h2 {
226
+ margin: 0 0 0.45rem;
227
+ color: var(--global-text-color-light);
228
+ font-size: 0.72rem;
229
+ font-weight: 800;
230
+ letter-spacing: 0.06em;
231
+ text-transform: uppercase;
232
+ }
233
+
234
+ .documentation-search-results ol {
235
+ margin: 0;
236
+ padding: 0;
237
+ list-style: none;
238
+ }
239
+
240
+ .documentation-search-results li + li {
241
+ border-top: 1px solid var(--global-divider-color);
242
+ margin-top: 0.55rem;
243
+ padding-top: 0.55rem;
244
+ }
245
+
246
+ .documentation-search-results a {
247
+ display: block;
248
+ color: var(--global-text-color);
249
+ font-weight: 750;
250
+ line-height: 1.3;
251
+ text-decoration: none;
252
+ }
253
+
254
+ .documentation-search-results a:hover {
255
+ color: var(--global-theme-color);
256
+ text-decoration: none;
257
+ }
258
+
259
+ .documentation-search-results p,
260
+ .documentation-search-results .content-search-meta {
261
+ color: var(--global-text-color-light);
262
+ font-size: 0.82rem;
263
+ line-height: 1.4;
264
+ }
265
+
266
+ .documentation-search-results p {
267
+ margin: 0.22rem 0 0;
268
+ }
269
+
270
+ .documentation-search-results .content-search-meta {
271
+ display: block;
272
+ margin-top: 0.12rem;
273
+ font-weight: 700;
274
+ }
275
+
276
+ .documentation-search-results mark {
277
+ background: color-mix(in srgb, var(--global-theme-color) 24%, transparent);
278
+ color: var(--global-text-color);
279
+ padding: 0 0.12rem;
280
+ }
281
+
282
+ .documentation-nav {
283
+ gap: 0.8rem;
284
+ grid-template-rows: auto minmax(0, 1fr);
285
+ min-height: 0;
286
+ }
287
+
288
+ .documentation-nav.has-sidebar-logo,
289
+ .documentation-nav.has-profile-selector {
290
+ grid-template-rows: auto auto minmax(0, 1fr);
291
+ }
292
+
293
+ .documentation-nav.has-sidebar-logo .documentation-nav-scroll,
294
+ .documentation-nav.has-profile-selector .documentation-nav-scroll {
295
+ grid-row: 3;
296
+ }
297
+
298
+ .documentation-sidebar-brand {
299
+ display: flex;
300
+ align-items: center;
301
+ justify-content: center;
302
+ border-bottom: 1px solid color-mix(in srgb, var(--global-divider-color) 72%, transparent);
303
+ margin: 0 0.2rem 0.1rem;
304
+ padding: 0.15rem 0.4rem 0.72rem;
305
+ }
306
+
307
+ .documentation-sidebar-logo-stack {
308
+ position: relative;
309
+ display: inline-grid;
310
+ width: 4rem;
311
+ height: 4rem;
312
+ place-items: center;
313
+ }
314
+
315
+ .documentation-sidebar-logo {
316
+ grid-area: 1 / 1;
317
+ max-width: 100%;
318
+ max-height: 100%;
319
+ object-fit: contain;
320
+ }
321
+
322
+ .documentation-nav-scroll {
323
+ --documentation-toc-axis: 0.95rem;
324
+ --documentation-toc-page-axis: 1.72rem;
325
+ --documentation-toc-page-connector: 0.77rem;
326
+ --documentation-toc-line: color-mix(in srgb, var(--global-theme-color) 30%, var(--global-divider-color));
327
+ display: grid;
328
+ position: relative;
329
+ gap: 0.8rem;
330
+ align-self: start;
331
+ align-content: start;
332
+ grid-auto-rows: max-content;
333
+ max-height: 100%;
334
+ min-height: 0;
335
+ overflow: auto;
336
+ padding-bottom: 1.2rem;
337
+ scrollbar-gutter: stable;
338
+ }
339
+
340
+ .documentation-nav-block {
341
+ gap: 0.12rem;
342
+ }
343
+
344
+ .documentation-nav-block + .documentation-nav-block {
345
+ border-top: 1px solid color-mix(in srgb, var(--global-divider-color) 72%, transparent);
346
+ padding-top: 0.75rem;
347
+ }
348
+
349
+ .documentation-nav-block-title,
350
+ .documentation-section-title,
351
+ .documentation-subsection-title {
352
+ margin: 0;
353
+ line-height: 1.25;
354
+ }
355
+
356
+ .documentation-nav-block-title {
357
+ color: var(--global-text-color-light);
358
+ font-size: 0.72rem;
359
+ font-weight: 800;
360
+ letter-spacing: 0.08em;
361
+ padding: 0 0.5rem 0.25rem;
362
+ text-transform: uppercase;
363
+ }
364
+
365
+ .documentation-profile-switcher {
366
+ gap: 0.35rem;
367
+ margin: 0 0.2rem 0.1rem;
368
+ padding: 0.15rem 0.4rem 0.72rem;
369
+ }
370
+
371
+ .documentation-profile-label {
372
+ margin: 0;
373
+ color: var(--global-text-color-light);
374
+ font-size: 0.72rem;
375
+ font-weight: 800;
376
+ letter-spacing: 0.08em;
377
+ line-height: 1.25;
378
+ text-transform: uppercase;
379
+ }
380
+
381
+ .documentation-profile-control {
382
+ display: flex;
383
+ align-items: center;
384
+ gap: 0.75rem;
385
+ }
386
+
387
+ .documentation-profile-icon {
388
+ display: inline-grid;
389
+ flex: 0 0 1.55rem;
390
+ width: 1.55rem;
391
+ height: 1.55rem;
392
+ place-items: center;
393
+ color: var(--global-text-color-light);
394
+ font-size: 1.18rem;
395
+ line-height: 1;
396
+ }
397
+
398
+ .documentation-profile-select {
399
+ flex: 1 1 auto;
400
+ min-width: 0;
401
+ width: 100%;
402
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
403
+ border-radius: 0;
404
+ background: var(--global-card-bg-color);
405
+ color: var(--global-text-color);
406
+ font-size: 0.86rem;
407
+ font-weight: 700;
408
+ padding: 0.42rem 0.54rem;
409
+ }
410
+
411
+ .documentation-profile-select:focus {
412
+ border-color: var(--global-theme-color);
413
+ outline: 0;
414
+ }
415
+
416
+ .documentation-tool-button {
417
+ position: relative;
418
+ display: inline-flex;
419
+ gap: 0.24rem;
420
+ min-width: 2rem;
421
+ min-height: 2rem;
422
+ align-items: center;
423
+ justify-content: center;
424
+ border: 1px solid var(--global-divider-color);
425
+ border-radius: 0;
426
+ background: var(--global-card-bg-color);
427
+ color: var(--global-text-color);
428
+ font-weight: 700;
429
+ line-height: 1;
430
+ padding: 0.34rem 0.44rem;
431
+ }
432
+
433
+ .documentation-tool-label {
434
+ position: absolute;
435
+ width: 1px;
436
+ height: 1px;
437
+ margin: -1px;
438
+ overflow: hidden;
439
+ clip: rect(0, 0, 0, 0);
440
+ white-space: nowrap;
441
+ }
442
+
443
+ .documentation-tool-button:hover,
444
+ .documentation-tool-button:focus-visible {
445
+ border-color: var(--global-theme-color);
446
+ background: color-mix(in srgb, var(--global-theme-color) 8%, var(--global-card-bg-color));
447
+ color: var(--global-theme-color);
448
+ }
449
+
450
+ .documentation-toc-toggle {
451
+ position: absolute;
452
+ top: 50%;
453
+ right: -0.72rem;
454
+ z-index: 2;
455
+ width: 1.44rem;
456
+ height: 5.2rem;
457
+ min-width: 1.44rem;
458
+ min-height: 5.2rem;
459
+ border: 0;
460
+ background: transparent;
461
+ padding: 0;
462
+ transform: translateY(-50%);
463
+ }
464
+
465
+ .documentation-toc-toggle::before {
466
+ display: block;
467
+ width: 1.02rem;
468
+ height: 4.7rem;
469
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 72%, var(--global-divider-color));
470
+ background: color-mix(in srgb, var(--global-theme-color) 86%, var(--global-card-bg-color));
471
+ content: "";
472
+ }
473
+
474
+ .documentation-toc-toggle i {
475
+ position: absolute;
476
+ top: 50%;
477
+ left: 50%;
478
+ z-index: 1;
479
+ color: var(--global-hover-text-color);
480
+ font-size: 0.84rem;
481
+ line-height: 1;
482
+ transform: translate(-50%, -50%);
483
+ }
484
+
485
+ .documentation-toc-toggle.is-collapsed i {
486
+ transform: translate(-50%, -50%) rotate(180deg);
487
+ }
488
+
489
+ .documentation-toc-toggle:hover,
490
+ .documentation-toc-toggle:focus-visible {
491
+ border-color: transparent;
492
+ background: transparent;
493
+ color: var(--global-theme-color);
494
+ outline: none;
495
+ }
496
+
497
+ .documentation-toc-toggle:hover::before,
498
+ .documentation-toc-toggle:focus-visible::before {
499
+ border-color: color-mix(in srgb, var(--global-theme-color) 42%, var(--global-divider-color));
500
+ background: color-mix(in srgb, var(--global-theme-color) 70%, var(--global-card-bg-color));
501
+ }
502
+
503
+ .documentation-toc-toggle:focus-visible::before {
504
+ box-shadow: 0 0 0 2px color-mix(in srgb, var(--global-theme-color) 24%, transparent);
505
+ }
506
+
507
+ .documentation-layout.documentation-toc-collapsed {
508
+ grid-template-columns: 32px minmax(0, 1fr);
509
+ column-gap: 0;
510
+ }
511
+
512
+ .documentation-layout.documentation-toc-collapsed .documentation-sidebar {
513
+ width: 32px;
514
+ height: calc(100vh - 5.15rem);
515
+ min-height: 8rem;
516
+ max-height: calc(100vh - 5.15rem);
517
+ overflow: visible;
518
+ border-right: 1px solid var(--global-divider-color);
519
+ background: transparent;
520
+ padding: 0;
521
+ }
522
+
523
+ .documentation-layout.documentation-toc-collapsed .documentation-sidebar-inner {
524
+ display: none;
525
+ }
526
+
527
+ .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle {
528
+ right: -0.72rem;
529
+ }
530
+
531
+ .documentation-layout.documentation-toc-collapsed .documentation-main {
532
+ grid-column: 2;
533
+ width: 100%;
534
+ max-width: none;
535
+ padding-left: 1.25rem;
536
+ }
537
+
538
+ .documentation-layout.documentation-toc-collapsed .documentation-section-toc {
539
+ display: none;
540
+ }
541
+
542
+ .documentation-font-menu .documentation-font-menu-item {
543
+ display: flex;
544
+ gap: 0.5rem;
545
+ align-items: center;
546
+ color: var(--global-text-color);
547
+ font-size: 0.88rem;
548
+ }
549
+
550
+ .documentation-font-modifier {
551
+ font-size: 0.72em;
552
+ line-height: 1;
553
+ }
554
+
555
+ .documentation-nav-section {
556
+ gap: 0.08rem;
557
+ align-content: start;
558
+ }
559
+
560
+ .documentation-nav-section + .documentation-nav-section {
561
+ margin-top: 0.55rem;
562
+ }
563
+
564
+ .documentation-overview-link,
565
+ .documentation-accordion-summary,
566
+ .documentation-sidebar .documentation-nav-link {
567
+ border-radius: 0;
568
+ color: var(--global-text-color);
569
+ text-decoration: none;
570
+ }
571
+
572
+ .documentation-overview-link {
573
+ display: flex;
574
+ position: relative;
575
+ gap: 0.48rem;
576
+ align-items: center;
577
+ padding: 0.5rem 0.62rem 0.5rem 2.16rem;
578
+ font-size: 0.86rem;
579
+ font-weight: 760;
580
+ }
581
+
582
+ .documentation-overview-icon {
583
+ position: absolute;
584
+ left: var(--documentation-toc-axis);
585
+ z-index: 2;
586
+ display: inline-grid;
587
+ width: 1.62rem;
588
+ height: 1.62rem;
589
+ border: 1px solid var(--documentation-toc-line);
590
+ border-radius: 999px;
591
+ background: var(--global-bg-color);
592
+ place-items: center;
593
+ color: var(--global-text-color-light);
594
+ font-size: 1.05rem;
595
+ transform: translateX(-50%);
596
+ }
597
+
598
+ .documentation-overview-link:hover,
599
+ .documentation-overview-link.active {
600
+ background: color-mix(in srgb, var(--global-theme-color) 10%, transparent);
601
+ color: var(--global-theme-color);
602
+ text-decoration: none;
603
+ }
604
+
605
+ .documentation-overview-link:hover .documentation-overview-icon,
606
+ .documentation-overview-link.active .documentation-overview-icon {
607
+ border-color: var(--global-theme-color);
608
+ background: var(--global-theme-color);
609
+ color: var(--global-hover-text-color);
610
+ }
611
+
612
+ .documentation-accordion {
613
+ display: grid;
614
+ position: relative;
615
+ width: 100%;
616
+ gap: 0.34rem;
617
+ align-content: start;
618
+ grid-auto-rows: max-content;
619
+ }
620
+
621
+ .documentation-accordion::before {
622
+ position: absolute;
623
+ top: var(--documentation-tree-line-top, 1.05rem);
624
+ bottom: var(--documentation-tree-line-bottom, 1.05rem);
625
+ left: var(--documentation-toc-axis);
626
+ z-index: 1;
627
+ width: 1px;
628
+ background: var(--documentation-toc-line);
629
+ content: "";
630
+ pointer-events: none;
631
+ }
632
+
633
+ .documentation-accordion.has-multiple-visible-documentation-sections::before,
634
+ .documentation-accordion.has-visible-documentation-branches::before {
635
+ content: "";
636
+ }
637
+
638
+ .documentation-accordion-section {
639
+ position: relative;
640
+ width: 100%;
641
+ min-width: 0;
642
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 62%, transparent);
643
+ border-radius: 0;
644
+ }
645
+
646
+ .documentation-accordion-section[open] {
647
+ border-color: color-mix(in srgb, var(--global-divider-color) 62%, transparent);
648
+ background: transparent;
649
+ }
650
+
651
+ .documentation-accordion-section[data-documentation-active-section="true"] {
652
+ border-color: color-mix(in srgb, var(--global-theme-color) 14%, var(--global-divider-color));
653
+ background: color-mix(in srgb, var(--global-theme-color) 4%, transparent);
654
+ }
655
+
656
+ .documentation-accordion-summary {
657
+ position: relative;
658
+ display: flex;
659
+ width: 100%;
660
+ box-sizing: border-box;
661
+ gap: 0.42rem;
662
+ align-items: center;
663
+ cursor: pointer;
664
+ font-size: 0.82rem;
665
+ font-weight: 820;
666
+ letter-spacing: 0.025em;
667
+ list-style: none;
668
+ padding: 0.5rem 0.52rem 0.5rem 1.72rem;
669
+ }
670
+
671
+ .documentation-accordion-section:not([open]) .documentation-accordion-summary {
672
+ border-color: transparent;
673
+ }
674
+
675
+ .documentation-accordion-summary::-webkit-details-marker {
676
+ display: none;
677
+ }
678
+
679
+ .documentation-accordion-summary:hover,
680
+ .documentation-accordion-summary.active {
681
+ color: var(--global-theme-color);
682
+ }
683
+
684
+ .documentation-accordion-summary.active {
685
+ cursor: default;
686
+ }
687
+
688
+ .documentation-accordion-mark {
689
+ position: absolute;
690
+ top: 50%;
691
+ left: var(--documentation-toc-axis);
692
+ z-index: 2;
693
+ display: inline-block;
694
+ width: 0.48rem;
695
+ height: 0.48rem;
696
+ border: 1px solid var(--documentation-toc-line);
697
+ border-radius: 999px;
698
+ background: var(--global-bg-color);
699
+ transform: translate(-50%, -50%);
700
+ }
701
+
702
+ .documentation-accordion-summary.active .documentation-accordion-mark {
703
+ border-color: var(--global-theme-color);
704
+ background: var(--global-theme-color);
705
+ }
706
+
707
+ .documentation-accordion-title {
708
+ flex: 1 1 auto;
709
+ min-width: 0;
710
+ overflow: visible;
711
+ line-height: 1.25;
712
+ text-transform: uppercase;
713
+ white-space: normal;
714
+ }
715
+
716
+ .documentation-accordion-caret {
717
+ display: inline-grid;
718
+ flex: 0 0 1rem;
719
+ justify-self: end;
720
+ margin-left: auto;
721
+ place-items: center;
722
+ color: var(--global-text-color-light);
723
+ font-size: 0.82rem;
724
+ transition: transform 0.15s ease;
725
+ }
726
+
727
+ .documentation-accordion-section[open] .documentation-accordion-caret {
728
+ transform: rotate(180deg);
729
+ }
730
+
731
+ .documentation-accordion-items {
732
+ display: grid;
733
+ position: relative;
734
+ gap: 0.08rem;
735
+ padding: 0 0.38rem 0.42rem 0;
736
+ }
737
+
738
+ .documentation-subsection-title {
739
+ margin: 0.35rem 0 0.12rem;
740
+ color: var(--global-text-color-light);
741
+ font-size: 0.7rem;
742
+ font-weight: 780;
743
+ letter-spacing: 0.045em;
744
+ line-height: 1.25;
745
+ text-transform: uppercase;
746
+ }
747
+
748
+ .documentation-subsection-title.active {
749
+ color: var(--global-theme-color);
750
+ }
751
+
752
+ .documentation-sidebar .documentation-nav-link {
753
+ position: relative;
754
+ display: block;
755
+ font-size: 0.83rem;
756
+ line-height: 1.28;
757
+ padding: 0.34rem 0.48rem 0.34rem 2.36rem;
758
+ }
759
+
760
+ .documentation-sidebar .documentation-nav-link:visited {
761
+ color: var(--global-text-color);
762
+ }
763
+
764
+ .documentation-sidebar .documentation-nav-link.level-1 {
765
+ font-weight: 700;
766
+ }
767
+
768
+ .documentation-sidebar .documentation-nav-link.level-2 {
769
+ margin-left: 0;
770
+ }
771
+
772
+ .documentation-sidebar .documentation-nav-link.level-3 {
773
+ margin-left: 0;
774
+ font-size: 0.8rem;
775
+ padding-top: 0.25rem;
776
+ padding-bottom: 0.25rem;
777
+ }
778
+
779
+ .documentation-sidebar .documentation-nav-link:hover,
780
+ .documentation-sidebar .documentation-nav-link.active,
781
+ .documentation-sidebar .documentation-nav-link.active:visited {
782
+ background: color-mix(in srgb, var(--global-theme-color) 11%, transparent);
783
+ color: var(--global-theme-color);
784
+ text-decoration: none;
785
+ }
786
+
787
+ .documentation-sidebar .documentation-nav-link.active {
788
+ font-weight: 750;
789
+ }
790
+
791
+ .documentation-sidebar .documentation-nav-link::before {
792
+ position: absolute;
793
+ top: 50%;
794
+ left: var(--documentation-toc-page-axis);
795
+ z-index: 2;
796
+ width: 0.45rem;
797
+ height: 0.45rem;
798
+ border: 1px solid var(--documentation-toc-line);
799
+ border-radius: 999px;
800
+ background: var(--global-bg-color);
801
+ content: "";
802
+ transform: translate(-50%, -50%);
803
+ }
804
+
805
+ .documentation-sidebar .documentation-nav-link::after {
806
+ position: absolute;
807
+ top: 50%;
808
+ left: var(--documentation-toc-axis);
809
+ z-index: 1;
810
+ width: var(--documentation-toc-page-connector);
811
+ height: 1px;
812
+ background: var(--documentation-toc-line);
813
+ content: "";
814
+ transform: translateY(-50%);
815
+ }
816
+
817
+ .documentation-sidebar .documentation-nav-link.active::before {
818
+ border-color: var(--global-theme-color);
819
+ background: var(--global-theme-color);
820
+ }
821
+
822
+ .documentation-section-toc {
823
+ grid-column: 3;
824
+ grid-row: 1;
825
+ position: sticky;
826
+ top: var(--documentation-navbar-offset);
827
+ z-index: 1;
828
+ height: calc(100vh - var(--documentation-navbar-offset) - 0.75rem);
829
+ max-height: calc(100vh - var(--documentation-navbar-offset) - 0.75rem);
830
+ min-width: 0;
831
+ overflow: auto;
832
+ border-left: 1px solid var(--global-divider-color);
833
+ background: var(--global-bg-color);
834
+ padding: 0.85rem 0 2.1rem 1rem;
835
+ scrollbar-gutter: stable;
836
+ }
837
+
838
+ .documentation-section-toc-inner {
839
+ --documentation-section-toc-axis: 0.24rem;
840
+ --documentation-section-toc-connector: 0.77rem;
841
+ --documentation-section-toc-node-axis: 1.01rem;
842
+ --documentation-section-toc-line: color-mix(in srgb, var(--global-theme-color) 28%, var(--global-divider-color));
843
+ display: grid;
844
+ position: relative;
845
+ gap: 0.32rem;
846
+ }
847
+
848
+ .documentation-section-toc-heading,
849
+ .documentation-section-toc-section {
850
+ margin: 0;
851
+ line-height: 1.25;
852
+ }
853
+
854
+ .documentation-section-toc-heading {
855
+ color: var(--global-text-color-light);
856
+ font-size: 0.72rem;
857
+ font-weight: 800;
858
+ letter-spacing: 0.08em;
859
+ text-transform: uppercase;
860
+ }
861
+
862
+ .documentation-section-toc-section {
863
+ position: relative;
864
+ margin-bottom: 0.28rem;
865
+ color: var(--global-text-color);
866
+ font-size: 0.86rem;
867
+ font-weight: 800;
868
+ }
869
+
870
+ .documentation-section-toc-list {
871
+ display: grid;
872
+ gap: 0;
873
+ margin: 0;
874
+ padding: 0;
875
+ list-style: none;
876
+ }
877
+
878
+ .documentation-section-toc-item {
879
+ position: relative;
880
+ }
881
+
882
+ .documentation-section-toc-item::before {
883
+ position: absolute;
884
+ top: 0;
885
+ bottom: 0;
886
+ left: var(--documentation-section-toc-axis);
887
+ z-index: 1;
888
+ width: 1px;
889
+ background: var(--documentation-section-toc-line);
890
+ content: "";
891
+ pointer-events: none;
892
+ }
893
+
894
+ .documentation-section-toc-item:first-child::before {
895
+ top: 50%;
896
+ }
897
+
898
+ .documentation-section-toc-item:last-child::before {
899
+ bottom: 50%;
900
+ }
901
+
902
+ .documentation-section-toc-link {
903
+ position: relative;
904
+ display: block;
905
+ border-radius: 0;
906
+ color: var(--global-text-color-light);
907
+ font-size: 0.8rem;
908
+ line-height: 1.28;
909
+ padding: 0.25rem 0.36rem 0.25rem 1.68rem;
910
+ text-decoration: none;
911
+ }
912
+
913
+ .documentation-section-toc-link.level-3 {
914
+ font-size: 0.74rem;
915
+ padding-left: 2.08rem;
916
+ }
917
+
918
+ .documentation-section-toc-link:visited {
919
+ color: var(--global-text-color-light);
920
+ }
921
+
922
+ .documentation-section-toc-link::before {
923
+ position: absolute;
924
+ top: 50%;
925
+ left: var(--documentation-section-toc-node-axis);
926
+ z-index: 2;
927
+ width: 0.45rem;
928
+ height: 0.45rem;
929
+ border: 1px solid var(--documentation-section-toc-line);
930
+ border-radius: 999px;
931
+ background: var(--global-bg-color);
932
+ content: "";
933
+ transform: translate(-50%, -50%);
934
+ }
935
+
936
+ .documentation-section-toc-link::after {
937
+ position: absolute;
938
+ top: 50%;
939
+ left: var(--documentation-section-toc-axis);
940
+ z-index: 1;
941
+ width: var(--documentation-section-toc-connector);
942
+ height: 1px;
943
+ background: var(--documentation-section-toc-line);
944
+ content: "";
945
+ transform: translateY(-50%);
946
+ }
947
+
948
+ .documentation-section-toc-link:hover,
949
+ .documentation-section-toc-link.active,
950
+ .documentation-section-toc-link.active:visited {
951
+ background: color-mix(in srgb, var(--global-theme-color) 11%, transparent);
952
+ color: var(--global-theme-color);
953
+ text-decoration: none;
954
+ }
955
+
956
+ .documentation-section-toc-link.active {
957
+ font-weight: 760;
958
+ }
959
+
960
+ .documentation-section-toc-link.active::before {
961
+ border-color: var(--global-theme-color);
962
+ background: var(--global-theme-color);
963
+ }
964
+
965
+ .documentation-section-toc-link:hover::after,
966
+ .documentation-section-toc-link.active::after {
967
+ background: var(--global-theme-color);
968
+ }
969
+
970
+ .documentation-nav-link:focus-visible,
971
+ .documentation-section-toc-link:focus-visible,
972
+ .documentation-download-card:focus-visible,
973
+ .documentation-download-detail-button:focus-visible,
974
+ .documentation-download-detail-secondary:focus-visible,
975
+ .documentation-downloads-release:focus-visible,
976
+ .documentation-card:focus-visible {
977
+ outline: 2px solid var(--global-theme-color);
978
+ outline-offset: 2px;
979
+ }
980
+
981
+ .documentation-main {
982
+ grid-column: 2;
983
+ grid-row: 1;
984
+ min-width: 0;
985
+ max-width: 900px;
986
+ }
987
+
988
+ .documentation-home {
989
+ max-width: 1080px;
990
+ }
991
+
992
+ .documentation-page {
993
+ display: flex;
994
+ min-height: calc(100vh - 7rem);
995
+ flex-direction: column;
996
+ }
997
+
998
+ .documentation-hero {
999
+ position: relative;
1000
+ display: grid;
1001
+ grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
1002
+ gap: 1.5rem;
1003
+ align-items: center;
1004
+ margin-bottom: 2rem;
1005
+ overflow: hidden;
1006
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 28%, var(--global-divider-color));
1007
+ border-radius: 0;
1008
+ background:
1009
+ radial-gradient(circle at 88% 22%, color-mix(in srgb, var(--global-theme-color) 40%, transparent) 0 4.8rem, transparent 4.9rem),
1010
+ linear-gradient(135deg, color-mix(in srgb, var(--global-theme-color) 38%, #102018), #13231f 58%, #1d2b28);
1011
+ color: #fff;
1012
+ padding: clamp(1.5rem, 4vw, 2.4rem);
1013
+ }
1014
+
1015
+ .documentation-hero::before {
1016
+ position: absolute;
1017
+ right: 2rem;
1018
+ bottom: 1.1rem;
1019
+ width: min(34%, 19rem);
1020
+ height: 52%;
1021
+ background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
1022
+ background-size: 12px 12px;
1023
+ content: "";
1024
+ opacity: 0.7;
1025
+ }
1026
+
1027
+ .documentation-hero-copy,
1028
+ .documentation-hero-visual {
1029
+ position: relative;
1030
+ z-index: 1;
1031
+ }
1032
+
1033
+ .documentation-hero h1 {
1034
+ color: #fff;
1035
+ font-size: clamp(2.1rem, 5vw, 3.4rem);
1036
+ letter-spacing: -0.045em;
1037
+ }
1038
+
1039
+ .documentation-hero .documentation-kicker,
1040
+ .documentation-hero .documentation-subtitle {
1041
+ color: rgba(255, 255, 255, 0.82);
1042
+ }
1043
+
1044
+ .documentation-hero-actions {
1045
+ display: flex;
1046
+ flex-wrap: wrap;
1047
+ gap: 0.7rem;
1048
+ align-items: center;
1049
+ margin-top: 1rem;
1050
+ }
1051
+
1052
+ .documentation-hero-cta {
1053
+ display: inline-flex;
1054
+ gap: 0.48rem;
1055
+ align-items: center;
1056
+ border: 1px solid rgba(255, 255, 255, 0.24);
1057
+ border-radius: 0;
1058
+ background: #fff;
1059
+ color: #14231f;
1060
+ font-weight: 800;
1061
+ padding: 0.68rem 0.9rem;
1062
+ text-decoration: none;
1063
+ }
1064
+
1065
+ .documentation-hero-cta:hover {
1066
+ background: color-mix(in srgb, var(--global-theme-color) 12%, #fff);
1067
+ color: #14231f;
1068
+ text-decoration: none;
1069
+ }
1070
+
1071
+ .documentation-hero-cta--secondary {
1072
+ border-color: #98c8be;
1073
+ background: #23413a;
1074
+ color: #fff;
1075
+ }
1076
+
1077
+ .documentation-hero-cta--secondary:hover {
1078
+ background: #2d574e;
1079
+ color: #fff;
1080
+ }
1081
+
1082
+ .documentation-hero img {
1083
+ width: 100%;
1084
+ border-radius: 0;
1085
+ background: rgba(255, 255, 255, 0.9);
1086
+ box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
1087
+ }
1088
+
1089
+ .documentation-downloads {
1090
+ display: grid;
1091
+ gap: 0.95rem;
1092
+ margin: 0 0 2rem;
1093
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 24%, var(--global-divider-color));
1094
+ border-radius: 0;
1095
+ background:
1096
+ linear-gradient(90deg, color-mix(in srgb, var(--global-theme-color) 9%, transparent), transparent 38%),
1097
+ var(--global-card-bg-color);
1098
+ padding: clamp(1rem, 2.4vw, 1.35rem);
1099
+ }
1100
+
1101
+ .documentation-downloads--compact {
1102
+ margin: 1rem 0 1.65rem;
1103
+ }
1104
+
1105
+ .documentation-downloads-header {
1106
+ display: grid;
1107
+ gap: 0.22rem;
1108
+ }
1109
+
1110
+ .documentation-downloads-header h2,
1111
+ .documentation-downloads-header h3 {
1112
+ margin: 0;
1113
+ }
1114
+
1115
+ .documentation-downloads-header p:not(.documentation-kicker) {
1116
+ max-width: 58rem;
1117
+ margin: 0;
1118
+ color: var(--global-text-color-light);
1119
+ }
1120
+
1121
+ .documentation-downloads-grid {
1122
+ display: grid;
1123
+ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
1124
+ gap: 0.7rem;
1125
+ }
1126
+
1127
+ .documentation-download-card {
1128
+ display: grid;
1129
+ grid-template-columns: auto minmax(0, 1fr) auto;
1130
+ gap: 0.95rem;
1131
+ align-items: center;
1132
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 76%, transparent);
1133
+ border-radius: 0;
1134
+ background: var(--global-bg-color);
1135
+ color: var(--global-text-color);
1136
+ padding: 0.95rem;
1137
+ text-decoration: none;
1138
+ }
1139
+
1140
+ .documentation-download-card:hover {
1141
+ border-color: var(--global-theme-color);
1142
+ color: var(--global-text-color);
1143
+ text-decoration: none;
1144
+ transform: translateY(-1px);
1145
+ }
1146
+
1147
+ .documentation-download-card--disabled {
1148
+ opacity: 0.64;
1149
+ }
1150
+
1151
+ .documentation-downloads-icon,
1152
+ .documentation-downloads-action {
1153
+ display: inline-grid;
1154
+ place-items: center;
1155
+ border-radius: 0;
1156
+ }
1157
+
1158
+ .documentation-downloads-icon {
1159
+ width: 3.35rem;
1160
+ height: 3.35rem;
1161
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 36%, var(--global-divider-color));
1162
+ background: color-mix(in srgb, var(--global-theme-color) 10%, transparent);
1163
+ color: var(--global-theme-color);
1164
+ font-size: 1.85rem;
1165
+ }
1166
+
1167
+ .documentation-downloads-copy {
1168
+ display: grid;
1169
+ gap: 0.18rem;
1170
+ min-width: 0;
1171
+ }
1172
+
1173
+ .documentation-downloads-copy strong {
1174
+ line-height: 1.2;
1175
+ }
1176
+
1177
+ .documentation-downloads-copy span {
1178
+ color: var(--global-text-color-light);
1179
+ font-size: 0.86rem;
1180
+ line-height: 1.25;
1181
+ }
1182
+
1183
+ .documentation-downloads-copy em {
1184
+ justify-self: start;
1185
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 32%, var(--global-divider-color));
1186
+ border-radius: 0;
1187
+ color: var(--global-theme-color);
1188
+ font-size: 0.72rem;
1189
+ font-style: normal;
1190
+ font-weight: 800;
1191
+ letter-spacing: 0.03em;
1192
+ line-height: 1;
1193
+ padding: 0.23rem 0.38rem;
1194
+ text-transform: uppercase;
1195
+ }
1196
+
1197
+ .documentation-downloads-action {
1198
+ width: 2.45rem;
1199
+ height: 2.45rem;
1200
+ background: var(--global-theme-color);
1201
+ color: #fff;
1202
+ font-size: 1.25rem;
1203
+ }
1204
+
1205
+ .documentation-downloads-footer {
1206
+ display: flex;
1207
+ flex-wrap: wrap;
1208
+ gap: 0.65rem 1rem;
1209
+ align-items: center;
1210
+ justify-content: space-between;
1211
+ border-top: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
1212
+ padding-top: 0.85rem;
1213
+ }
1214
+
1215
+ .documentation-downloads-footer p {
1216
+ margin: 0;
1217
+ color: var(--global-text-color-light);
1218
+ font-size: 0.9rem;
1219
+ }
1220
+
1221
+ .documentation-downloads-release {
1222
+ display: inline-flex;
1223
+ gap: 0.35rem;
1224
+ align-items: center;
1225
+ color: var(--global-theme-color);
1226
+ font-weight: 780;
1227
+ text-decoration: none;
1228
+ }
1229
+
1230
+ .documentation-downloads-release:hover {
1231
+ color: var(--global-theme-color);
1232
+ text-decoration: underline;
1233
+ }
1234
+
1235
+ .documentation-download-detail {
1236
+ margin: 0 0 1.75rem;
1237
+ }
1238
+
1239
+ .documentation-download-detail-card {
1240
+ display: grid;
1241
+ grid-template-columns: auto minmax(0, 1fr);
1242
+ gap: 1rem 1.1rem;
1243
+ align-items: start;
1244
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 26%, var(--global-divider-color));
1245
+ border-radius: 0;
1246
+ background:
1247
+ linear-gradient(135deg, color-mix(in srgb, var(--global-theme-color) 11%, transparent), transparent 42%),
1248
+ var(--global-card-bg-color);
1249
+ padding: clamp(1rem, 2.6vw, 1.45rem);
1250
+ }
1251
+
1252
+ .documentation-download-detail-icon {
1253
+ display: inline-grid;
1254
+ width: 4.35rem;
1255
+ height: 4.35rem;
1256
+ place-items: center;
1257
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 38%, var(--global-divider-color));
1258
+ border-radius: 0;
1259
+ background: color-mix(in srgb, var(--global-theme-color) 12%, transparent);
1260
+ color: var(--global-theme-color);
1261
+ font-size: 2.45rem;
1262
+ }
1263
+
1264
+ .documentation-download-detail-copy {
1265
+ display: grid;
1266
+ gap: 0.55rem;
1267
+ min-width: 0;
1268
+ }
1269
+
1270
+ .documentation-download-detail-copy h2 {
1271
+ margin: 0;
1272
+ }
1273
+
1274
+ .documentation-download-detail-summary,
1275
+ .documentation-download-detail-note {
1276
+ margin: 0;
1277
+ color: var(--global-text-color-light);
1278
+ }
1279
+
1280
+ .documentation-download-detail-meta {
1281
+ display: grid;
1282
+ gap: 0;
1283
+ margin: 0.1rem 0 0;
1284
+ padding: 0.08rem 0;
1285
+ }
1286
+
1287
+ .documentation-download-detail-meta div {
1288
+ display: grid;
1289
+ grid-template-columns: minmax(6.4rem, 8.5rem) minmax(0, 1fr);
1290
+ gap: 0.65rem;
1291
+ align-items: baseline;
1292
+ border-top: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
1293
+ padding: 0.46rem 0;
1294
+ }
1295
+
1296
+ .documentation-download-detail-meta div:first-child {
1297
+ border-top: 0;
1298
+ }
1299
+
1300
+ .documentation-download-detail-meta dt {
1301
+ margin: 0;
1302
+ color: var(--global-text-color-light);
1303
+ font-size: 0.72rem;
1304
+ font-weight: 800;
1305
+ letter-spacing: 0.06em;
1306
+ line-height: 1.1;
1307
+ text-transform: uppercase;
1308
+ }
1309
+
1310
+ .documentation-download-detail-meta dd {
1311
+ margin: 0;
1312
+ color: var(--global-text-color);
1313
+ font-weight: 720;
1314
+ line-height: 1.3;
1315
+ overflow-wrap: anywhere;
1316
+ }
1317
+
1318
+ .documentation-download-detail-actions {
1319
+ display: flex;
1320
+ grid-column: 1 / -1;
1321
+ flex-wrap: wrap;
1322
+ gap: 0.65rem 0.85rem;
1323
+ align-items: center;
1324
+ border-top: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
1325
+ padding-top: 0.95rem;
1326
+ }
1327
+
1328
+ .documentation-download-detail-button,
1329
+ .documentation-download-detail-secondary {
1330
+ display: inline-flex;
1331
+ gap: 0.42rem;
1332
+ align-items: center;
1333
+ border-radius: 0;
1334
+ font-weight: 800;
1335
+ text-decoration: none;
1336
+ }
1337
+
1338
+ .documentation-download-detail-button {
1339
+ border: 1px solid var(--global-theme-color);
1340
+ background: var(--global-theme-color);
1341
+ color: #fff;
1342
+ padding: 0.72rem 0.9rem;
1343
+ }
1344
+
1345
+ .documentation-download-detail-button:hover {
1346
+ background: color-mix(in srgb, var(--global-theme-color) 86%, #000);
1347
+ color: #fff;
1348
+ text-decoration: none;
1349
+ }
1350
+
1351
+ .documentation-download-detail-button--disabled {
1352
+ border-color: var(--global-divider-color);
1353
+ background: color-mix(in srgb, var(--global-text-color-light) 14%, transparent);
1354
+ color: var(--global-text-color-light);
1355
+ }
1356
+
1357
+ .documentation-download-detail-secondary {
1358
+ margin-left: auto;
1359
+ color: var(--global-theme-color);
1360
+ padding: 0.72rem 0;
1361
+ }
1362
+
1363
+ .documentation-download-detail-secondary:hover {
1364
+ color: var(--global-theme-color);
1365
+ text-decoration: underline;
1366
+ }
1367
+
1368
+ @media (max-width: 640px) {
1369
+ .documentation-download-detail-card {
1370
+ grid-template-columns: minmax(0, 1fr);
1371
+ }
1372
+
1373
+ .documentation-download-detail-icon {
1374
+ width: 3.9rem;
1375
+ height: 3.9rem;
1376
+ font-size: 2.1rem;
1377
+ }
1378
+
1379
+ .documentation-download-detail-secondary {
1380
+ margin-left: 0;
1381
+ }
1382
+
1383
+ .documentation-download-detail-meta div {
1384
+ grid-template-columns: minmax(0, 1fr);
1385
+ gap: 0.12rem;
1386
+ }
1387
+ }
1388
+
1389
+ .documentation-kicker {
1390
+ margin: 0 0 0.35rem;
1391
+ color: var(--global-theme-color);
1392
+ font-size: 0.8rem;
1393
+ font-weight: 700;
1394
+ letter-spacing: 0.05em;
1395
+ text-transform: uppercase;
1396
+ }
1397
+
1398
+ .documentation-breadcrumb {
1399
+ display: inline-flex;
1400
+ flex-wrap: wrap;
1401
+ gap: 0;
1402
+ align-items: center;
1403
+ margin: 0 0 0.58rem;
1404
+ overflow: hidden;
1405
+ border: 1px solid var(--global-divider-color);
1406
+ border-radius: 0;
1407
+ background: var(--global-card-bg-color);
1408
+ color: var(--global-theme-color);
1409
+ font-size: 0.73rem;
1410
+ font-weight: 800;
1411
+ letter-spacing: 0.06em;
1412
+ text-transform: uppercase;
1413
+ }
1414
+
1415
+ .documentation-breadcrumb-item {
1416
+ display: inline-flex;
1417
+ min-height: 1.55rem;
1418
+ align-items: center;
1419
+ padding: 0.24rem 0.66rem;
1420
+ }
1421
+
1422
+ .documentation-breadcrumb-item + .documentation-breadcrumb-item {
1423
+ border-left: 1px solid var(--global-divider-color);
1424
+ }
1425
+
1426
+ .documentation-hero h1,
1427
+ .documentation-page-header h1 {
1428
+ margin-bottom: 0.6rem;
1429
+ }
1430
+
1431
+ .documentation-page-header h1::before {
1432
+ display: inline-block;
1433
+ width: 0.58rem;
1434
+ height: 0.58rem;
1435
+ margin-right: 0.55rem;
1436
+ border-radius: 999px;
1437
+ background: var(--global-theme-color);
1438
+ content: "";
1439
+ vertical-align: 0.12em;
1440
+ }
1441
+
1442
+ .documentation-subtitle {
1443
+ color: var(--global-text-color-light);
1444
+ font-size: 1.04rem;
1445
+ }
1446
+
1447
+ .documentation-content {
1448
+ font-size: var(--documentation-content-font-size, 1.02rem);
1449
+ line-height: 1.72;
1450
+ }
1451
+
1452
+ .documentation-content h2 {
1453
+ font-size: var(--documentation-h2-font-size, 1.45rem);
1454
+ }
1455
+
1456
+ .documentation-content h3 {
1457
+ font-size: var(--documentation-h3-font-size, 1.18rem);
1458
+ }
1459
+
1460
+ .documentation-page .documentation-content {
1461
+ flex: 1 0 auto;
1462
+ }
1463
+
1464
+ .documentation-content table {
1465
+ display: block;
1466
+ width: max-content;
1467
+ min-width: 100%;
1468
+ max-width: 100%;
1469
+ margin: 1.25rem 0 1.65rem;
1470
+ overflow-x: auto;
1471
+ }
1472
+
1473
+ .documentation-content table th,
1474
+ .documentation-content table td {
1475
+ overflow-wrap: normal;
1476
+ word-break: normal;
1477
+ }
1478
+
1479
+ .documentation-content .md-table table {
1480
+ display: table;
1481
+ width: max-content;
1482
+ min-width: 100%;
1483
+ max-width: none;
1484
+ margin: 0;
1485
+ overflow: visible;
1486
+ }
1487
+
1488
+ .documentation-content table a,
1489
+ .documentation-content table code {
1490
+ white-space: normal;
1491
+ overflow-wrap: break-word;
1492
+ word-break: normal;
1493
+ }
1494
+
1495
+ .profile-feature-matrix-wrapper {
1496
+ overflow-x: auto;
1497
+ margin: 1.2rem 0 0.4rem;
1498
+ }
1499
+
1500
+ .profile-feature-matrix {
1501
+ min-width: 620px;
1502
+ border-collapse: separate;
1503
+ border-spacing: 0;
1504
+ }
1505
+
1506
+ .profile-feature-matrix th,
1507
+ .profile-feature-matrix td {
1508
+ border-bottom: 1px solid var(--global-divider-color);
1509
+ padding: 0.62rem 0.7rem;
1510
+ vertical-align: middle;
1511
+ }
1512
+
1513
+ .profile-feature-matrix thead th {
1514
+ color: var(--global-text-color-light);
1515
+ font-size: 0.78rem;
1516
+ letter-spacing: 0.05em;
1517
+ text-transform: uppercase;
1518
+ }
1519
+
1520
+ .profile-feature-matrix tbody th {
1521
+ font-weight: 650;
1522
+ }
1523
+
1524
+ .profile-feature-matrix tbody th a {
1525
+ color: var(--global-text-color);
1526
+ text-decoration: none;
1527
+ }
1528
+
1529
+ .profile-feature-matrix tbody th a:hover {
1530
+ color: var(--global-theme-color);
1531
+ text-decoration: none;
1532
+ }
1533
+
1534
+ .profile-feature-status {
1535
+ text-align: center;
1536
+ }
1537
+
1538
+ .profile-feature-status span {
1539
+ display: inline-grid;
1540
+ width: 1.6rem;
1541
+ height: 1.6rem;
1542
+ place-items: center;
1543
+ border: 1px solid transparent;
1544
+ border-radius: 0;
1545
+ font-weight: 800;
1546
+ }
1547
+
1548
+ .profile-feature-status-yes span {
1549
+ border-color: color-mix(in srgb, #2f9e44 48%, var(--global-divider-color));
1550
+ background: color-mix(in srgb, #2f9e44 13%, transparent);
1551
+ color: color-mix(in srgb, #2f9e44 86%, var(--global-text-color));
1552
+ }
1553
+
1554
+ .profile-feature-status-config span {
1555
+ border-color: color-mix(in srgb, #9a7a3f 46%, var(--global-divider-color));
1556
+ background: color-mix(in srgb, #9a7a3f 12%, transparent);
1557
+ color: color-mix(in srgb, #9a7a3f 84%, var(--global-text-color));
1558
+ font-size: 1.15rem;
1559
+ }
1560
+
1561
+ .profile-feature-status-no span {
1562
+ border-color: color-mix(in srgb, var(--global-text-color-light) 42%, var(--global-divider-color));
1563
+ background: color-mix(in srgb, var(--global-text-color-light) 8%, transparent);
1564
+ color: color-mix(in srgb, var(--global-text-color-light) 82%, var(--global-text-color));
1565
+ }
1566
+
1567
+ .profile-feature-matrix-legend {
1568
+ display: grid;
1569
+ gap: 0.55rem;
1570
+ color: var(--global-text-color-light);
1571
+ font-size: 0.88rem;
1572
+ }
1573
+
1574
+ .profile-feature-matrix-legend p {
1575
+ margin: 0;
1576
+ }
1577
+
1578
+ .profile-feature-matrix-key {
1579
+ display: flex;
1580
+ flex-wrap: wrap;
1581
+ gap: 0.55rem 0.9rem;
1582
+ margin: 0;
1583
+ padding: 0;
1584
+ list-style: none;
1585
+ }
1586
+
1587
+ .profile-feature-matrix-key-item {
1588
+ display: inline-flex;
1589
+ gap: 0.38rem;
1590
+ align-items: center;
1591
+ }
1592
+
1593
+ .profile-feature-matrix-key .profile-feature-status span {
1594
+ width: 1.25rem;
1595
+ height: 1.25rem;
1596
+ font-size: 0.82rem;
1597
+ }
1598
+
1599
+ .profile-feature-matrix-key-label {
1600
+ color: var(--global-text-color);
1601
+ font-weight: 650;
1602
+ }
1603
+
1604
+ .documentation-index {
1605
+ margin-top: 2rem;
1606
+ }
1607
+
1608
+ .documentation-index-header {
1609
+ display: grid;
1610
+ gap: 0.08rem;
1611
+ margin-bottom: 0.85rem;
1612
+ }
1613
+
1614
+ .documentation-index-header h2 {
1615
+ margin: 0;
1616
+ }
1617
+
1618
+ .documentation-index-sections {
1619
+ display: grid;
1620
+ gap: 1rem;
1621
+ }
1622
+
1623
+ .documentation-index-section {
1624
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 82%, transparent);
1625
+ border-radius: 0;
1626
+ background: color-mix(in srgb, var(--global-card-bg-color) 94%, transparent);
1627
+ padding: 1.05rem;
1628
+ }
1629
+
1630
+ .documentation-index-section-header {
1631
+ display: flex;
1632
+ gap: 0.55rem;
1633
+ align-items: center;
1634
+ margin-bottom: 0.75rem;
1635
+ }
1636
+
1637
+ .documentation-index-section-mark {
1638
+ display: inline-block;
1639
+ width: 0.62rem;
1640
+ height: 0.62rem;
1641
+ border-radius: 999px;
1642
+ background: var(--global-theme-color);
1643
+ }
1644
+
1645
+ .documentation-index-section h3 {
1646
+ margin: 0;
1647
+ color: var(--global-text-color);
1648
+ font-size: 1.02rem;
1649
+ }
1650
+
1651
+ .documentation-card-grid {
1652
+ display: grid;
1653
+ grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
1654
+ gap: 0.65rem;
1655
+ }
1656
+
1657
+ .documentation-card {
1658
+ display: grid;
1659
+ gap: 0.28rem;
1660
+ border: 1px solid color-mix(in srgb, var(--global-divider-color) 78%, transparent);
1661
+ border-radius: 0;
1662
+ background: var(--global-card-bg-color);
1663
+ color: var(--global-text-color);
1664
+ padding: 0.92rem;
1665
+ text-decoration: none;
1666
+ }
1667
+
1668
+ .documentation-card:hover {
1669
+ border-color: var(--global-theme-color);
1670
+ color: var(--global-text-color);
1671
+ text-decoration: none;
1672
+ transform: translateY(-1px);
1673
+ }
1674
+
1675
+ .documentation-card span,
1676
+ .documentation-card small {
1677
+ color: var(--global-text-color-light);
1678
+ }
1679
+
1680
+ .documentation-card span {
1681
+ font-size: 0.78rem;
1682
+ font-weight: 700;
1683
+ }
1684
+
1685
+ .documentation-card small {
1686
+ line-height: 1.45;
1687
+ }
1688
+
1689
+ .documentation-card em {
1690
+ display: inline-flex;
1691
+ gap: 0.3rem;
1692
+ align-items: center;
1693
+ margin-top: 0.2rem;
1694
+ color: var(--global-theme-color);
1695
+ font-size: 0.78rem;
1696
+ font-style: normal;
1697
+ font-weight: 760;
1698
+ }
1699
+
1700
+ .documentation-page-nav {
1701
+ margin-top: auto;
1702
+ }
1703
+
1704
+ .documentation-page-nav .previous-next-link {
1705
+ border-color: var(--global-divider-color);
1706
+ background: var(--global-card-bg-color);
1707
+ }
1708
+
1709
+ .documentation-page-nav .previous-next-link::before {
1710
+ top: 1.05rem;
1711
+ bottom: 1.05rem;
1712
+ width: 1.05rem;
1713
+ background: color-mix(in srgb, var(--global-theme-color) 20%, transparent);
1714
+ }
1715
+
1716
+ .documentation-page-nav .previous-next-link.previous {
1717
+ padding-left: 2.15rem;
1718
+ }
1719
+
1720
+ .documentation-page-nav .previous-next-link.previous::before {
1721
+ left: 0.52rem;
1722
+ }
1723
+
1724
+ .documentation-page-nav .previous-next-link.next {
1725
+ padding-right: 2.15rem;
1726
+ }
1727
+
1728
+ .documentation-page-nav .previous-next-link.next::before {
1729
+ right: 0.52rem;
1730
+ }
1731
+
1732
+ .documentation-page-nav .previous-next-link:hover {
1733
+ background: color-mix(in srgb, var(--global-theme-color) 8%, var(--global-card-bg-color));
1734
+ }
1735
+
1736
+ .documentation-page-nav .previous-next-link:hover::before {
1737
+ background: color-mix(in srgb, var(--global-theme-color) 28%, transparent);
1738
+ }
1739
+
1740
+ .documentation-profile-notice {
1741
+ border-left: 3px solid var(--global-theme-color);
1742
+ background: color-mix(in srgb, var(--global-theme-color) 8%, transparent);
1743
+ color: var(--global-text-color);
1744
+ font-size: 0.88rem;
1745
+ line-height: 1.45;
1746
+ margin-top: 0.85rem;
1747
+ padding: 0.7rem 0.8rem;
1748
+ }
1749
+
1750
+ @media (max-width: 960px) {
1751
+ .documentation-layout,
1752
+ .documentation-hero,
1753
+ .documentation-page-nav {
1754
+ grid-template-columns: minmax(0, 1fr);
1755
+ }
1756
+
1757
+ .documentation-sidebar {
1758
+ position: sticky;
1759
+ top: 6.8rem;
1760
+ z-index: 1040;
1761
+ height: calc(100vh - 7.5rem);
1762
+ max-height: calc(100vh - 7.5rem);
1763
+ overflow: visible;
1764
+ border: 0;
1765
+ border-right: 1px solid var(--global-divider-color);
1766
+ margin-bottom: 0;
1767
+ padding: 0.75rem 0.9rem 1.2rem 0;
1768
+ background: var(--global-bg-color);
1769
+ }
1770
+
1771
+ .documentation-toc-toggle {
1772
+ top: 50%;
1773
+ right: -0.72rem;
1774
+ transform: translateY(-50%) rotate(90deg);
1775
+ }
1776
+
1777
+ .documentation-toc-toggle i {
1778
+ transform: translate(-50%, -50%);
1779
+ }
1780
+
1781
+ .documentation-toc-toggle.is-collapsed i {
1782
+ transform: translate(-50%, -50%) rotate(180deg);
1783
+ }
1784
+
1785
+ .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle {
1786
+ right: 0.9rem;
1787
+ }
1788
+
1789
+ .documentation-layout.documentation-toc-collapsed {
1790
+ grid-template-columns: 32px minmax(0, 1fr);
1791
+ }
1792
+
1793
+ .documentation-layout.documentation-toc-collapsed .documentation-sidebar {
1794
+ height: calc(100vh - 7.5rem);
1795
+ max-height: calc(100vh - 7.5rem);
1796
+ }
1797
+
1798
+ .documentation-main {
1799
+ grid-column: 1;
1800
+ }
1801
+
1802
+ .documentation-layout.documentation-toc-collapsed .documentation-main {
1803
+ grid-column: 2;
1804
+ }
1805
+
1806
+ }
1807
+
1808
+ @media (min-width: 961px) and (max-width: 1180px) {
1809
+ .documentation-layout,
1810
+ .documentation-home-layout {
1811
+ grid-template-columns: minmax(270px, 318px) minmax(0, 1fr);
1812
+ gap: 0 clamp(1.4rem, 3vw, 2.6rem);
1813
+ }
1814
+
1815
+ .documentation-layout.documentation-toc-collapsed {
1816
+ grid-template-columns: 32px minmax(0, 1fr);
1817
+ column-gap: 0;
1818
+ }
1819
+
1820
+ .documentation-layout.documentation-toc-collapsed .documentation-main {
1821
+ grid-column: 2;
1822
+ }
1823
+
1824
+ .documentation-section-toc {
1825
+ display: none;
1826
+ }
1827
+ }
1828
+
1829
+ @media (max-width: 575px) {
1830
+ .site-profile-unaltredocs {
1831
+ .navbar .container {
1832
+ flex-wrap: nowrap;
1833
+ gap: 0.15rem;
1834
+ }
1835
+
1836
+ .navbar-brand.title {
1837
+ order: 1;
1838
+ flex: 1 1 auto;
1839
+ margin-right: 0.35rem;
1840
+ }
1841
+
1842
+ .navbar-collapse {
1843
+ order: 2;
1844
+ display: flex !important;
1845
+ width: auto;
1846
+ flex-basis: auto;
1847
+ flex-grow: 0;
1848
+ margin-left: auto;
1849
+ text-align: left !important;
1850
+ }
1851
+
1852
+ .documentation-navbar-toc-toggle {
1853
+ order: 3;
1854
+ flex: 0 0 auto;
1855
+ margin-left: 0.25rem !important;
1856
+ }
1857
+
1858
+ .navbar-collapse .navbar-nav {
1859
+ margin-left: 0 !important;
1860
+ }
1861
+
1862
+ .navbar-collapse .navbar-nav,
1863
+ .navbar-collapse.show .navbar-nav {
1864
+ flex-direction: row;
1865
+ flex-wrap: nowrap;
1866
+ align-items: center;
1867
+ }
1868
+
1869
+ .documentation-navbar-search {
1870
+ width: 2.2rem;
1871
+ max-width: 2.2rem;
1872
+ margin: 0 0.25rem;
1873
+ }
1874
+
1875
+ .documentation-navbar-search-icon {
1876
+ position: absolute;
1877
+ top: 50%;
1878
+ left: 0.62rem;
1879
+ z-index: 1;
1880
+ display: inline-flex;
1881
+ color: var(--global-text-color);
1882
+ font-size: 0.95rem;
1883
+ line-height: 1;
1884
+ pointer-events: none;
1885
+ transform: translateY(-50%);
1886
+ }
1887
+
1888
+ .documentation-navbar-search .documentation-search-input {
1889
+ width: 2.2rem;
1890
+ min-height: 2rem;
1891
+ border-color: transparent;
1892
+ background: transparent;
1893
+ color: transparent;
1894
+ caret-color: transparent;
1895
+ padding-right: 0.25rem;
1896
+ padding-left: 2rem;
1897
+ transition: width 0.16s ease;
1898
+ }
1899
+
1900
+ .documentation-navbar-search .documentation-search-input::placeholder {
1901
+ color: transparent;
1902
+ }
1903
+
1904
+ .documentation-navbar-search .documentation-search-input:focus {
1905
+ position: fixed;
1906
+ top: 0.55rem;
1907
+ right: 0.75rem;
1908
+ z-index: 1090;
1909
+ width: calc(100vw - 1.5rem);
1910
+ border-color: var(--global-divider-color);
1911
+ background: var(--global-card-bg-color);
1912
+ color: var(--global-text-color);
1913
+ caret-color: var(--global-text-color);
1914
+ outline: 0;
1915
+ }
1916
+
1917
+ .documentation-navbar-search .documentation-search-input:focus::placeholder {
1918
+ color: var(--global-text-color-light);
1919
+ }
1920
+
1921
+ .documentation-navbar-search .documentation-search-results {
1922
+ position: fixed;
1923
+ top: 3.35rem;
1924
+ right: 0.75rem;
1925
+ left: 0.75rem;
1926
+ width: auto;
1927
+ margin-top: 0;
1928
+ }
1929
+ }
1930
+
1931
+ .documentation-card-grid {
1932
+ grid-template-columns: minmax(0, 1fr);
1933
+ }
1934
+ }
1935
+
1936
+ @media (max-width: 960px) {
1937
+ .site-profile-unaltredocs .documentation-layout,
1938
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed {
1939
+ grid-template-columns: minmax(0, 1fr);
1940
+ }
1941
+
1942
+ .site-profile-unaltredocs .documentation-main,
1943
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-main {
1944
+ grid-column: 1;
1945
+ width: auto;
1946
+ max-width: none;
1947
+ padding-left: 0;
1948
+ }
1949
+
1950
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-sidebar {
1951
+ position: fixed;
1952
+ top: 3.45rem;
1953
+ right: 0;
1954
+ bottom: 0;
1955
+ left: 0;
1956
+ z-index: 1065;
1957
+ width: auto;
1958
+ height: auto;
1959
+ max-height: none;
1960
+ min-height: 0;
1961
+ overflow: auto;
1962
+ border: 0;
1963
+ border-top: 1px solid var(--global-divider-color);
1964
+ background: var(--global-bg-color);
1965
+ box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
1966
+ padding: 0.9rem 1rem 1.35rem;
1967
+ }
1968
+
1969
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-sidebar-inner {
1970
+ display: grid;
1971
+ height: auto;
1972
+ overflow: visible;
1973
+ }
1974
+
1975
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle {
1976
+ position: sticky;
1977
+ top: 0;
1978
+ right: auto;
1979
+ z-index: 2;
1980
+ justify-self: end;
1981
+ width: 2.4rem;
1982
+ height: 2.4rem;
1983
+ min-width: 2.4rem;
1984
+ min-height: 2.4rem;
1985
+ margin: 0 0 0.75rem auto;
1986
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 42%, var(--global-divider-color));
1987
+ background: var(--global-card-bg-color);
1988
+ transform: none;
1989
+ }
1990
+
1991
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle::before {
1992
+ display: none;
1993
+ }
1994
+
1995
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle i {
1996
+ display: none;
1997
+ }
1998
+
1999
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle::after {
2000
+ color: var(--global-theme-color);
2001
+ content: "×";
2002
+ font-size: 1.45rem;
2003
+ font-weight: 700;
2004
+ line-height: 1;
2005
+ }
2006
+
2007
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-sidebar {
2008
+ position: fixed;
2009
+ top: 4.2rem;
2010
+ right: 1rem;
2011
+ bottom: auto;
2012
+ left: auto;
2013
+ z-index: 1065;
2014
+ width: 48px;
2015
+ height: 48px;
2016
+ min-height: 0;
2017
+ max-height: none;
2018
+ overflow: visible;
2019
+ border: 0;
2020
+ background: transparent;
2021
+ padding: 0;
2022
+ }
2023
+
2024
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-sidebar-inner {
2025
+ display: none;
2026
+ }
2027
+
2028
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle {
2029
+ position: fixed;
2030
+ top: 4.2rem;
2031
+ right: 1rem;
2032
+ bottom: auto;
2033
+ left: auto;
2034
+ width: 48px;
2035
+ height: 48px;
2036
+ min-width: 48px;
2037
+ min-height: 48px;
2038
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 66%, var(--global-divider-color));
2039
+ background: var(--global-theme-color);
2040
+ transform: none;
2041
+ }
2042
+
2043
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle.is-collapsed {
2044
+ width: 48px !important;
2045
+ height: 48px !important;
2046
+ min-width: 48px !important;
2047
+ min-height: 48px !important;
2048
+ transform: none !important;
2049
+ }
2050
+
2051
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle::before {
2052
+ display: none;
2053
+ }
2054
+
2055
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle i {
2056
+ display: block;
2057
+ color: var(--global-hover-text-color);
2058
+ font-size: 1.1rem;
2059
+ transform: translate(-50%, -50%) rotate(180deg);
2060
+ }
2061
+ }
2062
+
2063
+ @media (max-width: 960px) {
2064
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-sidebar {
2065
+ top: 3.45rem;
2066
+ right: 0;
2067
+ bottom: auto;
2068
+ left: auto;
2069
+ width: min(86vw, 23rem);
2070
+ max-width: calc(100vw - 2.5rem);
2071
+ max-height: min(76vh, calc(100dvh - 5.25rem));
2072
+ border: 1px solid var(--global-divider-color);
2073
+ border-right: 0;
2074
+ background: color-mix(in srgb, var(--global-bg-color) 96%, transparent);
2075
+ box-shadow: -18px 0 52px rgba(0, 0, 0, 0.24);
2076
+ padding: 0.85rem 0.9rem 1rem;
2077
+ }
2078
+
2079
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle {
2080
+ position: fixed;
2081
+ top: 50%;
2082
+ right: min(86vw, 23rem);
2083
+ bottom: auto;
2084
+ left: auto;
2085
+ width: 1.44rem;
2086
+ height: 5.2rem;
2087
+ min-width: 1.44rem;
2088
+ min-height: 5.2rem;
2089
+ margin: 0;
2090
+ border: 0;
2091
+ background: transparent;
2092
+ transform: translateY(-50%);
2093
+ }
2094
+
2095
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle::before {
2096
+ display: block;
2097
+ width: 1.02rem;
2098
+ height: 4.7rem;
2099
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 72%, var(--global-divider-color));
2100
+ background: color-mix(in srgb, var(--global-theme-color) 86%, var(--global-card-bg-color));
2101
+ content: "";
2102
+ }
2103
+
2104
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle::after {
2105
+ content: none;
2106
+ }
2107
+
2108
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle i {
2109
+ display: block;
2110
+ color: var(--global-hover-text-color);
2111
+ font-size: 0.84rem;
2112
+ transform: translate(-50%, -50%);
2113
+ }
2114
+
2115
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-sidebar {
2116
+ top: 50%;
2117
+ right: 0;
2118
+ bottom: auto;
2119
+ left: auto;
2120
+ width: 1.44rem;
2121
+ height: 5.2rem;
2122
+ transform: translateY(-50%);
2123
+ }
2124
+
2125
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle,
2126
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle.is-collapsed {
2127
+ top: 50%;
2128
+ right: 0;
2129
+ bottom: auto;
2130
+ left: auto;
2131
+ width: 1.44rem !important;
2132
+ height: 5.2rem !important;
2133
+ min-width: 1.44rem !important;
2134
+ min-height: 5.2rem !important;
2135
+ border: 0;
2136
+ background: transparent;
2137
+ transform: translateY(-50%) !important;
2138
+ }
2139
+
2140
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle::before {
2141
+ display: block;
2142
+ width: 1.02rem;
2143
+ height: 4.7rem;
2144
+ border: 1px solid color-mix(in srgb, var(--global-theme-color) 72%, var(--global-divider-color));
2145
+ background: color-mix(in srgb, var(--global-theme-color) 86%, var(--global-card-bg-color));
2146
+ content: "";
2147
+ }
2148
+
2149
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle i {
2150
+ color: var(--global-hover-text-color);
2151
+ font-size: 0.84rem;
2152
+ transform: translate(-50%, -50%) rotate(180deg);
2153
+ }
2154
+ }
2155
+
2156
+ @media (max-width: 960px) {
2157
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed)::before {
2158
+ position: fixed;
2159
+ inset: 3.45rem 0 0;
2160
+ z-index: 1064;
2161
+ background: rgba(0, 0, 0, 0.36);
2162
+ content: "";
2163
+ }
2164
+
2165
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-sidebar {
2166
+ top: 3.45rem;
2167
+ right: 0;
2168
+ bottom: 0;
2169
+ left: auto;
2170
+ width: min(86vw, 23rem);
2171
+ max-width: calc(100vw - 2.5rem);
2172
+ max-height: none;
2173
+ border: 1px solid var(--global-divider-color);
2174
+ border-right: 0;
2175
+ background: color-mix(in srgb, var(--global-bg-color) 97%, transparent);
2176
+ box-shadow: -18px 0 52px rgba(0, 0, 0, 0.28);
2177
+ padding: 0.85rem 0.9rem 1rem;
2178
+ }
2179
+
2180
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle {
2181
+ top: 50%;
2182
+ right: min(86vw, 23rem);
2183
+ bottom: auto;
2184
+ left: auto;
2185
+ transform: translateY(-50%);
2186
+ }
2187
+
2188
+ .site-profile-unaltredocs .documentation-layout:not(.documentation-toc-collapsed) .documentation-toc-toggle i {
2189
+ transform: translate(-50%, -50%) rotate(180deg);
2190
+ }
2191
+
2192
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-sidebar,
2193
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle,
2194
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle.is-collapsed {
2195
+ top: 50%;
2196
+ right: 0;
2197
+ bottom: auto;
2198
+ left: auto;
2199
+ transform: translateY(-50%) !important;
2200
+ }
2201
+
2202
+ .site-profile-unaltredocs .documentation-layout.documentation-toc-collapsed .documentation-toc-toggle i {
2203
+ transform: translate(-50%, -50%);
2204
+ }
2205
+ }
2206
+
2207
+ .documentation-toc-toggle::before {
2208
+ border-color: color-mix(in srgb, var(--global-theme-color) 34%, var(--global-divider-color)) !important;
2209
+ background: color-mix(in srgb, var(--global-theme-color) 16%, var(--global-card-bg-color)) !important;
2210
+ }
2211
+
2212
+ .documentation-toc-toggle i {
2213
+ color: color-mix(in srgb, var(--global-theme-color) 68%, var(--global-text-color)) !important;
2214
+ }
2215
+
2216
+ .documentation-toc-toggle:hover::before,
2217
+ .documentation-toc-toggle:focus-visible::before {
2218
+ border-color: color-mix(in srgb, var(--global-theme-color) 44%, var(--global-divider-color)) !important;
2219
+ background: color-mix(in srgb, var(--global-theme-color) 24%, var(--global-card-bg-color)) !important;
2220
+ }