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
data/_sass/_team.scss ADDED
@@ -0,0 +1,230 @@
1
+ /*******************************************************************************
2
+ * Team grid
3
+ ******************************************************************************/
4
+
5
+ .team-photo {
6
+ width: 132px;
7
+ height: 132px;
8
+ max-width: none;
9
+ object-fit: cover;
10
+ object-position: center;
11
+ border: 1px solid rgba(0, 0, 0, 0.08);
12
+ border-radius: 50%;
13
+ }
14
+
15
+ .team-grid figure {
16
+ width: 132px;
17
+ margin-right: auto;
18
+ margin-left: auto;
19
+ }
20
+
21
+ html[data-theme="dark"] .team-photo {
22
+ border-color: rgba(255, 255, 255, 0.12);
23
+ }
24
+
25
+ .team-icons {
26
+ list-style: none;
27
+ padding: 0;
28
+ margin: 0;
29
+ display: inline-flex;
30
+ gap: 14px;
31
+ justify-content: center;
32
+ align-items: center;
33
+ }
34
+
35
+ .team-icons li {
36
+ display: inline-flex;
37
+ }
38
+
39
+ .team-grid {
40
+ overflow: visible;
41
+ }
42
+
43
+ .team-grid .col {
44
+ margin-bottom: 1.25rem;
45
+ overflow: visible;
46
+ }
47
+
48
+ .team-grid .card {
49
+ position: relative;
50
+ z-index: 1;
51
+ }
52
+
53
+ .team-grid .card.hoverable:hover {
54
+ z-index: 10;
55
+ }
56
+
57
+ .team-grid .card-body {
58
+ padding-top: 1.25rem;
59
+ padding-bottom: 2rem;
60
+ font-size: 0.95rem;
61
+ line-height: 1.35;
62
+ }
63
+
64
+ .team-grid .card-title {
65
+ margin-top: 0.9rem;
66
+ margin-bottom: 0.35rem;
67
+ font-size: 1.05rem;
68
+ line-height: 1.25;
69
+ }
70
+
71
+ .team-grid .team-position,
72
+ .team-grid .team-org,
73
+ .team-grid .team-dept {
74
+ font-size: 0.95rem;
75
+ }
76
+
77
+ .team-grid .team-position {
78
+ margin-bottom: 0.7rem;
79
+ }
80
+
81
+ .team-grid .team-org {
82
+ margin-top: 0.2rem;
83
+ margin-bottom: 0.15rem;
84
+ }
85
+
86
+ .team-grid .team-dept {
87
+ margin-top: 0.15rem;
88
+ margin-bottom: 0.9rem;
89
+ }
90
+
91
+ .team-grid .team-icons {
92
+ margin-top: 0.9rem;
93
+ }
94
+
95
+ .team-icons a[aria-label="E-mail"] i,
96
+ .team-icons a[aria-label="Web"] i,
97
+ .team-icons a[aria-label="Profile"] i {
98
+ color: var(--global-theme-color);
99
+ }
100
+
101
+ .team-icons a[aria-label="ORCID"] i {
102
+ color: #a6ce39;
103
+ }
104
+
105
+ .team-icons a[aria-label="Google Scholar"] i {
106
+ color: #4285f4;
107
+ }
108
+
109
+ .team-icons a[aria-label="ResearchGate"] i {
110
+ color: #00ccbb;
111
+ }
112
+
113
+ .team-icons a[aria-label="GitHub"] i {
114
+ color: #181717;
115
+ }
116
+
117
+ .team-icons a[aria-label="LinkedIn"] i {
118
+ color: #0a66c2;
119
+ }
120
+
121
+ .team-icons a[aria-label="Bluesky"] i {
122
+ color: #1185fe;
123
+ }
124
+
125
+ .team-icons a[aria-label="Mastodon"] i {
126
+ color: #6364ff;
127
+ }
128
+
129
+ .team-icons a[aria-label="X"] i {
130
+ color: #000;
131
+ }
132
+
133
+ html[data-theme="dark"] .team-icons a[aria-label="GitHub"] i,
134
+ html[data-theme="dark"] .team-icons a[aria-label="X"] i {
135
+ color: #fff;
136
+ }
137
+
138
+ .team-icons a:hover i {
139
+ filter: brightness(0.9);
140
+ }
141
+
142
+ .team-keywords {
143
+ display: flex;
144
+ flex-wrap: wrap;
145
+ gap: 6px;
146
+ justify-content: center;
147
+ align-items: center;
148
+ }
149
+
150
+ .team-keywords-label {
151
+ margin-right: 6px;
152
+ opacity: 0.8;
153
+ }
154
+
155
+ .team-keyword {
156
+ padding: 0.15rem 0.35rem;
157
+ border-radius: 6px;
158
+ }
159
+
160
+ @media (max-width: 575px) {
161
+ .team-grid {
162
+ margin-right: 0;
163
+ margin-left: 0;
164
+ }
165
+
166
+ .team-grid .col {
167
+ padding-right: 0.25rem;
168
+ padding-left: 0.25rem;
169
+ }
170
+
171
+ .team-grid .card-body {
172
+ display: grid;
173
+ grid-template-columns: clamp(4.6rem, 22vw, 5.8rem) minmax(0, 1fr);
174
+ gap: 0.1rem 0.85rem;
175
+ align-items: start;
176
+ padding: 0.9rem 0.95rem 1rem;
177
+ text-align: left !important;
178
+ }
179
+
180
+ .team-grid figure {
181
+ grid-column: 1;
182
+ grid-row: 1 / span 4;
183
+ justify-self: start;
184
+ width: clamp(4.6rem, 22vw, 5.8rem);
185
+ margin: 0;
186
+ }
187
+
188
+ .team-grid .team-photo {
189
+ width: clamp(4.6rem, 22vw, 5.8rem);
190
+ height: clamp(4.6rem, 22vw, 5.8rem);
191
+ }
192
+
193
+ .team-grid .card-title,
194
+ .team-grid .team-position,
195
+ .team-grid .team-org,
196
+ .team-grid .team-dept {
197
+ grid-column: 2;
198
+ }
199
+
200
+ .team-grid .card-title {
201
+ margin-top: 0.1rem !important;
202
+ margin-bottom: 0.2rem !important;
203
+ font-size: 1rem;
204
+ }
205
+
206
+ .team-grid .team-position {
207
+ margin-bottom: 0.35rem;
208
+ }
209
+
210
+ .team-grid .team-org {
211
+ margin-top: 0 !important;
212
+ margin-bottom: 0.1rem;
213
+ }
214
+
215
+ .team-grid .team-dept {
216
+ margin-top: 0.05rem;
217
+ margin-bottom: 0.15rem;
218
+ }
219
+
220
+ .team-grid .team-icons {
221
+ grid-column: 1 / -1;
222
+ flex-wrap: wrap;
223
+ gap: 0.55rem 0.8rem;
224
+ justify-content: flex-start;
225
+ width: 100%;
226
+ border-top: 1px solid color-mix(in srgb, var(--global-divider-color) 72%, transparent);
227
+ margin-top: 0.65rem !important;
228
+ padding-top: 0.65rem;
229
+ }
230
+ }
@@ -0,0 +1,254 @@
1
+ /*******************************************************************************
2
+ * Themes
3
+ ******************************************************************************/
4
+
5
+ @use "sass:color";
6
+
7
+ :root {
8
+ color-scheme: light;
9
+ --global-bg-color: #{$white-color};
10
+ --global-code-bg-color: #{$code-bg-color-light};
11
+ --global-code-text-color: #5a1f5f;
12
+ --global-code-border-color: #d7bfd9;
13
+ --global-code-row-alt-color: #edf2f7;
14
+ --global-code-comment-color: #39705a;
15
+ --global-text-color: #{$black-color};
16
+ --global-text-color-light: #{$grey-color};
17
+ --global-theme-color: #{$purple-color};
18
+ --global-internal-link-color: var(--global-theme-color);
19
+ --global-external-link-color: #a33a00;
20
+ --global-citation-color: #c2185b;
21
+ --global-hover-color: #{$purple-color};
22
+ --global-hover-text-color: #{$white-color};
23
+ --global-footer-bg-color: #{$grey-color-dark};
24
+ --global-footer-text-color: #{$grey-color-light};
25
+ --global-footer-link-color: #{$white-color};
26
+ --global-distill-app-color: #{$grey-color};
27
+ --global-divider-color: rgba(0, 0, 0, 0.1);
28
+ --global-card-bg-color: #{$white-color};
29
+ --global-highlight-color: #{$red-color-dark};
30
+ --global-back-to-top-bg-color: rgba(
31
+ #{color.channel($black-color, "red", $space: rgb)},
32
+ #{color.channel($black-color, "green", $space: rgb)},
33
+ #{color.channel($black-color, "blue", $space: rgb)},
34
+ 0.4
35
+ );
36
+ --global-back-to-top-text-color: #{$white-color};
37
+ --global-newsletter-bg-color: #{$white-color};
38
+ --global-newsletter-text-color: #{$black-color};
39
+
40
+ --global-tip-block: #42b983;
41
+ --global-tip-block-bg: #e2f5ec;
42
+ --global-tip-block-text: #215d42;
43
+ --global-tip-block-title: #359469;
44
+ --global-warning-block: #e7c000;
45
+ --global-warning-block-bg: #fff8d8;
46
+ --global-warning-block-text: #6b5900;
47
+ --global-warning-block-title: #b29400;
48
+ --global-danger-block: #c00;
49
+ --global-danger-block-bg: #ffe0e0;
50
+ --global-danger-block-text: #600;
51
+ --global-danger-block-title: #c00;
52
+
53
+ #light-toggle-system {
54
+ padding-left: 10px;
55
+ padding-top: 12px;
56
+ display: block;
57
+ }
58
+
59
+ #light-toggle-dark {
60
+ display: none;
61
+ }
62
+
63
+ #light-toggle-light {
64
+ display: none;
65
+ }
66
+
67
+ #light-toggle-cafe {
68
+ display: none;
69
+ }
70
+
71
+ .only-light {
72
+ display: block;
73
+ }
74
+
75
+ .only-dark {
76
+ display: none;
77
+ }
78
+
79
+ #back-to-top {
80
+ color: var(--global-back-to-top-text-color);
81
+ background: var(--global-back-to-top-bg-color);
82
+ bottom: $back-to-top-bottom;
83
+ right: $back-to-top-right;
84
+ height: $back-to-top-height;
85
+ width: $back-to-top-width;
86
+ z-index: $back-to-top-z-index;
87
+ }
88
+ }
89
+
90
+ html[data-theme="dark"] {
91
+ color-scheme: dark;
92
+ --global-bg-color: #{$grey-color-dark};
93
+ --global-code-bg-color: #{$code-bg-color-dark};
94
+ --global-code-text-color: #f2b8ff;
95
+ --global-code-border-color: #596169;
96
+ --global-code-row-alt-color: #303840;
97
+ --global-code-comment-color: #91c9a9;
98
+ --global-text-color: #{$grey-color-light};
99
+ --global-text-color-light: #{$grey-color};
100
+ --global-theme-color: #{$cyan-color};
101
+ --global-internal-link-color: var(--global-theme-color);
102
+ --global-external-link-color: #ffad73;
103
+ --global-citation-color: #ff77b7;
104
+ --global-hover-color: #{$cyan-color};
105
+ --global-hover-text-color: #{$white-color};
106
+ --global-footer-bg-color: #{$grey-color-light};
107
+ --global-footer-text-color: #{$grey-color-dark};
108
+ --global-footer-link-color: #{$black-color};
109
+ --global-distill-app-color: #{$grey-color-light};
110
+ --global-divider-color: #424246;
111
+ --global-card-bg-color: #{$grey-900};
112
+ --global-back-to-top-bg-color: rgba(
113
+ #{color.channel($white-color, "red", $space: rgb)},
114
+ #{color.channel($white-color, "green", $space: rgb)},
115
+ #{color.channel($white-color, "blue", $space: rgb)},
116
+ 0.5
117
+ );
118
+ --global-back-to-top-text-color: #{$black-color};
119
+ --global-newsletter-bg-color: #{$grey-color-light};
120
+ --global-newsletter-text-color: #{$grey-color-dark};
121
+
122
+ --global-tip-block: #42b983;
123
+ --global-tip-block-bg: #215d42;
124
+ --global-tip-block-text: #beffe2;
125
+ --global-tip-block-title: #e2f5ec;
126
+ --global-warning-block: #e7c000;
127
+ --global-warning-block-bg: #6b5900;
128
+ --global-warning-block-text: #fff2af;
129
+ --global-warning-block-title: #fff8d8;
130
+ --global-danger-block: #c00;
131
+ --global-danger-block-bg: #600;
132
+ --global-danger-block-text: #ffb9b9;
133
+ --global-danger-block-title: #ffe0e0;
134
+
135
+ .only-light {
136
+ display: none;
137
+ }
138
+
139
+ .only-dark {
140
+ display: block;
141
+ }
142
+ }
143
+
144
+ html[data-theme="cafe"] {
145
+ color-scheme: light;
146
+ --global-bg-color: #f3eacb;
147
+ --global-code-bg-color: #ede0c2;
148
+ --global-code-text-color: #6d3d68;
149
+ --global-code-border-color: #b8a887;
150
+ --global-code-row-alt-color: #e3d5b6;
151
+ --global-code-comment-color: #52705d;
152
+ --global-text-color: #463524;
153
+ --global-text-color-light: #756349;
154
+ --global-theme-color: #7a591b;
155
+ --global-internal-link-color: var(--global-theme-color);
156
+ --global-external-link-color: #934707;
157
+ --global-citation-color: #a11858;
158
+ --global-hover-color: #7a591b;
159
+ --global-hover-text-color: #fff8e6;
160
+ --global-footer-bg-color: #4a3724;
161
+ --global-footer-text-color: #f3eacb;
162
+ --global-footer-link-color: #fff8e6;
163
+ --global-distill-app-color: #756349;
164
+ --global-divider-color: rgba(70, 53, 36, 0.22);
165
+ --global-card-bg-color: #fbf4df;
166
+ --global-highlight-color: #9b3f2f;
167
+ --global-back-to-top-bg-color: rgba(70, 53, 36, 0.45);
168
+ --global-back-to-top-text-color: #fff8e6;
169
+ --global-newsletter-bg-color: #fbf4df;
170
+ --global-newsletter-text-color: #463524;
171
+
172
+ --global-tip-block: #3f7a5a;
173
+ --global-tip-block-bg: #e7efe3;
174
+ --global-tip-block-text: #2f513d;
175
+ --global-tip-block-title: #2f684d;
176
+ --global-warning-block: #a9781f;
177
+ --global-warning-block-bg: #f5e7c8;
178
+ --global-warning-block-text: #5f4318;
179
+ --global-warning-block-title: #7a591b;
180
+ --global-danger-block: #a14a3f;
181
+ --global-danger-block-bg: #f3ddd9;
182
+ --global-danger-block-text: #5a2a24;
183
+ --global-danger-block-title: #7c352f;
184
+ }
185
+
186
+ html[data-theme-setting="dark"] {
187
+ #light-toggle-system {
188
+ display: none;
189
+ }
190
+
191
+ #light-toggle-dark {
192
+ padding-left: 10px;
193
+ padding-top: 12px;
194
+ display: block;
195
+ }
196
+
197
+ #light-toggle-light {
198
+ display: none;
199
+ }
200
+
201
+ #light-toggle-cafe {
202
+ display: none;
203
+ }
204
+
205
+ #back-to-top {
206
+ color: var(--global-back-to-top-text-color);
207
+ background: var(--global-back-to-top-bg-color);
208
+ }
209
+ }
210
+
211
+ html[data-theme-setting="light"] {
212
+ #light-toggle-system {
213
+ display: none;
214
+ }
215
+
216
+ #light-toggle-dark {
217
+ display: none;
218
+ }
219
+
220
+ #light-toggle-light {
221
+ padding-left: 10px;
222
+ padding-top: 12px;
223
+ display: block;
224
+ }
225
+
226
+ #light-toggle-cafe {
227
+ display: none;
228
+ }
229
+ }
230
+
231
+ html[data-theme-setting="cafe"] {
232
+ #light-toggle-system {
233
+ display: none;
234
+ }
235
+
236
+ #light-toggle-dark {
237
+ display: none;
238
+ }
239
+
240
+ #light-toggle-light {
241
+ display: none;
242
+ }
243
+
244
+ #light-toggle-cafe {
245
+ padding-left: 10px;
246
+ padding-top: 12px;
247
+ display: block;
248
+ }
249
+
250
+ #back-to-top {
251
+ color: var(--global-back-to-top-text-color);
252
+ background: var(--global-back-to-top-bg-color);
253
+ }
254
+ }
@@ -0,0 +1,132 @@
1
+ .typogram {
2
+ .diagram {
3
+ display: block;
4
+ }
5
+
6
+ .diagram line,
7
+ .diagram circle,
8
+ .diagram rect {
9
+ stroke: var(--global-text-color);
10
+ }
11
+
12
+ .diagram line {
13
+ stroke-width: 2;
14
+ }
15
+
16
+ .diagram circle {
17
+ r: 3.5;
18
+ }
19
+
20
+ .diagram rect {
21
+ width: 6px;
22
+ height: 6px;
23
+ }
24
+
25
+ .diagram text,
26
+ .glyph,
27
+ .debug text {
28
+ /** font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; **/
29
+ font-family:
30
+ Iosevka Fixed,
31
+ monospace;
32
+ font-size: 3em;
33
+ text-anchor: middle;
34
+ alignment-baseline: central;
35
+ white-space: pre;
36
+ fill: var(--global-text-color);
37
+ }
38
+
39
+ .reserved {
40
+ fill: transparent;
41
+ white-space: pre;
42
+ }
43
+
44
+ .debug[debug="true"] .reserved {
45
+ fill: var(--global-text-color);
46
+ opacity: 0.5;
47
+ }
48
+
49
+ .debug[debug="true"] line.grid {
50
+ stroke: var(--global-text-color);
51
+ stroke-width: 0.2;
52
+ stroke-linecap: butt;
53
+ fill: var(--global-text-color);
54
+ opacity: 1%;
55
+ }
56
+
57
+ polygon {
58
+ stroke-width: 0;
59
+ }
60
+
61
+ .debug[debug="true"] polygon.inner {
62
+ fill: var(--global-text-color);
63
+ stroke: var(--global-text-color);
64
+ opacity: 5%;
65
+ }
66
+
67
+ polygon {
68
+ stroke: var(--global-text-color);
69
+ /** stroke-width: 0.2; **/
70
+ stroke-linecap: butt;
71
+ fill: var(--global-text-color);
72
+ }
73
+
74
+ .debug[debug="true"] polygon,
75
+ .debug[debug="true"] line.grid {
76
+ opacity: 10%;
77
+ }
78
+
79
+ .debug[debug="true"] polygon,
80
+ .debug[debug="true"] path,
81
+ .debug[debug="true"] circle {
82
+ opacity: 50%;
83
+ }
84
+
85
+ .debug[debug="true"] polygon {
86
+ fill: red;
87
+ stroke: red;
88
+ }
89
+
90
+ /**
91
+ circle {
92
+ fill: var(--global-text-color);
93
+ }
94
+ **/
95
+
96
+ .debug[debug="true"] circle,
97
+ .debug[debug="true"] path {
98
+ opacity: 50%;
99
+ fill: red;
100
+ }
101
+
102
+ .debug[debug="true"] circle {
103
+ stroke: red;
104
+ }
105
+
106
+ .debug[debug="true"] .inner {
107
+ stroke-width: 0.2;
108
+ }
109
+
110
+ line.part {
111
+ stroke-width: 6;
112
+ stroke-linecap: butt;
113
+ stroke: var(--global-text-color);
114
+ }
115
+
116
+ .debug[debug="true"] line.part {
117
+ opacity: 50%;
118
+ stroke: red;
119
+ }
120
+
121
+ .debug[debug="true"] line.center {
122
+ stroke-width: 3;
123
+ stroke-linecap: butt;
124
+ opacity: 10%;
125
+ stroke: var(--global-text-color);
126
+ }
127
+
128
+ text::selection {
129
+ fill: HighlightText;
130
+ background-color: Highlight;
131
+ }
132
+ }
@@ -0,0 +1,52 @@
1
+ /*******************************************************************************
2
+ * Variables used throughout the theme.
3
+ * To adjust anything, simply edit the variables below and rebuild the theme.
4
+ ******************************************************************************/
5
+
6
+ @use "sass:color";
7
+
8
+ // Colors
9
+ $red-color: #ff3636 !default;
10
+ $red-color-dark: #b71c1c !default;
11
+ $orange-color: #f29105 !default;
12
+ $blue-color: #0076df !default;
13
+ $blue-color-dark: #00369f !default;
14
+ $cyan-color: #2698ba !default;
15
+ $light-cyan-color: color.adjust($cyan-color, $lightness: 25%);
16
+ $green-color: #00ab37 !default;
17
+ $green-color-lime: #b7d12a !default;
18
+ $green-color-dark: #009f06 !default;
19
+ $green-color-light: #ddffdd !default;
20
+ $green-color-bright: #11d68b !default;
21
+ $purple-color: #b509ac !default;
22
+ $light-purple-color: color.adjust($purple-color, $lightness: 25%);
23
+ $pink-color: #f92080 !default;
24
+ $pink-color-light: #ffdddd !default;
25
+ $yellow-color: #efcc00 !default;
26
+
27
+ $grey-color: #828282 !default;
28
+ $grey-color-light: color.adjust($grey-color, $lightness: 40%);
29
+ $grey-color-dark: #1c1c1d;
30
+ $grey-900: #212529;
31
+
32
+ $white-color: #ffffff !default;
33
+ $black-color: #000000 !default;
34
+
35
+ // Theme colors
36
+
37
+ $code-bg-color-light: rgba($purple-color, 0.05);
38
+ $code-bg-color-dark: #2c3237 !default;
39
+
40
+ // Font awesome location
41
+ $fa-font-path: "../webfonts";
42
+
43
+ // Tabler icons location
44
+ $ti-font-path: "../fonts";
45
+
46
+ // Back To Top button config
47
+ $back-to-top-z-index: 10;
48
+ $back-to-top-bottom: 30px;
49
+ $back-to-top-right: 30px;
50
+ $back-to-top-diameter: 40px;
51
+ $back-to-top-height: $back-to-top-diameter;
52
+ $back-to-top-width: $back-to-top-diameter;