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,279 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
width="232.20497mm"
|
|
6
|
-
height="100.54167mm"
|
|
7
|
-
viewBox="0 0 232.20497 100.54167"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.2 (ebf0e940d0, 2025-05-08)"
|
|
11
|
-
sodipodi:docname="page-with-navindex.svg"
|
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
-
<sodipodi:namedview
|
|
17
|
-
id="namedview1"
|
|
18
|
-
pagecolor="#ffffff"
|
|
19
|
-
bordercolor="#000000"
|
|
20
|
-
borderopacity="0.25"
|
|
21
|
-
inkscape:showpageshadow="2"
|
|
22
|
-
inkscape:pageopacity="0.0"
|
|
23
|
-
inkscape:pagecheckerboard="0"
|
|
24
|
-
inkscape:deskcolor="#d1d1d1"
|
|
25
|
-
inkscape:document-units="mm"
|
|
26
|
-
inkscape:zoom="1.036062"
|
|
27
|
-
inkscape:cx="246.60686"
|
|
28
|
-
inkscape:cy="195.45162"
|
|
29
|
-
inkscape:window-width="3440"
|
|
30
|
-
inkscape:window-height="1371"
|
|
31
|
-
inkscape:window-x="0"
|
|
32
|
-
inkscape:window-y="0"
|
|
33
|
-
inkscape:window-maximized="1"
|
|
34
|
-
inkscape:current-layer="layer1" />
|
|
35
|
-
<defs
|
|
36
|
-
id="defs1">
|
|
37
|
-
<clipPath
|
|
38
|
-
clipPathUnits="userSpaceOnUse"
|
|
39
|
-
id="clipPath849">
|
|
40
|
-
<path
|
|
41
|
-
id="path850"
|
|
42
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.10628;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
43
|
-
d="m 55.618325,83.265911 c -6.04539,0 -13.528005,3.532567 -20.244753,7.692778 v 86.719251 c 6.716748,-4.16008 14.199363,-7.69218 20.244753,-7.69218 14.701301,0 23.208023,20.89345 37.909957,20.89345 14.701618,0 23.208018,-20.89345 37.909638,-20.89345 14.70162,0 23.20803,20.89345 37.90933,20.89345 14.70193,0 23.20897,-20.89345 37.91059,-20.89345 14.70161,0 23.03038,21.1625 37.90964,20.89345 10.30301,-0.18611 24.51407,-11.04325 32.28116,-17.70421 V 86.455718 c -7.76709,6.66096 -21.97815,17.518102 -32.28116,17.704372 -14.87926,0.26889 -23.20803,-20.894179 -37.90964,-20.894179 -14.70162,0 -23.20866,20.894179 -37.91059,20.894179 -14.7013,0 -23.20771,-20.894179 -37.90933,-20.894179 -14.70162,0 -23.20802,20.894179 -37.909638,20.894179 -14.701934,0 -23.208656,-20.894179 -37.909957,-20.894179 z"
|
|
44
|
-
sodipodi:nodetypes="sccssssssccssssss" />
|
|
45
|
-
</clipPath>
|
|
46
|
-
<marker
|
|
47
|
-
style="overflow:visible"
|
|
48
|
-
id="Triangle-4"
|
|
49
|
-
refX="0"
|
|
50
|
-
refY="0"
|
|
51
|
-
orient="auto-start-reverse"
|
|
52
|
-
inkscape:stockid="Triangle arrow"
|
|
53
|
-
markerWidth="1"
|
|
54
|
-
markerHeight="1"
|
|
55
|
-
viewBox="0 0 1 1"
|
|
56
|
-
inkscape:isstock="true"
|
|
57
|
-
inkscape:collect="always"
|
|
58
|
-
preserveAspectRatio="xMidYMid">
|
|
59
|
-
<path
|
|
60
|
-
transform="scale(0.5)"
|
|
61
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
62
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
63
|
-
id="path135-4" />
|
|
64
|
-
</marker>
|
|
65
|
-
</defs>
|
|
66
|
-
<g
|
|
67
|
-
inkscape:label="Layer 1"
|
|
68
|
-
inkscape:groupmode="layer"
|
|
69
|
-
id="layer1"
|
|
70
|
-
transform="translate(-39.952311,-96.724857)">
|
|
71
|
-
<g
|
|
72
|
-
id="g856"
|
|
73
|
-
transform="translate(-4421.7264,-1060.6936)">
|
|
74
|
-
<rect
|
|
75
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.234193;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
76
|
-
id="navindex"
|
|
77
|
-
width="232.20497"
|
|
78
|
-
height="100.54167"
|
|
79
|
-
x="4461.6787"
|
|
80
|
-
y="1157.4185"
|
|
81
|
-
inkscape:export-filename="page-with-navindex.png"
|
|
82
|
-
inkscape:export-xdpi="96"
|
|
83
|
-
inkscape:export-ydpi="96" />
|
|
84
|
-
<g
|
|
85
|
-
id="g850"
|
|
86
|
-
transform="translate(9.0307466,4.844555)">
|
|
87
|
-
<g
|
|
88
|
-
id="g12-6"
|
|
89
|
-
transform="matrix(0.83707121,0,0,0.83707121,4437.8232,1088.1042)"
|
|
90
|
-
clip-path="url(#clipPath849)">
|
|
91
|
-
<rect
|
|
92
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
93
|
-
id="rect1-3"
|
|
94
|
-
width="20.700989"
|
|
95
|
-
height="20.700989"
|
|
96
|
-
x="69.227852"
|
|
97
|
-
y="18.23258" />
|
|
98
|
-
<rect
|
|
99
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
100
|
-
id="rect3-1"
|
|
101
|
-
width="20.700989"
|
|
102
|
-
height="20.700989"
|
|
103
|
-
x="169.95142"
|
|
104
|
-
y="18.23258" />
|
|
105
|
-
<rect
|
|
106
|
-
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
107
|
-
id="rect4"
|
|
108
|
-
width="20.700989"
|
|
109
|
-
height="20.700989"
|
|
110
|
-
x="33.538883"
|
|
111
|
-
y="72.915123" />
|
|
112
|
-
<rect
|
|
113
|
-
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
114
|
-
id="rect5-7"
|
|
115
|
-
width="20.700989"
|
|
116
|
-
height="20.700989"
|
|
117
|
-
x="69.227852"
|
|
118
|
-
y="72.915123" />
|
|
119
|
-
<rect
|
|
120
|
-
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
121
|
-
id="rect6-59"
|
|
122
|
-
width="20.700989"
|
|
123
|
-
height="20.700989"
|
|
124
|
-
x="105.23221"
|
|
125
|
-
y="72.915123" />
|
|
126
|
-
<rect
|
|
127
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
128
|
-
id="rect10-6"
|
|
129
|
-
width="20.700989"
|
|
130
|
-
height="20.700989"
|
|
131
|
-
x="169.95142"
|
|
132
|
-
y="72.915123" />
|
|
133
|
-
<path
|
|
134
|
-
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
135
|
-
d="M 145.17705,39.081755 V 157.69622"
|
|
136
|
-
id="path11-2" />
|
|
137
|
-
<path
|
|
138
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
139
|
-
d="m 108.8707,118.38796 v -10.80007 h 71.65062 v 10.80007"
|
|
140
|
-
id="path12-1"
|
|
141
|
-
sodipodi:nodetypes="cccc" />
|
|
142
|
-
<path
|
|
143
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
144
|
-
d="M 43.753033,72.520787 V 61.310592 h 71.650627 v 11.210195"
|
|
145
|
-
id="path13-7"
|
|
146
|
-
sodipodi:nodetypes="cccc" />
|
|
147
|
-
<path
|
|
148
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
149
|
-
d="M 79.578344,39.081755 V 72.520787"
|
|
150
|
-
id="path14-8"
|
|
151
|
-
sodipodi:nodetypes="cc" />
|
|
152
|
-
<path
|
|
153
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
154
|
-
d="M 180.30191,38.67329 V 72.517635"
|
|
155
|
-
id="path15-5"
|
|
156
|
-
sodipodi:nodetypes="cc" />
|
|
157
|
-
<rect
|
|
158
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
159
|
-
id="rect15-7"
|
|
160
|
-
width="20.700989"
|
|
161
|
-
height="20.700989"
|
|
162
|
-
x="79.943916"
|
|
163
|
-
y="169.51932" />
|
|
164
|
-
<rect
|
|
165
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
166
|
-
id="rect17"
|
|
167
|
-
width="20.700989"
|
|
168
|
-
height="20.700989"
|
|
169
|
-
x="151.79588"
|
|
170
|
-
y="169.51932" />
|
|
171
|
-
<path
|
|
172
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
173
|
-
d="m 90.477778,169.41766 v -11.50287 h 71.650632 v 11.20766"
|
|
174
|
-
id="path17"
|
|
175
|
-
sodipodi:nodetypes="cccc" />
|
|
176
|
-
<path
|
|
177
|
-
style="fill:none;stroke:#c795ba;stroke-width:1.32292;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Triangle-4)"
|
|
178
|
-
d="M 145.58274,39.183482 V 157.62119 h -19.36561 v 6.54027"
|
|
179
|
-
id="path19"
|
|
180
|
-
sodipodi:nodetypes="cccc" />
|
|
181
|
-
<rect
|
|
182
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
183
|
-
id="rect7-4"
|
|
184
|
-
width="20.700989"
|
|
185
|
-
height="20.700989"
|
|
186
|
-
x="99.33905"
|
|
187
|
-
y="118.7833" />
|
|
188
|
-
<rect
|
|
189
|
-
style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
190
|
-
id="rect8-1"
|
|
191
|
-
width="20.700989"
|
|
192
|
-
height="20.700989"
|
|
193
|
-
x="134.82655"
|
|
194
|
-
y="118.7833" />
|
|
195
|
-
<rect
|
|
196
|
-
style="opacity:1;fill:#f6edf4;stroke:#ecdce8;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
197
|
-
id="rect9-8"
|
|
198
|
-
width="20.700989"
|
|
199
|
-
height="20.700989"
|
|
200
|
-
x="169.50171"
|
|
201
|
-
y="118.7833" />
|
|
202
|
-
<rect
|
|
203
|
-
style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
|
|
204
|
-
id="rect16-5"
|
|
205
|
-
width="20.700989"
|
|
206
|
-
height="20.700989"
|
|
207
|
-
x="115.8699"
|
|
208
|
-
y="169.51932" />
|
|
209
|
-
<rect
|
|
210
|
-
style="fill:#f6edf4;stroke:#c795ba;stroke-width:1.32292;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
211
|
-
id="rect2"
|
|
212
|
-
width="20.700989"
|
|
213
|
-
height="20.700989"
|
|
214
|
-
x="134.82655"
|
|
215
|
-
y="18.23258" />
|
|
216
|
-
<rect
|
|
217
|
-
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
218
|
-
id="rect19-9"
|
|
219
|
-
width="20.700989"
|
|
220
|
-
height="20.700989"
|
|
221
|
-
x="186.73036"
|
|
222
|
-
y="169.72639" />
|
|
223
|
-
<rect
|
|
224
|
-
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
225
|
-
id="rect20-7"
|
|
226
|
-
width="20.700989"
|
|
227
|
-
height="20.700989"
|
|
228
|
-
x="258.58234"
|
|
229
|
-
y="169.72639" />
|
|
230
|
-
<path
|
|
231
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
232
|
-
d="m 197.26422,169.32952 v -11.20765 h 71.65063 v 11.20765"
|
|
233
|
-
id="path20-5"
|
|
234
|
-
sodipodi:nodetypes="cccc" />
|
|
235
|
-
<rect
|
|
236
|
-
style="opacity:1;fill:#ecdce8;stroke:#d9b9d1;stroke-width:0.79375;stroke-dasharray:none;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
237
|
-
id="rect21-3"
|
|
238
|
-
width="20.700989"
|
|
239
|
-
height="20.700989"
|
|
240
|
-
x="222.65634"
|
|
241
|
-
y="169.72639" />
|
|
242
|
-
<path
|
|
243
|
-
style="opacity:1;fill:none;stroke:#ecdce8;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
244
|
-
d="m 233.00684,169.32952 v -19.71728 h -52.54433 v -9.73098"
|
|
245
|
-
id="path21-8"
|
|
246
|
-
sodipodi:nodetypes="cccc" />
|
|
247
|
-
<path
|
|
248
|
-
style="fill:none;stroke:#b472a3;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
249
|
-
d="m 137.14103,34.171069 h 16.07205"
|
|
250
|
-
id="path22-8" />
|
|
251
|
-
<path
|
|
252
|
-
style="fill:none;stroke:#c795ba;stroke-width:0.79375;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
|
|
253
|
-
d="m 137.14103,134.72179 h 16.07205"
|
|
254
|
-
id="path23" />
|
|
255
|
-
<path
|
|
256
|
-
style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#c795ba;fill-opacity:1;stroke-width:0.689921"
|
|
257
|
-
d="m 148.78764,31.802704 -2.87927,-6.439258 h -1.47183 l -2.87007,6.439258 h 1.52703 l 0.57033,-1.379841 h 2.98965 l 0.57034,1.379841 z m -3.62438,-4.976627 1.02108,2.465316 h -2.04217 z"
|
|
258
|
-
id="text1"
|
|
259
|
-
aria-label="A" />
|
|
260
|
-
<path
|
|
261
|
-
style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#c795ba;stroke-width:0.689921"
|
|
262
|
-
d="m 147.14103,129.00501 c 0.52434,-0.27597 0.8555,-0.77271 0.8555,-1.41664 0,-1.00268 -0.8279,-1.6742 -2.43772,-1.6742 h -3.14604 v 6.43925 h 3.33002 c 1.6926,0 2.5757,-0.64392 2.5757,-1.75699 0,-0.80951 -0.45994,-1.36145 -1.17746,-1.59142 z m -1.7662,-1.96857 c 0.72672,0 1.12227,0.24837 1.12227,0.75431 0,0.50594 -0.39555,0.76351 -1.12227,0.76351 h -1.48103 v -1.51782 z m -1.48103,4.19471 v -1.59141 h 1.7386 c 0.77271,0 1.18667,0.25757 1.18667,0.8003 0,0.55194 -0.41396,0.79111 -1.18667,0.79111 z"
|
|
263
|
-
id="text2"
|
|
264
|
-
aria-label="B" />
|
|
265
|
-
<path
|
|
266
|
-
style="font-weight:bold;font-size:9.19894px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#d9b9d1;stroke-width:0.689921"
|
|
267
|
-
d="m 126.63435,183.19983 c 1.12227,0 2.05136,-0.40475 2.65849,-1.14986 l -0.95669,-0.8831 c -0.43235,0.50594 -0.97508,0.76351 -1.61901,0.76351 -1.20506,0 -2.06056,-0.8463 -2.06056,-2.06056 0,-1.21426 0.8555,-2.06056 2.06056,-2.06056 0.64393,0 1.18666,0.25757 1.61901,0.75431 l 0.95669,-0.8831 c -0.60713,-0.73592 -1.53622,-1.14067 -2.64929,-1.14067 -2.00537,0 -3.4956,1.38904 -3.4956,3.33002 0,1.94097 1.49023,3.33001 3.4864,3.33001 z"
|
|
268
|
-
id="text3"
|
|
269
|
-
aria-label="C" />
|
|
270
|
-
</g>
|
|
271
|
-
<path
|
|
272
|
-
id="path849"
|
|
273
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.926039;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
274
|
-
d="m 4484.3797,1157.8037 c -5.0604,0 -11.3239,2.957 -16.9463,6.4394 v 72.5902 c 5.6224,-3.4823 11.8859,-6.4389 16.9463,-6.4389 12.306,0 19.4268,17.4893 31.7333,17.4893 12.3063,0 19.4268,-17.4893 31.7331,-17.4893 12.3063,0 19.4268,17.4893 31.7328,17.4893 12.3066,0 19.4276,-17.4893 31.7339,-17.4893 12.3063,0 19.2781,17.7145 31.733,17.4893 8.6244,-0.1558 20.5201,-9.244 27.0217,-14.8197 v -72.5902 c -6.5016,5.5757 -18.3973,14.6639 -27.0217,14.8198 -12.4549,0.2251 -19.4267,-17.4899 -31.733,-17.4899 -12.3063,0 -19.4273,17.4899 -31.7339,17.4899 -12.306,0 -19.4265,-17.4899 -31.7328,-17.4899 -12.3063,0 -19.4268,17.4899 -31.7331,17.4899 -12.3065,0 -19.4273,-17.4899 -31.7333,-17.4899 z"
|
|
275
|
-
sodipodi:nodetypes="sccssssssccssssss" />
|
|
276
|
-
</g>
|
|
277
|
-
</g>
|
|
278
|
-
</g>
|
|
279
|
-
</svg>
|