jekyll-theme-centos 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. checksums.yaml +7 -0
  2. data/_config.yml +196 -0
  3. data/_data/base/announcement_schema.yml +49 -0
  4. data/_data/base/artwork_schema.yml +46 -0
  5. data/_data/base/backtotop_schema.yml +59 -0
  6. data/_data/base/bits.yml +96 -0
  7. data/_data/base/bits_schema.yml +185 -0
  8. data/_data/base/breadcrumb_schema.yml +27 -0
  9. data/_data/base/breakingnews_schema.yml +67 -0
  10. data/_data/base/card_schema.yml +146 -0
  11. data/_data/base/color.yml +1042 -0
  12. data/_data/base/color_schema.yml +1036 -0
  13. data/_data/base/configuration_variables_schema.yml +42 -0
  14. data/_data/base/content.yml +2 -0
  15. data/_data/base/content_schema.yml +26 -0
  16. data/_data/base/copyright.yml +12 -0
  17. data/_data/base/copyright_schema.yml +74 -0
  18. data/_data/base/copyvalue_schema.yml +49 -0
  19. data/_data/base/datatable_schema.yml +57 -0
  20. data/_data/base/event_schema.yml +130 -0
  21. data/_data/base/fontawesome_schema.yml +62 -0
  22. data/_data/base/footer.yml +9 -0
  23. data/_data/base/footer_schema.yml +55 -0
  24. data/_data/base/head_schema.yml +19 -0
  25. data/_data/base/heading_anchor.yml +2 -0
  26. data/_data/base/heading_anchor_schema.yml +37 -0
  27. data/_data/base/highlight_schema.yml +98 -0
  28. data/_data/base/image_schema.yml +34 -0
  29. data/_data/base/languages.yml +186 -0
  30. data/_data/base/link_schema.yml +187 -0
  31. data/_data/base/locales_schema.yml +158 -0
  32. data/_data/base/navbar.yml +20 -0
  33. data/_data/base/navbar_schema.yml +129 -0
  34. data/_data/base/navindex_schema.yml +67 -0
  35. data/_data/base/ogp.yml +24 -0
  36. data/_data/base/ogp_schema.yml +192 -0
  37. data/_data/base/project.yml +37 -0
  38. data/_data/base/project_schema.yml +124 -0
  39. data/_data/base/script_schema.yml +41 -0
  40. data/_data/base/shortcut_schema.yml +74 -0
  41. data/_data/base/social.yml +26 -0
  42. data/_data/base/social_schema.yml +57 -0
  43. data/_data/base/sponsors.yml +41 -0
  44. data/_data/base/sponsors_schema.yml +73 -0
  45. data/_data/base/title_schema.yml +49 -0
  46. data/_data/base/toc_schema.yml +114 -0
  47. data/_data/download/cards.yml +309 -0
  48. data/_data/download/navbar.yml +11 -0
  49. data/_includes/base/announcement.html.liquid +65 -0
  50. data/_includes/base/artwork.html.liquid +63 -0
  51. data/_includes/base/backtotop.html.liquid +73 -0
  52. data/_includes/base/bits.html.liquid +152 -0
  53. data/_includes/base/breadcrumb.html.liquid +77 -0
  54. data/_includes/base/breakingnews.html.liquid +90 -0
  55. data/_includes/base/card.html.liquid +110 -0
  56. data/_includes/base/color-table.html.liquid +33 -0
  57. data/_includes/base/configuration_variables-nested.html.liquid +98 -0
  58. data/_includes/base/configuration_variables.html.liquid +98 -0
  59. data/_includes/base/content.html.liquid +7 -0
  60. data/_includes/base/copyright.html.liquid +70 -0
  61. data/_includes/base/copyvalue.html.liquid +82 -0
  62. data/_includes/base/datatable.html.liquid +83 -0
  63. data/_includes/base/event.html.liquid +105 -0
  64. data/_includes/base/fontawesome.html.liquid +91 -0
  65. data/_includes/base/footer.html.liquid +69 -0
  66. data/_includes/base/head.html.liquid +135 -0
  67. data/_includes/base/heading_anchor.html.liquid +67 -0
  68. data/_includes/base/highlight.html.liquid +84 -0
  69. data/_includes/base/image.html.liquid +42 -0
  70. data/_includes/base/link.html.liquid +129 -0
  71. data/_includes/base/locales.html.liquid +78 -0
  72. data/_includes/base/navbar.html.liquid +121 -0
  73. data/_includes/base/navindex.html.liquid +200 -0
  74. data/_includes/base/ogp.html.liquid +144 -0
  75. data/_includes/base/project.html.liquid +104 -0
  76. data/_includes/base/shortcut.html.liquid +77 -0
  77. data/_includes/base/social.html.liquid +76 -0
  78. data/_includes/base/sponsors-cards.html.liquid +69 -0
  79. data/_includes/base/sponsors-carousel.html.liquid +91 -0
  80. data/_includes/base/title.html.liquid +65 -0
  81. data/_includes/base/toc-generator.html.liquid +189 -0
  82. data/_includes/base/toc.html.liquid +95 -0
  83. data/_includes/download/cards-body-commands.html +7 -0
  84. data/_includes/download/cards-body-convert.html +10 -0
  85. data/_includes/download/cards-body-doc.html +9 -0
  86. data/_includes/download/cards-body-documentation.html +11 -0
  87. data/_includes/download/cards-body-eol.html +16 -0
  88. data/_includes/download/cards-body-mirrors.html +8 -0
  89. data/_includes/download/cards-body-screenshot.html +26 -0
  90. data/_includes/download/cards-body-screenshots.html +32 -0
  91. data/_includes/download/cards-body.html +8 -0
  92. data/_includes/download/cards-footer.html +3 -0
  93. data/_includes/download/cards-header-commands.html +8 -0
  94. data/_includes/download/cards-header-convert.html +8 -0
  95. data/_includes/download/cards-header-doc.html +8 -0
  96. data/_includes/download/cards-header-documentation.html +8 -0
  97. data/_includes/download/cards-header-eol.html +8 -0
  98. data/_includes/download/cards-header-mirrors.html +13 -0
  99. data/_includes/download/cards-header-screenshot.html +8 -0
  100. data/_includes/download/cards-header-screenshots.html +8 -0
  101. data/_includes/download/cards-header.html +13 -0
  102. data/_includes/download/cards.html +120 -0
  103. data/_layouts/base/default.html +68 -0
  104. data/_layouts/download/cards.html +7 -0
  105. data/_layouts/download/default.html +7 -0
  106. data/_layouts/people/default.html +68 -0
  107. data/_sass/base/_customization.scss +331 -0
  108. data/_sass/base/_light-dark.scss +10 -0
  109. data/_sass/base/_maps.scss +104 -0
  110. data/_sass/base/_variables.scss +232 -0
  111. data/_sass/bootstrap/_accordion.scss +153 -0
  112. data/_sass/bootstrap/_alert.scss +68 -0
  113. data/_sass/bootstrap/_badge.scss +38 -0
  114. data/_sass/bootstrap/_breadcrumb.scss +40 -0
  115. data/_sass/bootstrap/_button-group.scss +147 -0
  116. data/_sass/bootstrap/_buttons.scss +216 -0
  117. data/_sass/bootstrap/_card.scss +238 -0
  118. data/_sass/bootstrap/_carousel.scss +226 -0
  119. data/_sass/bootstrap/_close.scss +66 -0
  120. data/_sass/bootstrap/_containers.scss +41 -0
  121. data/_sass/bootstrap/_dropdown.scss +250 -0
  122. data/_sass/bootstrap/_forms.scss +9 -0
  123. data/_sass/bootstrap/_functions.scss +302 -0
  124. data/_sass/bootstrap/_grid.scss +39 -0
  125. data/_sass/bootstrap/_helpers.scss +12 -0
  126. data/_sass/bootstrap/_images.scss +42 -0
  127. data/_sass/bootstrap/_list-group.scss +199 -0
  128. data/_sass/bootstrap/_maps.scss +174 -0
  129. data/_sass/bootstrap/_mixins.scss +42 -0
  130. data/_sass/bootstrap/_modal.scss +240 -0
  131. data/_sass/bootstrap/_nav.scss +197 -0
  132. data/_sass/bootstrap/_navbar.scss +289 -0
  133. data/_sass/bootstrap/_offcanvas.scss +147 -0
  134. data/_sass/bootstrap/_pagination.scss +109 -0
  135. data/_sass/bootstrap/_placeholders.scss +51 -0
  136. data/_sass/bootstrap/_popover.scss +196 -0
  137. data/_sass/bootstrap/_progress.scss +68 -0
  138. data/_sass/bootstrap/_reboot.scss +617 -0
  139. data/_sass/bootstrap/_root.scss +187 -0
  140. data/_sass/bootstrap/_spinners.scss +86 -0
  141. data/_sass/bootstrap/_tables.scss +171 -0
  142. data/_sass/bootstrap/_toasts.scss +73 -0
  143. data/_sass/bootstrap/_tooltip.scss +119 -0
  144. data/_sass/bootstrap/_transitions.scss +27 -0
  145. data/_sass/bootstrap/_type.scss +106 -0
  146. data/_sass/bootstrap/_utilities.scss +806 -0
  147. data/_sass/bootstrap/_variables-dark.scss +102 -0
  148. data/_sass/bootstrap/_variables.scss +1753 -0
  149. data/_sass/bootstrap/bootstrap-grid.scss +62 -0
  150. data/_sass/bootstrap/bootstrap-reboot.scss +10 -0
  151. data/_sass/bootstrap/bootstrap-utilities.scss +19 -0
  152. data/_sass/bootstrap/bootstrap.scss +52 -0
  153. data/_sass/bootstrap/forms/_floating-labels.scss +97 -0
  154. data/_sass/bootstrap/forms/_form-check.scss +189 -0
  155. data/_sass/bootstrap/forms/_form-control.scss +214 -0
  156. data/_sass/bootstrap/forms/_form-range.scss +91 -0
  157. data/_sass/bootstrap/forms/_form-select.scss +80 -0
  158. data/_sass/bootstrap/forms/_form-text.scss +11 -0
  159. data/_sass/bootstrap/forms/_input-group.scss +132 -0
  160. data/_sass/bootstrap/forms/_labels.scss +36 -0
  161. data/_sass/bootstrap/forms/_validation.scss +12 -0
  162. data/_sass/bootstrap/helpers/_clearfix.scss +3 -0
  163. data/_sass/bootstrap/helpers/_color-bg.scss +7 -0
  164. data/_sass/bootstrap/helpers/_colored-links.scss +30 -0
  165. data/_sass/bootstrap/helpers/_focus-ring.scss +5 -0
  166. data/_sass/bootstrap/helpers/_icon-link.scss +25 -0
  167. data/_sass/bootstrap/helpers/_position.scss +36 -0
  168. data/_sass/bootstrap/helpers/_ratio.scss +26 -0
  169. data/_sass/bootstrap/helpers/_stacks.scss +15 -0
  170. data/_sass/bootstrap/helpers/_stretched-link.scss +15 -0
  171. data/_sass/bootstrap/helpers/_text-truncation.scss +7 -0
  172. data/_sass/bootstrap/helpers/_visually-hidden.scss +8 -0
  173. data/_sass/bootstrap/helpers/_vr.scss +8 -0
  174. data/_sass/bootstrap/mixins/_alert.scss +18 -0
  175. data/_sass/bootstrap/mixins/_backdrop.scss +14 -0
  176. data/_sass/bootstrap/mixins/_banner.scss +7 -0
  177. data/_sass/bootstrap/mixins/_border-radius.scss +78 -0
  178. data/_sass/bootstrap/mixins/_box-shadow.scss +24 -0
  179. data/_sass/bootstrap/mixins/_breakpoints.scss +127 -0
  180. data/_sass/bootstrap/mixins/_buttons.scss +70 -0
  181. data/_sass/bootstrap/mixins/_caret.scss +69 -0
  182. data/_sass/bootstrap/mixins/_clearfix.scss +9 -0
  183. data/_sass/bootstrap/mixins/_color-mode.scss +21 -0
  184. data/_sass/bootstrap/mixins/_color-scheme.scss +7 -0
  185. data/_sass/bootstrap/mixins/_container.scss +11 -0
  186. data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
  187. data/_sass/bootstrap/mixins/_forms.scss +163 -0
  188. data/_sass/bootstrap/mixins/_gradients.scss +47 -0
  189. data/_sass/bootstrap/mixins/_grid.scss +151 -0
  190. data/_sass/bootstrap/mixins/_image.scss +16 -0
  191. data/_sass/bootstrap/mixins/_list-group.scss +26 -0
  192. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  193. data/_sass/bootstrap/mixins/_pagination.scss +10 -0
  194. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  195. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  196. data/_sass/bootstrap/mixins/_table-variants.scss +24 -0
  197. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  198. data/_sass/bootstrap/mixins/_transition.scss +26 -0
  199. data/_sass/bootstrap/mixins/_utilities.scss +97 -0
  200. data/_sass/bootstrap/mixins/_visually-hidden.scss +38 -0
  201. data/_sass/bootstrap/utilities/_api.scss +47 -0
  202. data/_sass/bootstrap/vendor/_rfs.scss +348 -0
  203. data/assets/css/base/stylesheet.min.scss +35 -0
  204. data/assets/icons/android-chrome-192.png +0 -0
  205. data/assets/icons/android-chrome-512.png +0 -0
  206. data/assets/icons/apple-touch-icon.png +0 -0
  207. data/assets/icons/favicon-16.png +0 -0
  208. data/assets/icons/favicon-32.png +0 -0
  209. data/assets/icons/favicon.ico +0 -0
  210. data/assets/icons/favicon.svg +1 -0
  211. data/assets/img/anaconda-symbolic.svg +1 -0
  212. data/assets/img/anaconda.svg +1 -0
  213. data/assets/img/base/centos-colors.gpl +55 -0
  214. data/assets/img/base/example-ogp-image.svg +297 -0
  215. data/assets/img/base/example-sponsors-design.svg +226 -0
  216. data/assets/img/base/example-sponsors-logo-1.svg +120 -0
  217. data/assets/img/base/example-sponsors-logo-2.svg +116 -0
  218. data/assets/img/base/example-sponsors-logo-3.svg +123 -0
  219. data/assets/img/base/example-sponsors-logo-4.svg +116 -0
  220. data/assets/img/base/example-sponsors-logo-5.svg +116 -0
  221. data/assets/img/base/example-sponsors-logo-6.svg +116 -0
  222. data/assets/img/base/example-sponsors-logo-7.svg +116 -0
  223. data/assets/img/base/example-sponsors-logo-8.svg +110 -0
  224. data/assets/img/base/page-layout-default.svg +1217 -0
  225. data/assets/img/base/page-with-alert.svg +383 -0
  226. data/assets/img/base/page-with-announcement.svg +956 -0
  227. data/assets/img/base/page-with-artwork.svg +1009 -0
  228. data/assets/img/base/page-with-backtotop.svg +1009 -0
  229. data/assets/img/base/page-with-bits.svg +891 -0
  230. data/assets/img/base/page-with-breadcrumb.svg +676 -0
  231. data/assets/img/base/page-with-breakingnews.svg +957 -0
  232. data/assets/img/base/page-with-color.svg +57 -0
  233. data/assets/img/base/page-with-copyright.svg +1018 -0
  234. data/assets/img/base/page-with-copyvalue.svg +57 -0
  235. data/assets/img/base/page-with-datatable.svg +857 -0
  236. data/assets/img/base/page-with-event.svg +518 -0
  237. data/assets/img/base/page-with-fontawesome.svg +147 -0
  238. data/assets/img/base/page-with-footer.svg +1018 -0
  239. data/assets/img/base/page-with-heading.svg +57 -0
  240. data/assets/img/base/page-with-highlight.svg +86 -0
  241. data/assets/img/base/page-with-image.svg +57 -0
  242. data/assets/img/base/page-with-link.svg +57 -0
  243. data/assets/img/base/page-with-locales.svg +1009 -0
  244. data/assets/img/base/page-with-navbar.svg +958 -0
  245. data/assets/img/base/page-with-navindex.svg +279 -0
  246. data/assets/img/base/page-with-ogp.svg +401 -0
  247. data/assets/img/base/page-with-project.svg +423 -0
  248. data/assets/img/base/page-with-shortcut.svg +937 -0
  249. data/assets/img/base/page-with-social.svg +937 -0
  250. data/assets/img/base/page-with-sponsors.svg +937 -0
  251. data/assets/img/base/page-with-title.svg +584 -0
  252. data/assets/img/base/page-with-toc.svg +399 -0
  253. data/assets/img/base/screenshot-1200x600.svg +114 -0
  254. data/assets/img/centos-dynamicmsg-logo.svg +1 -0
  255. data/assets/img/centos-dynamicmsg-type.svg +1 -0
  256. data/assets/img/centos-dynamicmsg-whitelogo.svg +1 -0
  257. data/assets/img/centos-dynamicmsg-whitetype.svg +1 -0
  258. data/assets/img/centos-gdm-whitelogo.svg +1 -0
  259. data/assets/img/centos-ipa-whiteheader.svg +1 -0
  260. data/assets/img/centos-logo-2bits.svg +1 -0
  261. data/assets/img/centos-logo.svg +1 -0
  262. data/assets/img/centos-message-logo.svg +1 -0
  263. data/assets/img/centos-motif.png +0 -0
  264. data/assets/img/centos-poweredby-logo.svg +1 -0
  265. data/assets/img/centos-social-share.png +0 -0
  266. data/assets/img/centos-symbol-2bits.svg +1 -0
  267. data/assets/img/centos-symbol.svg +1 -0
  268. data/assets/img/centos-type.svg +1 -0
  269. data/assets/img/centos-vertical-logo.svg +1 -0
  270. data/assets/img/centos-vertical-message-logo.svg +1 -0
  271. data/assets/img/centos-whitelogo.svg +1 -0
  272. data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
  273. data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
  274. data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
  275. data/assets/img/download/distribution-release-screenshot-1.png +0 -0
  276. data/assets/img/download/distribution-release-screenshot-2.png +0 -0
  277. data/assets/img/download/distribution-release-screenshot-3.png +0 -0
  278. data/assets/img/download/distribution-release-screenshot-n.png +0 -0
  279. data/assets/img/download/distribution-release-screenshot-n.svg +134 -0
  280. data/assets/img/download/download.svg +421 -0
  281. data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
  282. data/assets/img/people/page.svg +900 -0
  283. data/assets/img/people/page.webp +0 -0
  284. data/assets/img/people/username.webp +0 -0
  285. data/assets/js/base/backtotop.js +20 -0
  286. data/assets/js/base/copyvalue.js +145 -0
  287. data/assets/js/base/datatable.js +41 -0
  288. data/assets/js/base/heading-anchor.js +108 -0
  289. data/assets/js/base/highlight.js +12 -0
  290. data/assets/js/base/init-tooltips.js +12 -0
  291. data/assets/js/bootstrap.bundle.js +6312 -0
  292. data/assets/js/bootstrap.bundle.js.map +1 -0
  293. data/assets/js/bootstrap.bundle.min.js +7 -0
  294. data/assets/js/bootstrap.bundle.min.js.map +1 -0
  295. data/assets/js/bootstrap.esm.js +4447 -0
  296. data/assets/js/bootstrap.esm.js.map +1 -0
  297. data/assets/js/bootstrap.esm.min.js +7 -0
  298. data/assets/js/bootstrap.esm.min.js.map +1 -0
  299. data/assets/js/bootstrap.js +4494 -0
  300. data/assets/js/bootstrap.js.map +1 -0
  301. data/assets/js/bootstrap.min.js +7 -0
  302. data/assets/js/bootstrap.min.js.map +1 -0
  303. data/site.webmanifest +11 -0
  304. metadata +611 -0
