jekyll-theme-centos 0.0.0 → 0.1.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.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +66 -0
- data/_includes/centos-content/1col.html +11 -0
- data/_includes/centos-content/2col.html +15 -0
- data/_includes/centos-content/admonition/caution.html +4 -0
- data/_includes/centos-content/admonition/idea.html +4 -0
- data/_includes/centos-content/admonition/note.html +4 -0
- data/_includes/centos-content/admonition/warning.html +4 -0
- data/_includes/centos-content/around.html +6 -0
- data/_includes/centos-content/breadcrumbs.html +11 -0
- data/_includes/centos-content/download/stream-8-doc.html +5 -0
- data/_includes/centos-content/download/stream-8-eol.html +5 -0
- data/_includes/centos-content/download/stream-8.html +5 -0
- data/_includes/centos-content/download/stream.html +16 -0
- data/_includes/centos-content/download/table-body-doc.html +6 -0
- data/_includes/centos-content/download/table-body-eol.html +4 -0
- data/_includes/centos-content/download/table-body.html +7 -0
- data/_includes/{download/cards-footer.html → centos-content/download/table-footer.html} +0 -1
- data/_includes/centos-content/download/table-header-doc.html +8 -0
- data/_includes/centos-content/download/table-header-eol.html +8 -0
- data/_includes/centos-content/download/table-header.html +10 -0
- data/_includes/centos-content/figure.html +4 -0
- data/_includes/centos-content/news.html +15 -0
- data/_includes/centos-content/sponsors.html +19 -0
- data/_includes/centos-content/toc.html +103 -0
- data/_includes/centos-content/video.html +3 -0
- data/_includes/centos-footer.html +42 -0
- data/_includes/centos-head.html +7 -0
- data/_includes/centos-header/home.html +15 -0
- data/_includes/centos-header/page.html +12 -0
- data/_includes/centos-header.html +7 -0
- data/_includes/centos-nav.html +29 -0
- data/_includes/centos-styleguide.md +243 -0
- data/_layouts/centos-content/1col.html +9 -0
- data/_layouts/centos-content/2col.html +9 -0
- data/_layouts/centos-content/download-mirror.html +30 -0
- data/_layouts/centos-content/download.html +18 -0
- data/_layouts/centos-content/sponsors.html +21 -0
- data/_layouts/centos-home.html +39 -0
- data/_layouts/default.html +18 -0
- data/_layouts/{download/cards.html → page.html} +0 -2
- data/_layouts/post.html +5 -0
- data/_sass/bootstrap/_alert.scss +16 -32
- data/_sass/bootstrap/_badge.scss +31 -15
- data/_sass/bootstrap/_breadcrumb.scss +27 -23
- data/_sass/bootstrap/_button-group.scss +48 -32
- data/_sass/bootstrap/_buttons.scss +71 -145
- data/_sass/bootstrap/_card.scss +123 -75
- data/_sass/bootstrap/_carousel.scss +39 -68
- data/_sass/bootstrap/_close.scss +27 -53
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +71 -129
- data/_sass/bootstrap/_forms.scss +347 -9
- data/_sass/bootstrap/_functions.scss +23 -181
- data/_sass/bootstrap/_grid.scss +52 -18
- data/_sass/bootstrap/_images.scss +1 -1
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +48 -93
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +15 -10
- data/_sass/bootstrap/_modal.scss +112 -112
- data/_sass/bootstrap/_nav.scss +29 -103
- data/_sass/bootstrap/_navbar.scss +171 -136
- data/_sass/bootstrap/_pagination.scss +37 -72
- data/_sass/bootstrap/_popover.scss +73 -99
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +15 -36
- data/_sass/bootstrap/_reboot.scss +200 -333
- data/_sass/bootstrap/_root.scss +10 -177
- data/_sass/bootstrap/_spinners.scss +22 -52
- data/_sass/bootstrap/_tables.scss +115 -101
- data/_sass/bootstrap/_toasts.scss +27 -54
- data/_sass/bootstrap/_tooltip.scss +63 -67
- data/_sass/bootstrap/_transitions.scss +1 -8
- data/_sass/bootstrap/_type.scss +59 -40
- data/_sass/bootstrap/_utilities.scss +18 -806
- data/_sass/bootstrap/_variables.scss +611 -1222
- data/_sass/bootstrap/bootstrap-grid.scss +20 -53
- data/_sass/bootstrap/bootstrap-reboot.scss +7 -5
- data/_sass/bootstrap/bootstrap.scss +13 -21
- data/_sass/bootstrap/mixins/_alert.scss +6 -11
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +8 -10
- data/_sass/bootstrap/mixins/_box-shadow.scss +9 -13
- data/_sass/bootstrap/mixins/_breakpoints.scss +16 -20
- data/_sass/bootstrap/mixins/_buttons.scss +100 -60
- data/_sass/bootstrap/mixins/_caret.scss +27 -34
- data/_sass/bootstrap/mixins/_clearfix.scss +0 -2
- data/_sass/bootstrap/mixins/_deprecate.scss +0 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +78 -63
- data/_sass/bootstrap/mixins/_gradients.scss +11 -13
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +37 -119
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +21 -1
- data/_sass/bootstrap/mixins/_list-group.scss +2 -7
- data/_sass/bootstrap/mixins/_lists.scss +1 -1
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +19 -7
- data/_sass/bootstrap/mixins/_reset-text.scss +3 -3
- data/_sass/bootstrap/mixins/_resize.scss +0 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +0 -0
- data/_sass/bootstrap/mixins/_transition.scss +1 -1
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/{helpers → utilities}/_clearfix.scss +0 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +132 -276
- data/_sass/centos/_content.scss +101 -0
- data/_sass/centos/_datatable.scss +271 -0
- data/_sass/centos/_fonts.scss +1 -0
- data/_sass/centos/_footer.scss +49 -0
- data/_sass/centos/_header.scss +25 -0
- data/_sass/centos/_highlighter.scss +360 -0
- data/_sass/centos/_mixins.scss +4 -0
- data/_sass/centos/_nav.scss +10 -0
- data/_sass/centos/_rssfeeds.scss +17 -0
- data/_sass/centos/_variables.scss +111 -0
- data/_sass/centos/centos.scss +23 -0
- data/_sass/centos/content/_1col.scss +32 -0
- data/_sass/centos/content/_2col.scss +44 -0
- data/_sass/centos/content/_download.scss +17 -0
- data/_sass/centos/content/_sponsors.scss +9 -0
- data/_sass/centos/fonts/_montserrat.scss +256 -0
- data/_sass/centos/header/_home.scss +4 -0
- data/_sass/centos/header/_page.scss +4 -0
- data/_sass/centos/mixins/_content-card.scss +13 -0
- data/_sass/centos/mixins/_content-heading.scss +28 -0
- data/_sass/centos/mixins/_content-toc.scss +18 -0
- data/_sass/centos/mixins/_footer-link.scss +10 -0
- data/_sass/fontawesome/_animated.scss +20 -0
- data/_sass/fontawesome/_bordered-pulled.scss +20 -0
- data/_sass/fontawesome/_core.scss +21 -0
- data/_sass/fontawesome/_fixed-width.scss +6 -0
- data/_sass/fontawesome/_icons.scss +1462 -0
- data/_sass/fontawesome/_larger.scss +23 -0
- data/_sass/fontawesome/_list.scss +18 -0
- data/_sass/fontawesome/_mixins.scss +56 -0
- data/_sass/fontawesome/_rotated-flipped.scss +24 -0
- data/_sass/fontawesome/_screen-reader.scss +5 -0
- data/_sass/fontawesome/_shims.scss +2066 -0
- data/_sass/fontawesome/_stacked.scss +31 -0
- data/_sass/fontawesome/_variables.scss +1479 -0
- data/_sass/fontawesome/brands.scss +23 -0
- data/_sass/fontawesome/fontawesome.scss +16 -0
- data/_sass/fontawesome/regular.scss +23 -0
- data/_sass/fontawesome/solid.scss +24 -0
- data/_sass/fontawesome/v4-shims.scss +6 -0
- data/assets/css/centos.bootstrap.min.scss +4 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/Montserrat-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/Montserrat.css +327 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Black.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BlackItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Bold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-BoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLight.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ExtraLightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Italic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Light.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-LightItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Medium.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-MediumItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Regular.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBold.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-SemiBoldItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-Thin.woff2 +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff +0 -0
- data/assets/fonts/Montserrat/MontserratAlternates-ThinItalic.woff2 +0 -0
- data/assets/fonts/Montserrat/README.MD +35 -0
- data/assets/fonts/fa-brands-400.eot +0 -0
- data/assets/fonts/fa-brands-400.svg +3717 -0
- data/assets/fonts/fa-brands-400.ttf +0 -0
- data/assets/fonts/fa-brands-400.woff +0 -0
- data/assets/fonts/fa-brands-400.woff2 +0 -0
- data/assets/fonts/fa-regular-400.eot +0 -0
- data/assets/fonts/fa-regular-400.svg +801 -0
- data/assets/fonts/fa-regular-400.ttf +0 -0
- data/assets/fonts/fa-regular-400.woff +0 -0
- data/assets/fonts/fa-regular-400.woff2 +0 -0
- data/assets/fonts/fa-solid-900.eot +0 -0
- data/assets/fonts/fa-solid-900.svg +5028 -0
- data/assets/fonts/fa-solid-900.ttf +0 -0
- data/assets/fonts/fa-solid-900.woff +0 -0
- data/assets/fonts/fa-solid-900.woff2 +0 -0
- data/assets/img/centos-logo-white.png +0 -0
- data/assets/img/centos-motif.png +0 -0
- data/assets/img/favicon.png +0 -0
- data/assets/js/bootstrap.min.js +4 -4
- data/assets/js/bootstrap.min.js.map +1 -1
- data/assets/js/dataTables.bootstrap4.min.js +14 -0
- data/assets/js/jquery.dataTables.min.js +184 -0
- data/assets/js/jquery.min.js +2 -0
- data/assets/js/jquery.rss.js +11 -0
- data/assets/js/moment.min.js +7 -0
- metadata +238 -492
- data/_config.yml +0 -196
- data/_data/base/announcement_schema.yml +0 -49
- data/_data/base/artwork_schema.yml +0 -46
- data/_data/base/backtotop_schema.yml +0 -59
- data/_data/base/bits.yml +0 -96
- data/_data/base/bits_schema.yml +0 -185
- data/_data/base/breadcrumb_schema.yml +0 -27
- data/_data/base/breakingnews_schema.yml +0 -67
- data/_data/base/card_schema.yml +0 -146
- data/_data/base/color.yml +0 -1042
- data/_data/base/color_schema.yml +0 -1036
- data/_data/base/configuration_variables_schema.yml +0 -42
- data/_data/base/content.yml +0 -2
- data/_data/base/content_schema.yml +0 -26
- data/_data/base/copyright.yml +0 -12
- data/_data/base/copyright_schema.yml +0 -74
- data/_data/base/copyvalue_schema.yml +0 -49
- data/_data/base/datatable_schema.yml +0 -57
- data/_data/base/event_schema.yml +0 -130
- data/_data/base/fontawesome_schema.yml +0 -62
- data/_data/base/footer.yml +0 -9
- data/_data/base/footer_schema.yml +0 -55
- data/_data/base/head_schema.yml +0 -19
- data/_data/base/heading_anchor.yml +0 -2
- data/_data/base/heading_anchor_schema.yml +0 -37
- data/_data/base/highlight_schema.yml +0 -98
- data/_data/base/image_schema.yml +0 -34
- data/_data/base/languages.yml +0 -186
- data/_data/base/link_schema.yml +0 -187
- data/_data/base/locales_schema.yml +0 -158
- data/_data/base/navbar.yml +0 -20
- data/_data/base/navbar_schema.yml +0 -129
- data/_data/base/navindex_schema.yml +0 -67
- data/_data/base/ogp.yml +0 -24
- data/_data/base/ogp_schema.yml +0 -192
- data/_data/base/project.yml +0 -37
- data/_data/base/project_schema.yml +0 -124
- data/_data/base/script_schema.yml +0 -41
- data/_data/base/shortcut_schema.yml +0 -74
- data/_data/base/social.yml +0 -26
- data/_data/base/social_schema.yml +0 -57
- data/_data/base/sponsors.yml +0 -41
- data/_data/base/sponsors_schema.yml +0 -73
- data/_data/base/title_schema.yml +0 -49
- data/_data/base/toc_schema.yml +0 -114
- data/_data/download/cards.yml +0 -309
- data/_data/download/navbar.yml +0 -11
- data/_includes/base/announcement.html.liquid +0 -65
- data/_includes/base/artwork.html.liquid +0 -63
- data/_includes/base/backtotop.html.liquid +0 -73
- data/_includes/base/bits.html.liquid +0 -152
- data/_includes/base/breadcrumb.html.liquid +0 -77
- data/_includes/base/breakingnews.html.liquid +0 -90
- data/_includes/base/card.html.liquid +0 -110
- data/_includes/base/color-table.html.liquid +0 -33
- data/_includes/base/configuration_variables-nested.html.liquid +0 -98
- data/_includes/base/configuration_variables.html.liquid +0 -98
- data/_includes/base/content.html.liquid +0 -7
- data/_includes/base/copyright.html.liquid +0 -70
- data/_includes/base/copyvalue.html.liquid +0 -82
- data/_includes/base/datatable.html.liquid +0 -83
- data/_includes/base/event.html.liquid +0 -105
- data/_includes/base/fontawesome.html.liquid +0 -91
- data/_includes/base/footer.html.liquid +0 -69
- data/_includes/base/head.html.liquid +0 -135
- data/_includes/base/heading_anchor.html.liquid +0 -67
- data/_includes/base/highlight.html.liquid +0 -84
- data/_includes/base/image.html.liquid +0 -42
- data/_includes/base/link.html.liquid +0 -129
- data/_includes/base/locales.html.liquid +0 -78
- data/_includes/base/navbar.html.liquid +0 -121
- data/_includes/base/navindex.html.liquid +0 -200
- data/_includes/base/ogp.html.liquid +0 -144
- data/_includes/base/project.html.liquid +0 -104
- data/_includes/base/shortcut.html.liquid +0 -77
- data/_includes/base/social.html.liquid +0 -76
- data/_includes/base/sponsors-cards.html.liquid +0 -69
- data/_includes/base/sponsors-carousel.html.liquid +0 -91
- data/_includes/base/title.html.liquid +0 -65
- data/_includes/base/toc-generator.html.liquid +0 -189
- data/_includes/base/toc.html.liquid +0 -95
- data/_includes/download/cards-body-commands.html +0 -7
- data/_includes/download/cards-body-convert.html +0 -10
- data/_includes/download/cards-body-doc.html +0 -9
- data/_includes/download/cards-body-documentation.html +0 -11
- data/_includes/download/cards-body-eol.html +0 -16
- data/_includes/download/cards-body-mirrors.html +0 -8
- data/_includes/download/cards-body-screenshot.html +0 -26
- data/_includes/download/cards-body-screenshots.html +0 -32
- data/_includes/download/cards-body.html +0 -8
- data/_includes/download/cards-header-commands.html +0 -8
- data/_includes/download/cards-header-convert.html +0 -8
- data/_includes/download/cards-header-doc.html +0 -8
- data/_includes/download/cards-header-documentation.html +0 -8
- data/_includes/download/cards-header-eol.html +0 -8
- data/_includes/download/cards-header-mirrors.html +0 -13
- data/_includes/download/cards-header-screenshot.html +0 -8
- data/_includes/download/cards-header-screenshots.html +0 -8
- data/_includes/download/cards-header.html +0 -13
- data/_includes/download/cards.html +0 -120
- data/_layouts/base/default.html +0 -68
- data/_layouts/download/default.html +0 -7
- data/_layouts/people/default.html +0 -68
- data/_sass/base/_customization.scss +0 -331
- data/_sass/base/_light-dark.scss +0 -10
- data/_sass/base/_maps.scss +0 -104
- data/_sass/base/_variables.scss +0 -232
- data/_sass/bootstrap/_accordion.scss +0 -153
- data/_sass/bootstrap/_containers.scss +0 -41
- data/_sass/bootstrap/_helpers.scss +0 -12
- data/_sass/bootstrap/_maps.scss +0 -174
- data/_sass/bootstrap/_offcanvas.scss +0 -147
- data/_sass/bootstrap/_placeholders.scss +0 -51
- data/_sass/bootstrap/_variables-dark.scss +0 -102
- data/_sass/bootstrap/bootstrap-utilities.scss +0 -19
- data/_sass/bootstrap/forms/_floating-labels.scss +0 -97
- data/_sass/bootstrap/forms/_form-check.scss +0 -189
- data/_sass/bootstrap/forms/_form-control.scss +0 -214
- data/_sass/bootstrap/forms/_form-range.scss +0 -91
- data/_sass/bootstrap/forms/_form-select.scss +0 -80
- data/_sass/bootstrap/forms/_form-text.scss +0 -11
- data/_sass/bootstrap/forms/_input-group.scss +0 -132
- data/_sass/bootstrap/forms/_labels.scss +0 -36
- data/_sass/bootstrap/forms/_validation.scss +0 -12
- data/_sass/bootstrap/helpers/_color-bg.scss +0 -7
- data/_sass/bootstrap/helpers/_colored-links.scss +0 -30
- data/_sass/bootstrap/helpers/_focus-ring.scss +0 -5
- data/_sass/bootstrap/helpers/_icon-link.scss +0 -25
- data/_sass/bootstrap/helpers/_position.scss +0 -36
- data/_sass/bootstrap/helpers/_ratio.scss +0 -26
- data/_sass/bootstrap/helpers/_stacks.scss +0 -15
- data/_sass/bootstrap/helpers/_stretched-link.scss +0 -15
- data/_sass/bootstrap/helpers/_text-truncation.scss +0 -7
- data/_sass/bootstrap/helpers/_visually-hidden.scss +0 -8
- data/_sass/bootstrap/helpers/_vr.scss +0 -8
- data/_sass/bootstrap/mixins/_backdrop.scss +0 -14
- data/_sass/bootstrap/mixins/_banner.scss +0 -7
- data/_sass/bootstrap/mixins/_color-mode.scss +0 -21
- data/_sass/bootstrap/mixins/_color-scheme.scss +0 -7
- data/_sass/bootstrap/mixins/_container.scss +0 -11
- data/_sass/bootstrap/mixins/_table-variants.scss +0 -24
- data/_sass/bootstrap/mixins/_utilities.scss +0 -97
- data/_sass/bootstrap/mixins/_visually-hidden.scss +0 -38
- data/_sass/bootstrap/utilities/_api.scss +0 -47
- data/assets/css/base/stylesheet.min.scss +0 -35
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/favicon.svg +0 -1
- data/assets/img/anaconda-symbolic.svg +0 -1
- data/assets/img/anaconda.svg +0 -1
- data/assets/img/base/centos-colors.gpl +0 -55
- data/assets/img/base/example-ogp-image.svg +0 -297
- data/assets/img/base/example-sponsors-design.svg +0 -226
- data/assets/img/base/example-sponsors-logo-1.svg +0 -120
- data/assets/img/base/example-sponsors-logo-2.svg +0 -116
- data/assets/img/base/example-sponsors-logo-3.svg +0 -123
- data/assets/img/base/example-sponsors-logo-4.svg +0 -116
- data/assets/img/base/example-sponsors-logo-5.svg +0 -116
- data/assets/img/base/example-sponsors-logo-6.svg +0 -116
- data/assets/img/base/example-sponsors-logo-7.svg +0 -116
- data/assets/img/base/example-sponsors-logo-8.svg +0 -110
- data/assets/img/base/page-layout-default.svg +0 -1217
- data/assets/img/base/page-with-alert.svg +0 -383
- data/assets/img/base/page-with-announcement.svg +0 -956
- data/assets/img/base/page-with-artwork.svg +0 -1009
- data/assets/img/base/page-with-backtotop.svg +0 -1009
- data/assets/img/base/page-with-bits.svg +0 -891
- data/assets/img/base/page-with-breadcrumb.svg +0 -676
- data/assets/img/base/page-with-breakingnews.svg +0 -957
- data/assets/img/base/page-with-color.svg +0 -57
- data/assets/img/base/page-with-copyright.svg +0 -1018
- data/assets/img/base/page-with-copyvalue.svg +0 -57
- data/assets/img/base/page-with-datatable.svg +0 -857
- data/assets/img/base/page-with-event.svg +0 -518
- data/assets/img/base/page-with-fontawesome.svg +0 -147
- data/assets/img/base/page-with-footer.svg +0 -1018
- data/assets/img/base/page-with-heading.svg +0 -57
- data/assets/img/base/page-with-highlight.svg +0 -86
- data/assets/img/base/page-with-image.svg +0 -57
- data/assets/img/base/page-with-link.svg +0 -57
- data/assets/img/base/page-with-locales.svg +0 -1009
- data/assets/img/base/page-with-navbar.svg +0 -958
- data/assets/img/base/page-with-navindex.svg +0 -279
- data/assets/img/base/page-with-ogp.svg +0 -401
- data/assets/img/base/page-with-project.svg +0 -423
- data/assets/img/base/page-with-shortcut.svg +0 -937
- data/assets/img/base/page-with-social.svg +0 -937
- data/assets/img/base/page-with-sponsors.svg +0 -937
- data/assets/img/base/page-with-title.svg +0 -584
- data/assets/img/base/page-with-toc.svg +0 -399
- data/assets/img/base/screenshot-1200x600.svg +0 -114
- data/assets/img/centos-dynamicmsg-logo.svg +0 -1
- data/assets/img/centos-dynamicmsg-type.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitelogo.svg +0 -1
- data/assets/img/centos-dynamicmsg-whitetype.svg +0 -1
- data/assets/img/centos-gdm-whitelogo.svg +0 -1
- data/assets/img/centos-ipa-whiteheader.svg +0 -1
- data/assets/img/centos-logo-2bits.svg +0 -1
- data/assets/img/centos-logo.svg +0 -1
- data/assets/img/centos-message-logo.svg +0 -1
- data/assets/img/centos-poweredby-logo.svg +0 -1
- data/assets/img/centos-social-share.png +0 -0
- data/assets/img/centos-symbol-2bits.svg +0 -1
- data/assets/img/centos-symbol.svg +0 -1
- data/assets/img/centos-type.svg +0 -1
- data/assets/img/centos-vertical-logo.svg +0 -1
- data/assets/img/centos-vertical-message-logo.svg +0 -1
- data/assets/img/centos-whitelogo.svg +0 -1
- data/assets/img/download/centos-linux-7-2009-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-8-screenshot-n.png +0 -0
- data/assets/img/download/centos-stream-9-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-1.png +0 -0
- data/assets/img/download/distribution-release-screenshot-2.png +0 -0
- data/assets/img/download/distribution-release-screenshot-3.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.png +0 -0
- data/assets/img/download/distribution-release-screenshot-n.svg +0 -134
- data/assets/img/download/download.svg +0 -421
- data/assets/img/download/fig-the-downloads-cards-presentation-template.png +0 -0
- data/assets/img/people/page.svg +0 -900
- data/assets/img/people/page.webp +0 -0
- data/assets/img/people/username.webp +0 -0
- data/assets/js/base/backtotop.js +0 -20
- data/assets/js/base/copyvalue.js +0 -145
- data/assets/js/base/datatable.js +0 -41
- data/assets/js/base/heading-anchor.js +0 -108
- data/assets/js/base/highlight.js +0 -12
- data/assets/js/base/init-tooltips.js +0 -12
- data/assets/js/bootstrap.bundle.js +0 -6312
- data/assets/js/bootstrap.bundle.js.map +0 -1
- data/assets/js/bootstrap.bundle.min.js +0 -7
- data/assets/js/bootstrap.bundle.min.js.map +0 -1
- data/assets/js/bootstrap.esm.js +0 -4447
- data/assets/js/bootstrap.esm.js.map +0 -1
- data/assets/js/bootstrap.esm.min.js +0 -7
- data/assets/js/bootstrap.esm.min.js.map +0 -1
- data/assets/js/bootstrap.js +0 -4494
- data/assets/js/bootstrap.js.map +0 -1
- data/site.webmanifest +0 -11
|
@@ -1,13 +0,0 @@
|
|
|
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>
|
|
@@ -1,120 +0,0 @@
|
|
|
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 %}
|
data/_layouts/base/default.html
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
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>
|
|
@@ -1,68 +0,0 @@
|
|
|
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>
|
|
@@ -1,331 +0,0 @@
|
|
|
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
|
-
}
|
data/_sass/base/_light-dark.scss
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
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%)
|