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
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// Hover mixin and `$enable-hover-media-query` are deprecated.
|
|
2
|
+
//
|
|
3
|
+
// Originally added during our alphas and maintained during betas, this mixin was
|
|
4
|
+
// designed to prevent `:hover` stickiness on iOS-an issue where hover styles
|
|
5
|
+
// would persist after initial touch.
|
|
6
|
+
//
|
|
7
|
+
// For backward compatibility, we've kept these mixins and updated them to
|
|
8
|
+
// always return their regular pseudo-classes instead of a shimmed media query.
|
|
9
|
+
//
|
|
10
|
+
// Issue: https://github.com/twbs/bootstrap/issues/25195
|
|
11
|
+
|
|
12
|
+
@mixin hover() {
|
|
13
|
+
&:hover { @content; }
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@mixin hover-focus() {
|
|
17
|
+
&:hover,
|
|
18
|
+
&:focus {
|
|
19
|
+
@content;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@mixin plain-hover-focus() {
|
|
24
|
+
&,
|
|
25
|
+
&:hover,
|
|
26
|
+
&:focus {
|
|
27
|
+
@content;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@mixin hover-focus-active() {
|
|
32
|
+
&:hover,
|
|
33
|
+
&:focus,
|
|
34
|
+
&:active {
|
|
35
|
+
@content;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -7,10 +7,30 @@
|
|
|
7
7
|
//
|
|
8
8
|
// Keep images from scaling beyond the width of their parents.
|
|
9
9
|
|
|
10
|
-
@mixin img-fluid {
|
|
10
|
+
@mixin img-fluid() {
|
|
11
11
|
// Part 1: Set a maximum relative to the parent
|
|
12
12
|
max-width: 100%;
|
|
13
13
|
// Part 2: Override the height to auto, otherwise images will be stretched
|
|
14
14
|
// when setting a width and height attribute on the img element.
|
|
15
15
|
height: auto;
|
|
16
16
|
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
// Retina image
|
|
20
|
+
//
|
|
21
|
+
// Short retina mixin for setting background-image and -size.
|
|
22
|
+
|
|
23
|
+
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
|
|
24
|
+
background-image: url($file-1x);
|
|
25
|
+
|
|
26
|
+
// Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,
|
|
27
|
+
// but doesn't convert dppx=>dpi.
|
|
28
|
+
// There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.
|
|
29
|
+
// Compatibility info: https://caniuse.com/#feat=css-media-resolution
|
|
30
|
+
@media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx
|
|
31
|
+
only screen and (min-resolution: 2dppx) { // Standardized
|
|
32
|
+
background-image: url($file-2x);
|
|
33
|
+
background-size: $width-1x $height-1x;
|
|
34
|
+
}
|
|
35
|
+
@include deprecate("`img-retina()`", "v4.3.0", "v5");
|
|
36
|
+
}
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
@include deprecate("`list-group-item-variant()`", "v5.3.0", "v6.0.0");
|
|
2
|
-
|
|
3
1
|
// List Groups
|
|
4
2
|
|
|
5
|
-
// scss-docs-start list-group-mixin
|
|
6
3
|
@mixin list-group-item-variant($state, $background, $color) {
|
|
7
4
|
.list-group-item-#{$state} {
|
|
8
5
|
color: $color;
|
|
9
6
|
background-color: $background;
|
|
10
7
|
|
|
11
8
|
&.list-group-item-action {
|
|
12
|
-
|
|
13
|
-
&:focus {
|
|
9
|
+
@include hover-focus() {
|
|
14
10
|
color: $color;
|
|
15
|
-
background-color:
|
|
11
|
+
background-color: darken($background, 5%);
|
|
16
12
|
}
|
|
17
13
|
|
|
18
14
|
&.active {
|
|
@@ -23,4 +19,3 @@
|
|
|
23
19
|
}
|
|
24
20
|
}
|
|
25
21
|
}
|
|
26
|
-
// scss-docs-end list-group-mixin
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// Horizontal dividers
|
|
2
|
+
//
|
|
3
|
+
// Dividers (basically an hr) within dropdowns and nav lists
|
|
4
|
+
|
|
5
|
+
@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) {
|
|
6
|
+
height: 0;
|
|
7
|
+
margin: $margin-y 0;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
border-top: 1px solid $color;
|
|
10
|
+
@include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
|
|
11
|
+
}
|
|
@@ -1,10 +1,22 @@
|
|
|
1
1
|
// Pagination
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {
|
|
4
|
+
.page-link {
|
|
5
|
+
padding: $padding-y $padding-x;
|
|
6
|
+
@include font-size($font-size);
|
|
7
|
+
line-height: $line-height;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.page-item {
|
|
11
|
+
&:first-child {
|
|
12
|
+
.page-link {
|
|
13
|
+
@include border-left-radius($border-radius);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
&:last-child {
|
|
17
|
+
.page-link {
|
|
18
|
+
@include border-right-radius($border-radius);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
9
22
|
}
|
|
10
|
-
// scss-docs-end pagination-mixin
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@mixin reset-text {
|
|
1
|
+
@mixin reset-text() {
|
|
2
2
|
font-family: $font-family-base;
|
|
3
|
-
// We deliberately do NOT reset font-size or
|
|
3
|
+
// We deliberately do NOT reset font-size or word-wrap.
|
|
4
4
|
font-style: normal;
|
|
5
5
|
font-weight: $font-weight-normal;
|
|
6
6
|
line-height: $line-height-base;
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
text-transform: none;
|
|
12
12
|
letter-spacing: normal;
|
|
13
13
|
word-break: normal;
|
|
14
|
-
white-space: normal;
|
|
15
14
|
word-spacing: normal;
|
|
15
|
+
white-space: normal;
|
|
16
16
|
line-break: auto;
|
|
17
17
|
}
|
|
File without changes
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// Only display content to screen readers
|
|
2
|
+
//
|
|
3
|
+
// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
|
|
4
|
+
// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
|
|
5
|
+
|
|
6
|
+
@mixin sr-only() {
|
|
7
|
+
position: absolute;
|
|
8
|
+
width: 1px;
|
|
9
|
+
height: 1px;
|
|
10
|
+
padding: 0;
|
|
11
|
+
margin: -1px; // Fix for https://github.com/twbs/bootstrap/issues/25686
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
clip: rect(0, 0, 0, 0);
|
|
14
|
+
white-space: nowrap;
|
|
15
|
+
border: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// Use in conjunction with .sr-only to only display content when it's focused.
|
|
19
|
+
//
|
|
20
|
+
// Useful for "Skip to main content" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
|
21
|
+
//
|
|
22
|
+
// Credit: HTML5 Boilerplate
|
|
23
|
+
|
|
24
|
+
@mixin sr-only-focusable() {
|
|
25
|
+
&:active,
|
|
26
|
+
&:focus {
|
|
27
|
+
position: static;
|
|
28
|
+
width: auto;
|
|
29
|
+
height: auto;
|
|
30
|
+
overflow: visible;
|
|
31
|
+
clip: auto;
|
|
32
|
+
white-space: normal;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// Tables
|
|
2
|
+
|
|
3
|
+
@mixin table-row-variant($state, $background, $border: null) {
|
|
4
|
+
// Exact selectors below required to override `.table-striped` and prevent
|
|
5
|
+
// inheritance to nested tables.
|
|
6
|
+
.table-#{$state} {
|
|
7
|
+
&,
|
|
8
|
+
> th,
|
|
9
|
+
> td {
|
|
10
|
+
background-color: $background;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@if $border != null {
|
|
14
|
+
th,
|
|
15
|
+
td,
|
|
16
|
+
thead th,
|
|
17
|
+
tbody + tbody {
|
|
18
|
+
border-color: $border;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Hover states for `.table-hover`
|
|
24
|
+
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
|
25
|
+
.table-hover {
|
|
26
|
+
$hover-background: darken($background, 5%);
|
|
27
|
+
|
|
28
|
+
.table-#{$state} {
|
|
29
|
+
@include hover() {
|
|
30
|
+
background-color: $hover-background;
|
|
31
|
+
|
|
32
|
+
> td,
|
|
33
|
+
> th {
|
|
34
|
+
background-color: $hover-background;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
// Typography
|
|
4
|
+
|
|
5
|
+
@mixin text-emphasis-variant($parent, $color, $ignore-warning: false) {
|
|
6
|
+
#{$parent} {
|
|
7
|
+
color: $color !important;
|
|
8
|
+
}
|
|
9
|
+
@if $emphasized-link-hover-darken-percentage != 0 {
|
|
10
|
+
a#{$parent} {
|
|
11
|
+
@include hover-focus() {
|
|
12
|
+
color: darken($color, $emphasized-link-hover-darken-percentage) !important;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
@include deprecate("`text-emphasis-variant()`", "v4.4.0", "v5", $ignore-warning);
|
|
17
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// CSS image replacement
|
|
2
|
+
@mixin text-hide($ignore-warning: false) {
|
|
3
|
+
// stylelint-disable-next-line font-family-no-missing-generic-family-keyword
|
|
4
|
+
font: 0/0 a;
|
|
5
|
+
color: transparent;
|
|
6
|
+
text-shadow: none;
|
|
7
|
+
background-color: transparent;
|
|
8
|
+
border: 0;
|
|
9
|
+
|
|
10
|
+
@include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
|
|
11
|
+
}
|
|
File without changes
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
transition: $transition;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
@if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {
|
|
20
|
+
@if $enable-prefers-reduced-motion-media-query and nth($transition, 1) != null and nth($transition, 1) != none {
|
|
21
21
|
@media (prefers-reduced-motion: reduce) {
|
|
22
22
|
transition: none;
|
|
23
23
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
.align-baseline { vertical-align: baseline !important; } // Browser default
|
|
4
|
+
.align-top { vertical-align: top !important; }
|
|
5
|
+
.align-middle { vertical-align: middle !important; }
|
|
6
|
+
.align-bottom { vertical-align: bottom !important; }
|
|
7
|
+
.align-text-bottom { vertical-align: text-bottom !important; }
|
|
8
|
+
.align-text-top { vertical-align: text-top !important; }
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
@each $color, $value in $theme-colors {
|
|
4
|
+
@include bg-variant(".bg-#{$color}", $value, true);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
@if $enable-gradients {
|
|
8
|
+
@each $color, $value in $theme-colors {
|
|
9
|
+
@include bg-gradient-variant(".bg-gradient-#{$color}", $value, true);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.bg-white {
|
|
14
|
+
background-color: $white !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.bg-transparent {
|
|
18
|
+
background-color: transparent !important;
|
|
19
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
// stylelint-disable property-disallowed-list, declaration-no-important
|
|
2
|
+
|
|
3
|
+
//
|
|
4
|
+
// Border
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
.border { border: $border-width solid $border-color !important; }
|
|
8
|
+
.border-top { border-top: $border-width solid $border-color !important; }
|
|
9
|
+
.border-right { border-right: $border-width solid $border-color !important; }
|
|
10
|
+
.border-bottom { border-bottom: $border-width solid $border-color !important; }
|
|
11
|
+
.border-left { border-left: $border-width solid $border-color !important; }
|
|
12
|
+
|
|
13
|
+
.border-0 { border: 0 !important; }
|
|
14
|
+
.border-top-0 { border-top: 0 !important; }
|
|
15
|
+
.border-right-0 { border-right: 0 !important; }
|
|
16
|
+
.border-bottom-0 { border-bottom: 0 !important; }
|
|
17
|
+
.border-left-0 { border-left: 0 !important; }
|
|
18
|
+
|
|
19
|
+
@each $color, $value in $theme-colors {
|
|
20
|
+
.border-#{$color} {
|
|
21
|
+
border-color: $value !important;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.border-white {
|
|
26
|
+
border-color: $white !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
//
|
|
30
|
+
// Border-radius
|
|
31
|
+
//
|
|
32
|
+
|
|
33
|
+
.rounded-sm {
|
|
34
|
+
border-radius: $border-radius-sm !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.rounded {
|
|
38
|
+
border-radius: $border-radius !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.rounded-top {
|
|
42
|
+
border-top-left-radius: $border-radius !important;
|
|
43
|
+
border-top-right-radius: $border-radius !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.rounded-right {
|
|
47
|
+
border-top-right-radius: $border-radius !important;
|
|
48
|
+
border-bottom-right-radius: $border-radius !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.rounded-bottom {
|
|
52
|
+
border-bottom-right-radius: $border-radius !important;
|
|
53
|
+
border-bottom-left-radius: $border-radius !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.rounded-left {
|
|
57
|
+
border-top-left-radius: $border-radius !important;
|
|
58
|
+
border-bottom-left-radius: $border-radius !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.rounded-lg {
|
|
62
|
+
border-radius: $border-radius-lg !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.rounded-circle {
|
|
66
|
+
border-radius: 50% !important;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.rounded-pill {
|
|
70
|
+
border-radius: $rounded-pill !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.rounded-0 {
|
|
74
|
+
border-radius: 0 !important;
|
|
75
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
//
|
|
4
|
+
// Utilities for common `display` values
|
|
5
|
+
//
|
|
6
|
+
|
|
7
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
8
|
+
@include media-breakpoint-up($breakpoint) {
|
|
9
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
10
|
+
|
|
11
|
+
@each $value in $displays {
|
|
12
|
+
.d#{$infix}-#{$value} { display: $value !important; }
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
//
|
|
19
|
+
// Utilities for toggling `display` in print
|
|
20
|
+
//
|
|
21
|
+
|
|
22
|
+
@media print {
|
|
23
|
+
@each $value in $displays {
|
|
24
|
+
.d-print-#{$value} { display: $value !important; }
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
// Credit: Nicolas Gallagher and SUIT CSS.
|
|
2
|
+
|
|
3
|
+
.embed-responsive {
|
|
4
|
+
position: relative;
|
|
5
|
+
display: block;
|
|
6
|
+
width: 100%;
|
|
7
|
+
padding: 0;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
|
|
10
|
+
&::before {
|
|
11
|
+
display: block;
|
|
12
|
+
content: "";
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.embed-responsive-item,
|
|
16
|
+
iframe,
|
|
17
|
+
embed,
|
|
18
|
+
object,
|
|
19
|
+
video {
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 0;
|
|
22
|
+
bottom: 0;
|
|
23
|
+
left: 0;
|
|
24
|
+
width: 100%;
|
|
25
|
+
height: 100%;
|
|
26
|
+
border: 0;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@each $embed-responsive-aspect-ratio in $embed-responsive-aspect-ratios {
|
|
31
|
+
$embed-responsive-aspect-ratio-x: nth($embed-responsive-aspect-ratio, 1);
|
|
32
|
+
$embed-responsive-aspect-ratio-y: nth($embed-responsive-aspect-ratio, 2);
|
|
33
|
+
|
|
34
|
+
.embed-responsive-#{$embed-responsive-aspect-ratio-x}by#{$embed-responsive-aspect-ratio-y} {
|
|
35
|
+
&::before {
|
|
36
|
+
padding-top: percentage($embed-responsive-aspect-ratio-y / $embed-responsive-aspect-ratio-x);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
// Flex variation
|
|
4
|
+
//
|
|
5
|
+
// Custom styles for additional flex alignment options.
|
|
6
|
+
|
|
7
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
8
|
+
@include media-breakpoint-up($breakpoint) {
|
|
9
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
10
|
+
|
|
11
|
+
.flex#{$infix}-row { flex-direction: row !important; }
|
|
12
|
+
.flex#{$infix}-column { flex-direction: column !important; }
|
|
13
|
+
.flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
|
|
14
|
+
.flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }
|
|
15
|
+
|
|
16
|
+
.flex#{$infix}-wrap { flex-wrap: wrap !important; }
|
|
17
|
+
.flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
|
|
18
|
+
.flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
|
|
19
|
+
.flex#{$infix}-fill { flex: 1 1 auto !important; }
|
|
20
|
+
.flex#{$infix}-grow-0 { flex-grow: 0 !important; }
|
|
21
|
+
.flex#{$infix}-grow-1 { flex-grow: 1 !important; }
|
|
22
|
+
.flex#{$infix}-shrink-0 { flex-shrink: 0 !important; }
|
|
23
|
+
.flex#{$infix}-shrink-1 { flex-shrink: 1 !important; }
|
|
24
|
+
|
|
25
|
+
.justify-content#{$infix}-start { justify-content: flex-start !important; }
|
|
26
|
+
.justify-content#{$infix}-end { justify-content: flex-end !important; }
|
|
27
|
+
.justify-content#{$infix}-center { justify-content: center !important; }
|
|
28
|
+
.justify-content#{$infix}-between { justify-content: space-between !important; }
|
|
29
|
+
.justify-content#{$infix}-around { justify-content: space-around !important; }
|
|
30
|
+
|
|
31
|
+
.align-items#{$infix}-start { align-items: flex-start !important; }
|
|
32
|
+
.align-items#{$infix}-end { align-items: flex-end !important; }
|
|
33
|
+
.align-items#{$infix}-center { align-items: center !important; }
|
|
34
|
+
.align-items#{$infix}-baseline { align-items: baseline !important; }
|
|
35
|
+
.align-items#{$infix}-stretch { align-items: stretch !important; }
|
|
36
|
+
|
|
37
|
+
.align-content#{$infix}-start { align-content: flex-start !important; }
|
|
38
|
+
.align-content#{$infix}-end { align-content: flex-end !important; }
|
|
39
|
+
.align-content#{$infix}-center { align-content: center !important; }
|
|
40
|
+
.align-content#{$infix}-between { align-content: space-between !important; }
|
|
41
|
+
.align-content#{$infix}-around { align-content: space-around !important; }
|
|
42
|
+
.align-content#{$infix}-stretch { align-content: stretch !important; }
|
|
43
|
+
|
|
44
|
+
.align-self#{$infix}-auto { align-self: auto !important; }
|
|
45
|
+
.align-self#{$infix}-start { align-self: flex-start !important; }
|
|
46
|
+
.align-self#{$infix}-end { align-self: flex-end !important; }
|
|
47
|
+
.align-self#{$infix}-center { align-self: center !important; }
|
|
48
|
+
.align-self#{$infix}-baseline { align-self: baseline !important; }
|
|
49
|
+
.align-self#{$infix}-stretch { align-self: stretch !important; }
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
4
|
+
@include media-breakpoint-up($breakpoint) {
|
|
5
|
+
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
6
|
+
|
|
7
|
+
.float#{$infix}-left { float: left !important; }
|
|
8
|
+
.float#{$infix}-right { float: right !important; }
|
|
9
|
+
.float#{$infix}-none { float: none !important; }
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
// Common values
|
|
4
|
+
@each $position in $positions {
|
|
5
|
+
.position-#{$position} { position: $position !important; }
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
// Shorthand
|
|
9
|
+
|
|
10
|
+
.fixed-top {
|
|
11
|
+
position: fixed;
|
|
12
|
+
top: 0;
|
|
13
|
+
right: 0;
|
|
14
|
+
left: 0;
|
|
15
|
+
z-index: $zindex-fixed;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.fixed-bottom {
|
|
19
|
+
position: fixed;
|
|
20
|
+
right: 0;
|
|
21
|
+
bottom: 0;
|
|
22
|
+
left: 0;
|
|
23
|
+
z-index: $zindex-fixed;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.sticky-top {
|
|
27
|
+
@supports (position: sticky) {
|
|
28
|
+
position: sticky;
|
|
29
|
+
top: 0;
|
|
30
|
+
z-index: $zindex-sticky;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// stylelint-disable declaration-no-important
|
|
2
|
+
|
|
3
|
+
// Width and height
|
|
4
|
+
|
|
5
|
+
@each $prop, $abbrev in (width: w, height: h) {
|
|
6
|
+
@each $size, $length in $sizes {
|
|
7
|
+
.#{$abbrev}-#{$size} { #{$prop}: $length !important; }
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.mw-100 { max-width: 100% !important; }
|
|
12
|
+
.mh-100 { max-height: 100% !important; }
|
|
13
|
+
|
|
14
|
+
// Viewport additional helpers
|
|
15
|
+
|
|
16
|
+
.min-vw-100 { min-width: 100vw !important; }
|
|
17
|
+
.min-vh-100 { min-height: 100vh !important; }
|
|
18
|
+
|
|
19
|
+
.vw-100 { width: 100vw !important; }
|
|
20
|
+
.vh-100 { height: 100vh !important; }
|