@@ -0,0 +1,8 @@
1
+ <div class="table-responsive">
2
+ <table class="table mb-0">
3
+ <thead class="table-light">
4
+ <tr>
5
+ <th scope="col"><i class="fa-solid fa-desktop"></i> Desktop</th>
6
+ </tr>
7
+ </thead>
8
+ <tbody>
@@ -0,0 +1,8 @@
1
+ <div class="table-responsive">
2
+ <table class="table table-bordered mb-0">
3
+ <thead class="table-light">
4
+ <tr>
5
+ <th scope="col"><i class="fa-solid fa-desktop"></i> Screenshots</th>
6
+ </tr>
7
+ </thead>
8
+ <tbody>
@@ -0,0 +1,13 @@
1
+ <div class="table-responsive">
2
+ <table class="table mb-0">
3
+ <thead class="table-light">
4
+ <tr>
5
+ <th scope="col"><i class="fa-solid fa-microchip"></i> Architectures</th>
6
+ <th scope="col">ISOs</th>
7
+ <th scope="col">RPMs</th>
8
+ <th scope="col">Cloud</th>
9
+ <th scope="col">Containers</th>
10
+ <th scope="col">Vagrant</th>
11
+ </tr>
12
+ </thead>
13
+ <tbody>
@@ -0,0 +1,120 @@
1
+ {% if include.data and include.data != "" %}
2
+ {% assign cards = include.data %}
3
+ {% else %}
4
+ {% assign cards = site.data.download.cards %}
5
+ {% endif %}
6
+
7
+
8
+ {% for card in cards %}
9
+
10
+ {% if include.title and include.title != "" %}
11
+ {% if include.title != card.title %}
12
+ {% continue %}
13
+ {% endif %}
14
+ {% endif %}
15
+
16
+ <div class="mb-5">
17
+ {% if include.with_title %}
18
+ <div class="h2">{{ card.title }}</div>
19
+ {% endif %}
20
+
21
+ {% if include.with_description %}
22
+ <p>{{ card.description }}</p>
23
+ {% endif %}
24
+
25
+ {% if include.id and include.id != "" %}
26
+ {%- capture card_id -%}
27
+ {{ include.id }}-{{ card.title | downcase | replace: " ", "-" }}
28
+ {%- endcapture %}
29
+ {% else %}
30
+ {%- capture card_id -%}
31
+ DownloadsCard-1-{{ card.title | downcase | replace: " ", "-" }}
32
+ {%- endcapture %}
33
+ {% endif %}
34
+
35
+ {% if include.with_releases %}
36
+ <ul class="nav nav-pills my-3 justify-content-start" id="{{ card_id }}-pills-tab" role="tablist">
37
+ {% for release in card.releases %}
38
+ <li class="nav-item" role="presentation">
39
+ <button class="nav-link{% if forloop.first %} active{% endif %} fw-bold"
40
+ id="{{ card_id }}-pills-tab{{ forloop.index }}"
41
+ data-bs-toggle="tab"
42
+ data-bs-target="#{{ card_id }}-pills{{ forloop.index }}"
43
+ type="button"
44
+ role="tab"
45
+ aria-controls="{{ card_id }}-pills-tab{{ forloop.index }}"
46
+ {% if forloop.first %}aria-selected="true"{% endif %}
47
+ >{{ release[0] }}</button>
48
+ </li>
49
+ {% endfor %}
50
+ </ul>
51
+
52
+ <div class="tab-content mb-3" id="{{ card_id }}-pills-tabContent">
53
+ {% for release in card.releases %}
54
+
55
+ {%- capture release_id -%}
56
+ {{ card_id }}-pills{{ forloop.index }}
57
+ {%- endcapture %}
58
+
59
+ {%- capture tab_id -%}
60
+ {{ card_id }}-pills-tab{{ forloop.index }}
61
+ {%- endcapture %}
62
+
63
+ <div class="tab-pane fade {% if forloop.first %} show active{% endif %}"
64
+ id="{{ release_id }}"
65
+ role="tabpanel"
66
+ aria-labelledby="{{ tab_id }}"
67
+ tabindex="{{ forloop.index }}">
68
+
69
+ {% if include.with_screenshots %}
70
+ {% for rows in release %}
71
+ {% if rows.screenshots.size > 0 %}
72
+ {% include download/cards-header-screenshots.html %}
73
+ {% include download/cards-body-screenshots.html %}
74
+ {% include download/cards-footer.html %}
75
+ {% endif %}
76
+ {% endfor %}
77
+ {% endif %}
78
+
79
+ {% if include.with_mirrors %}
80
+ {% include download/cards-header-mirrors.html %}
81
+ {% for rows in release %}
82
+ {% for row in rows.mirrors %}
83
+ {% include download/cards-body-mirrors.html %}
84
+ {% endfor %}
85
+ {% endfor %}
86
+ {% include download/cards-footer.html %}
87
+ {% endif %}
88
+
89
+ {% if include.with_documentation %}
90
+ {% include download/cards-header-documentation.html %}
91
+ {% include download/cards-body-documentation.html %}
92
+ {% include download/cards-footer.html %}
93
+ {% endif %}
94
+
95
+ {% if include.with_eol %}
96
+ {% include download/cards-header-eol.html %}
97
+ {% for rows in release %}
98
+ {% for row in rows.eol %}
99
+ {% include download/cards-body-eol.html %}
100
+ {% endfor %}
101
+ {% endfor %}
102
+ {% include download/cards-footer.html %}
103
+ {% endif %}
104
+
105
+ {% if include.with_commands %}
106
+ {% for rows in release %}
107
+ {% for row in rows.commands %}
108
+ {% include download/cards-header-commands.html %}
109
+ {% include download/cards-body-commands.html %}
110
+ {% include download/cards-footer.html %}
111
+ {% endfor %}
112
+ {% endfor %}
113
+ {% endif %}
114
+ </div>
115
+ {% endfor %}
116
+ </div>
117
+ {% endif %}
118
+
119
+ </div>
120
+ {% endfor %}
@@ -0,0 +1,68 @@
1
+ <!doctype html>
2
+ <html lang="{{ page.lang | default: 'en' }}"{% if page.with_ogp %} prefix="og: https://ogp.me/ns#"{% endif %}>
3
+ {% include base/head.html.liquid -%}
4
+ <body id="top" class="bg-body">
5
+
6
+ {% include base/navbar.html.liquid -%}
7
+
8
+ {% include base/project.html.liquid %}
9
+
10
+ {% include base/breakingnews.html.liquid -%}
11
+
12
+ <main class="container py-3">
13
+
14
+ {%- include base/announcement.html.liquid %}
15
+
16
+ {% include base/bits.html.liquid %}
17
+
18
+ {% include base/event.html.liquid %}
19
+
20
+ {% if page.with_breadcrumb %}
21
+ <div class="row small mb-3">
22
+ <div class="col">
23
+ {% include base/breadcrumb.html.liquid %}
24
+ </div>
25
+ </div>
26
+ {% endif %}
27
+
28
+ {% if page.with_title %}
29
+ <div class="row mb-3">
30
+ <div class="{{ site.data.base.content.class | default: 'col' }}">
31
+ {% include base/title.html.liquid %}
32
+ </div>
33
+ </div>
34
+ {% endif %}
35
+
36
+ {% if page.with_artwork %}
37
+ <div class="row mb-3">
38
+ <div class="{{ site.data.base.content.class | default: 'col' }}">
39
+ {% include base/artwork.html.liquid %}
40
+ </div>
41
+ </div>
42
+ {% endif %}
43
+
44
+ {% if page.with_toc %}
45
+ <div class="row mb-3">
46
+ <div class="{{ site.data.base.content.class | default: 'col' }}">
47
+ {% include base/toc.html.liquid %}
48
+ </div>
49
+ </div>
50
+ {% endif %}
51
+
52
+ {% if page.with_content %}
53
+ <div class="row mb-3">
54
+ <div class="{{ site.data.base.content.class | default: 'col' }} content">
55
+ {% include base/content.html.liquid %}
56
+ </div>
57
+ </div>
58
+ {% endif %}
59
+
60
+ </main>
61
+
62
+ {% if page.with_footer %}
63
+ <footer class="footer small bg-dark text-centos-purple-100 pt-5">
64
+ {% include base/footer.html.liquid -%}
65
+ </footer>
66
+ {% endif %}
67
+ </body>
68
+ </html>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include download/cards.html %}
6
+
7
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: base/default
3
+ ---
4
+
5
+ {% include download/cards.html %}
6
+
7
+ {{ content }}
@@ -0,0 +1,68 @@
1
+ <!doctype html>
2
+ <html lang="{{ page.lang | default: 'en' }}">
3
+ {% include base/head.html -%}
4
+ <body id="top" class="bg-dots pt-0">
5
+ {% include base/navbar.html %}
6
+
7
+ <div class="bg-dark bg-image border-bottom border-5 border-primary">
8
+ <div class="container text-white p-5">
9
+ <div class="row mt-3 mb-4">
10
+ {% assign header_image = "people/" | append: page.title | append: ".webp" %}
11
+ {% include base/card.html
12
+ class = "my-5"
13
+ image = header_image
14
+ image_class = "mb-4 w-25 rounded border border-3"
15
+ name = page.title
16
+ name_class = "display-2 fw-bold mb-1"
17
+ description = page.title_lead
18
+ description_class = "lead"
19
+ %}
20
+ </div>
21
+ </div>
22
+ </div>
23
+
24
+ <main class="container bg-body p-5 mt-n6 shadow rounded-top">
25
+ {% if page.with_announcements == true and page.with_announcements_data.size > 0 -%}
26
+ {% include base/announcements.html %}
27
+ {% endif %}
28
+
29
+ {% if page.with_content == true %}
30
+ <div class="content">
31
+ {{ content }}
32
+ </div>
33
+ {% endif %}
34
+ </main>
35
+
36
+ {% if page.with_footer == true %}
37
+ <footer class="footer small bg-dark bg-image text-light">
38
+ {% if page.with_shortcuts == true %}
39
+ <div class="container px-0">
40
+ {% include base/shortcuts.html %}
41
+ </div>
42
+ {% endif %}
43
+
44
+ {% if page.with_finale == true %}
45
+ <div class="container px-0">
46
+ {% include base/finale.html %}
47
+ </div>
48
+ {% endif %}
49
+
50
+ {% if page.with_sponsors == true %}
51
+ <div class="container px-0">
52
+ {% include sponsors/carousel.html -%}
53
+ </div>
54
+ {% endif %}
55
+
56
+ {% if page.with_copyright == true %}
57
+ <div class="container px-0 py-1">
58
+ {% include base/copyright.html %}
59
+ </div>
60
+ {% endif %}
61
+
62
+ </footer>
63
+ {% endif %}
64
+
65
+ {% include base/script.html -%}
66
+
67
+ </body>
68
+ </html>
@@ -0,0 +1,331 @@
1
+ // This file is for custom CSS rules and utility classes that override standard
2
+ // Bootstrap structure. It should be the last file in your import sequence.
3
+ // Here, you define and generate custom utility classes using the variables and
4
+ // maps that were set up previously.
5
+
6
+ // ================================================================================
7
+ // CSS Custom Properties (for dynamic inline styles)
8
+ // ================================================================================
9
+ // These variables are used in head.html.liquid for dynamic CSS generation.
10
+ // Defined here for centralized configuration and availability to inline styles.
11
+ :root {
12
+ // Breaking News Component
13
+ // Measurements used for calculating scroll-margin-top in head.html.liquid
14
+ --breakingnews-alert-height: 31px;
15
+ --navbar-height: 42px;
16
+ --heading-margin-top: 48px;
17
+
18
+ // Highlight.js Icon Sizing
19
+ // Used for copy button icon dimensions
20
+ --highlight-icon-width: 24px;
21
+ --highlight-icon-height: 24px;
22
+ }
23
+
24
+ body {
25
+ padding-top: $breakingnews-height;
26
+
27
+ .sticky-top-breakingnews {
28
+ top: $breakingnews-height;
29
+ }
30
+ }
31
+
32
+ // --------------------------------------------------------------------------------
33
+ // Backgrounds, Texts, and Gradients classes
34
+ // --------------------------------------------------------------------------------
35
+ @each $color, $value in $theme-colors {
36
+ // Create a background utility class for each color.
37
+ .bg-#{$color} {
38
+ background-color: $value;
39
+ }
40
+ // Create a text color utility class for each color.
41
+ .text-#{$color} {
42
+ color: $value;
43
+ }
44
+ }
45
+
46
+ @each $color, $value in $centos-text-gradients {
47
+ .text-gradient-#{$color} {
48
+ background-image: $value;
49
+ -webkit-background-clip: text;
50
+ -webkit-text-fill-color: transparent;
51
+ }
52
+ }
53
+
54
+ .bg-image {
55
+ background-image: url("../../img/centos-motif.png");
56
+ background-size: cover;
57
+ background-repeat: no-repeat;
58
+ }
59
+ .bg-image-center {
60
+ background-position: center;
61
+ }
62
+
63
+ .bg-image-top {
64
+ background-position: top;
65
+ }
66
+
67
+ .bg-image-bottom {
68
+ background-position: bottom;
69
+ }
70
+
71
+ // --------------------------------------------------------------------------------
72
+ // Lists
73
+ // --------------------------------------------------------------------------------
74
+ #pageToc {
75
+ li {
76
+ list-style: none;
77
+ }
78
+ li::before {
79
+ content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='6' height='6'><circle cx='256' cy='256' r='256' fill='rgba(#{to-rgb($body-color)},1)'/></svg>");
80
+ vertical-align: middle;
81
+ position: relative;
82
+ left: -0.5rem;
83
+ top: -0.2rem;
84
+ }
85
+ }
86
+
87
+ // --------------------------------------------------------------------------------
88
+ // Alerts (p), announcements (div), and breakingnews (div)
89
+ // --------------------------------------------------------------------------------
90
+ // Breaking News: Use Font Awesome HTML icons (fa-solid fa-bullhorn) for consistent
91
+ // visual identity across all color variations.
92
+ // Positioned at page level with sticky positioning.
93
+ // Excluded from CSS icon styling via .breakingnews class.
94
+ // Announcements: Use Font Awesome HTML icons (fa-solid fa-bullhorn) for consistent
95
+ // visual identity across all color variations.
96
+ // Positioned within .content (inside main).
97
+ // Excluded from CSS icon styling via .announcement class.
98
+ // Alerts: Use CSS-based SVG icons ($centos-alert-icons map) for markdown-based
99
+ // alerts within .content, with type-specific icons per color.
100
+ // Only applied to .alert:not(.announcement) to avoid styling announcements.
101
+
102
+ $centos-alert-icons: (
103
+ "primary": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' viewBox='0 0 42.333 42.333'><g transform='rotate(45 -180.13 -610.203) scale(1.0529)'><circle cx='388.123' cy='-290.716' r='20.103' style='fill:rgba(#{to-rgb(shade-color(map-get($theme-colors, 'primary'), 60%))},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb(shade-color(map-get($theme-colors, 'primary'), 60%))}'/><path d='M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z' style='fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000'/></g></svg>"),
104
+ "secondary": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' viewBox='0 0 42.333 42.333'><g transform='rotate(45 -180.13 -610.203) scale(1.0529)'><circle cx='388.123' cy='-290.716' r='20.103' style='fill:rgba(#{to-rgb(shade-color(map-get($theme-colors, 'secondary'), 60%))},1);stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#{to-rgb(shade-color(map-get($theme-colors, 'secondary'), 60%))}'/><path d='M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z' style='fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000'/></g></svg>"),
105
+ "warning": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' fill='rgba(#{to-rgb(shade-color(map-get($theme-colors, 'warning'), 60%))},1)' viewBox='0 0 512 512'><path d='M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z'/></svg>"),
106
+ "info": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' fill='rgba(#{to-rgb(shade-color(map-get($theme-colors, 'info'), 60%))},1)' viewBox='0 0 512 512'><path d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z'/></svg>"),
107
+ "danger": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' fill='rgba(#{to-rgb(shade-color(map-get($theme-colors, 'danger'), 60%))},1)' viewBox='0 0 512 512'><path d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z'/></svg>"),
108
+ "success": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' fill='rgba(#{to-rgb(shade-color(map-get($theme-colors, 'success'), 60%))},1)' viewBox='0 0 512 512'><path d='M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/></svg>"),
109
+ "light": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' fill='rgba(#{to-rgb(shade-color(map-get($theme-colors, 'light'), 60%))},1)' viewBox='0 0 512 512'><path d='M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z'/></svg>"),
110
+ "dark": url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1rem' fill='rgba(#{to-rgb(shade-color(map-get($theme-colors, 'dark'), 60%))},1)' viewBox='0 0 512 512'><path d='M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.7 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z'/></svg>")
111
+ );
112
+
113
+ // Breaking news with HTML-based Font Awesome icons
114
+ // Positioned at page level (outside .content)
115
+ .sticky-top-breakingnews {
116
+ .breakingnews {
117
+ padding-left: $spacer * 1.25;
118
+ }
119
+ }
120
+
121
+ .content {
122
+ // Markdown-based alerts with CSS-generated icons
123
+ // Only apply to alerts that are neither announcements nor breaking news
124
+ .alert:not(.announcement):not(.breakingnews) {
125
+ padding-left: $spacer * 3;
126
+ border-left-width: 0.5rem;
127
+
128
+ @each $color, $icon-url in $centos-alert-icons {
129
+ &.alert-#{$color} {
130
+ &::before {
131
+ content: "";
132
+ position: absolute;
133
+ left: 1rem;
134
+ top: 1.75rem;
135
+ transform: translateY(-50%);
136
+ width: 1.25rem;
137
+ height: 1.25rem;
138
+ background-image: #{$icon-url};
139
+ background-repeat: no-repeat;
140
+ background-position: center;
141
+ background-size: contain;
142
+ }
143
+ }
144
+ }
145
+ }
146
+ }
147
+
148
+ main {
149
+ // --------------------------------------------------------------------------------
150
+ // Navbar and linked headings' correction.
151
+ //
152
+ // By default, when you access page headings from the page table of content
153
+ // (toc) links, the heading is hidden behind the navbar. This workaround
154
+ // fixes the linked headings visibility issue in the page.
155
+ // Also applies the same correction to accordion buttons for consistent behavior.
156
+ // --------------------------------------------------------------------------------
157
+ .content > h1,
158
+ .content > h2,
159
+ .content > h3,
160
+ .content > h4,
161
+ .content > h5,
162
+ .content > h6 {
163
+ scroll-margin-top: 80px;
164
+ scroll-margin-bottom: 100px;
165
+ margin-top: 3rem;
166
+ }
167
+ .content > h2 {
168
+ border-bottom: 0.35rem solid $primary;
169
+ padding-bottom: $spacer * 0.5;
170
+ margin-bottom: $spacer * 0.75;
171
+ }
172
+ .content > figure {
173
+ scroll-margin-top: 80px;
174
+ scroll-margin-bottom: 100px;
175
+ }
176
+
177
+ // -------------------------------------------------------------------------------
178
+ // Heading Anchor Component
179
+ // -------------------------------------------------------------------------------
180
+ // :has() guard: position context for the anchor icon.
181
+ // No padding change — the icon translates left of the text start to preserve heading alignment.
182
+ .content > h1:has(.heading-anchor),
183
+ .content > h2:has(.heading-anchor),
184
+ .content > h3:has(.heading-anchor),
185
+ .content > h4:has(.heading-anchor),
186
+ .content > h5:has(.heading-anchor),
187
+ .content > h6:has(.heading-anchor) {
188
+ position: relative;
189
+ }
190
+ .content > h1 .heading-anchor,
191
+ .content > h2 .heading-anchor,
192
+ .content > h3 .heading-anchor,
193
+ .content > h4 .heading-anchor,
194
+ .content > h5 .heading-anchor,
195
+ .content > h6 .heading-anchor {
196
+ position: absolute;
197
+ left: 0;
198
+ top: 0;
199
+ height: 1lh;
200
+ display: flex;
201
+ align-items: center;
202
+ transform: translateX(-100%);
203
+ font-size: 1em;
204
+ margin-left: 0 !important;
205
+ margin-right: 0 !important;
206
+ opacity: 0;
207
+ pointer-events: auto;
208
+ text-decoration: none;
209
+ }
210
+ .content > h1 .heading-anchor > i,
211
+ .content > h1 .heading-anchor > svg,
212
+ .content > h2 .heading-anchor > i,
213
+ .content > h2 .heading-anchor > svg,
214
+ .content > h3 .heading-anchor > i,
215
+ .content > h3 .heading-anchor > svg,
216
+ .content > h4 .heading-anchor > i,
217
+ .content > h4 .heading-anchor > svg,
218
+ .content > h5 .heading-anchor > i,
219
+ .content > h5 .heading-anchor > svg,
220
+ .content > h6 .heading-anchor > i,
221
+ .content > h6 .heading-anchor > svg {
222
+ font-size: 0.5em;
223
+ }
224
+ .content > h1:hover .heading-anchor,
225
+ .content > h2:hover .heading-anchor,
226
+ .content > h3:hover .heading-anchor,
227
+ .content > h4:hover .heading-anchor,
228
+ .content > h5:hover .heading-anchor,
229
+ .content > h6:hover .heading-anchor,
230
+ .heading-anchor:focus {
231
+ opacity: 1;
232
+ }
233
+ .heading-anchor.is-active,
234
+ .heading-anchor.is-active i {
235
+ opacity: 1 !important;
236
+ visibility: visible !important;
237
+ color: var(--bs-primary);
238
+ }
239
+
240
+ // Accordion containers' correction.
241
+ //
242
+ // When accessing accordion containers via internal anchor links, they wouldn't be
243
+ // hidden behind the navbar. This correction ensures accordion containers remain
244
+ // visible when linked to, and works in conjunction with the dynamic calculation
245
+ // in head.html.liquid when breaking news is present.
246
+ //
247
+ // Note: Applied to .accordion container (not items) to avoid disrupting accordion
248
+ // item internal layout while still providing proper scroll margin and visual spacing.
249
+ .content .accordion,
250
+ .content .accordion-item {
251
+ scroll-margin-top: 80px;
252
+ scroll-margin-bottom: 100px;
253
+ }
254
+
255
+ // --------------------------------------------------------------------------------
256
+ // DataTable BS5 corrections
257
+ // --------------------------------------------------------------------------------
258
+ .content { .dt-container { margin-bottom: 1rem; } }
259
+
260
+ // --------------------------------------------------------------------------------
261
+ // Copy Value Component
262
+ // --------------------------------------------------------------------------------
263
+ .content {
264
+ .copy-btn {
265
+ cursor: pointer;
266
+ color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
267
+ text-decoration: none;
268
+
269
+ &:hover {
270
+ --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
271
+ }
272
+ }
273
+
274
+ .alert .copy-btn {
275
+ color: var(--bs-alert-link-color);
276
+ }
277
+ }
278
+
279
+ // --------------------------------------------------------------------------------
280
+ // Highlightjs-copy
281
+ // --------------------------------------------------------------------------------
282
+ .content {
283
+ code.hljs {
284
+ border-radius: var(--bs-border-radius-lg);
285
+ }
286
+ pre {
287
+ .hljs {
288
+ max-height: 50vh;
289
+ overflow: auto;
290
+ }
291
+ .hljs-copy-button {
292
+ top: 0.2rem;
293
+ right: 0.2rem;
294
+ border-radius: var(--bs-border-radius-lg);
295
+ }
296
+
297
+ .hljs-copy-button:not([data-copied="true"])::before {
298
+ mask-size: 100% 100%;
299
+ }
300
+
301
+ .hljs-copy-button[data-copied='true'] {
302
+ color: transparent !important;
303
+ font-size: 0 !important;
304
+ text-indent: -9999px !important;
305
+ width: 1.85rem !important; /* Set a fixed width for the button */
306
+ height: 1.85rem !important; /* Set a fixed height for the button */
307
+ position: relative !important; /* Required for absolute positioning of the SVG */
308
+
309
+ }
310
+ .hljs-copy-button[data-copied='true']::after {
311
+ content: "";
312
+ background-repeat: no-repeat;
313
+ background-size: contain;
314
+ position: absolute;
315
+ top: 50%;
316
+ left: 50%;
317
+ transform: translate(-50%, -50%);
318
+ width: 1rem; /* Adjust icon size as needed */
319
+ height: 1rem; /* Adjust icon size as needed */
320
+ }
321
+ code {
322
+ border-left: 5px;
323
+ border-top: 1px;
324
+ border-right: 1px;
325
+ border-bottom: 1px;
326
+ border-color: var(--bs-light-border-subtle);
327
+ border-style: solid;
328
+ }
329
+ }
330
+ }
331
+ }
@@ -0,0 +1,10 @@
1
+ // Auto-generated from saturation-normalized shade algorithm
2
+ // DO NOT EDIT: This file is generated by generate-scss-light-dark.py
3
+ // Source: centos-purple (#A14F8C)
4
+ // Generated: Shade 50 → $light, Shade 950 → $dark
5
+ //
6
+ // To regenerate after color changes, run:
7
+ // python3 scripts/colors/generate-scss-light-dark.py
8
+
9
+ $light: #F6EDF4; // centos-purple-50: reduced saturation (~60%), high lightness (~95%)
10
+ $dark: #22061B; // centos-purple-950: enhanced saturation (100%), low lightness (8%)