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,35 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
---
|
|
3
|
-
|
|
4
|
-
/*!
|
|
5
|
-
* CentOS Customization
|
|
6
|
-
* Copyright 2025 Alain Reguera Delgado
|
|
7
|
-
* Licensed under MIT License (https://opensource.org/licenses/MIT)
|
|
8
|
-
*
|
|
9
|
-
* Customized CSS extensions for the CentOS project built on top of Bootstrap.
|
|
10
|
-
* This stylesheet adds CentOS-specific styling, components, and utilities
|
|
11
|
-
* to the Bootstrap framework for use in CentOS web properties.
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
// 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
|
|
15
|
-
@import "bootstrap/functions";
|
|
16
|
-
|
|
17
|
-
// 2. Include any default variable overrides here
|
|
18
|
-
@import "base/variables";
|
|
19
|
-
|
|
20
|
-
// 3. Import Bootstrap's default variables and maps.
|
|
21
|
-
// This defines variables like $theme-colors and $utilities.
|
|
22
|
-
@import "bootstrap/variables";
|
|
23
|
-
@import "bootstrap/variables-dark";
|
|
24
|
-
@import "bootstrap/maps";
|
|
25
|
-
@import "bootstrap/mixins";
|
|
26
|
-
@import "bootstrap/utilities";
|
|
27
|
-
|
|
28
|
-
// 4. Import your custom maps. They can now safely use the defined variables.
|
|
29
|
-
@import "base/maps";
|
|
30
|
-
|
|
31
|
-
// 5. Include remainder of required parts
|
|
32
|
-
@import "bootstrap/bootstrap";
|
|
33
|
-
|
|
34
|
-
// 6. Add additional custom code here
|
|
35
|
-
@import "base/customization";
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/icons/favicon-16.png
DELETED
|
Binary file
|
data/assets/icons/favicon-32.png
DELETED
|
Binary file
|
data/assets/icons/favicon.ico
DELETED
|
Binary file
|
data/assets/icons/favicon.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 42.333 42.333"><g transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity: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:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 132.292 132.292"><defs><linearGradient xlink:href="#a" id="b" x1="88.596" x2="536.596" y1="-449.394" y2="-449.394" gradientTransform="matrix(.23214 0 0 .32895 -8.567 435.827)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#acabae"/><stop offset=".038" stop-color="#f7f7f7"/><stop offset=".077" stop-color="#deddda"/><stop offset=".923" stop-color="#b0afad"/><stop offset=".962" stop-color="#c0bfbc"/><stop offset="1" stop-color="#77767b"/></linearGradient></defs><g transform="translate(0 -177.767)scale(1.03353)"><rect width="104" height="100" x="12" y="188" fill="url(#b)" rx="8" ry="8" style="fill:url(#b);marker:none"/><rect width="104" height="100" x="12" y="184" fill="#fff" rx="8" ry="8" style="marker:none"/><g color="#000" transform="translate(-104 -365.5)"><rect width="80" height="8" x="128" y="625.5" fill="#e1dedb" overflow="visible" rx="4" ry="4" style="marker:none"/><rect width="48.125" height="8" x="128" y="625.5" fill="#3584e4" overflow="visible" rx="4" ry="4" style="marker:none;fill:#000;fill-opacity:1"/></g></g><g transform="rotate(45 -279.112 -871.9)scale(1.5925)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:#000;fill-opacity: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:#000"/><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:#fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000"/></g></svg>
|
data/assets/img/anaconda.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="500" height="500" viewBox="0 0 132.292 132.292"><defs><linearGradient xlink:href="#a" id="b" x1="88.596" x2="536.596" y1="-449.394" y2="-449.394" gradientTransform="matrix(.23214 0 0 .32895 -8.567 435.827)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#acabae"/><stop offset=".038" stop-color="#f7f7f7"/><stop offset=".077" stop-color="#deddda"/><stop offset=".923" stop-color="#b0afad"/><stop offset=".962" stop-color="#c0bfbc"/><stop offset="1" stop-color="#77767b"/></linearGradient></defs><g transform="translate(0 -177.767)scale(1.03353)"><rect width="104" height="100" x="12" y="188" fill="url(#b)" rx="8" ry="8" style="fill:url(#b);marker:none"/><rect width="104" height="100" x="12" y="184" fill="#fff" rx="8" ry="8" style="marker:none"/><g color="#000" transform="translate(-104 -365.5)"><rect width="80" height="8" x="128" y="625.5" fill="#e1dedb" overflow="visible" rx="4" ry="4" style="marker:none"/><rect width="48.125" height="8" x="128" y="625.5" fill="#3584e4" overflow="visible" rx="4" ry="4" style="marker:none;fill:#a14f8c;fill-opacity:1"/></g></g><g transform="matrix(1.59252 0 0 1.5925 -551.95 421.964)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity: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:#000" transform="rotate(-15)"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="translate(-53.772 39.325)scale(1.15)"/></g></svg>
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
GIMP Palette
|
|
2
|
-
Name: CentOS Colors
|
|
3
|
-
# CentOS Design System Color Palette
|
|
4
|
-
# Generated from src/YAML/color.yml
|
|
5
|
-
#
|
|
6
|
-
255 255 255 #FFFFFF - white
|
|
7
|
-
0 0 0 #000000 - black
|
|
8
|
-
74 132 0 #4A8400 - Success
|
|
9
|
-
200 106 0 #C86A00 - Warning
|
|
10
|
-
198 40 40 #C62828 - Danger
|
|
11
|
-
25 118 210 #1976D2 - Info
|
|
12
|
-
246 237 244 #F6EDF4 - centos-purple-50
|
|
13
|
-
236 220 232 #ECDCE8 - centos-purple-100
|
|
14
|
-
217 185 209 #D9B9D1 - centos-purple-200
|
|
15
|
-
199 149 186 #C795BA - centos-purple-300
|
|
16
|
-
180 114 163 #B472A3 - centos-purple-400
|
|
17
|
-
161 79 140 #A14F8C - centos-purple-500
|
|
18
|
-
132 64 114 #844072 - centos-purple-600
|
|
19
|
-
103 50 89 #673259 - centos-purple-700
|
|
20
|
-
76 34 65 #4C2241 - centos-purple-800
|
|
21
|
-
71 17 57 #471139 - centos-purple-900
|
|
22
|
-
34 6 27 #22061B - centos-purple-950
|
|
23
|
-
253 246 233 #FDF6E9 - centos-orange-50
|
|
24
|
-
252 237 211 #FCEDD3 - centos-orange-100
|
|
25
|
-
249 220 167 #F9DCA7 - centos-orange-200
|
|
26
|
-
245 202 124 #F5CA7C - centos-orange-300
|
|
27
|
-
242 185 80 #F2B950 - centos-orange-400
|
|
28
|
-
239 167 36 #EFA724 - centos-orange-500
|
|
29
|
-
209 140 15 #D18C0F - centos-orange-600
|
|
30
|
-
163 109 11 #A36D0B - centos-orange-700
|
|
31
|
-
122 79 3 #7A4F03 - centos-orange-800
|
|
32
|
-
95 61 0 #5F3D00 - centos-orange-900
|
|
33
|
-
40 26 0 #281A00 - centos-orange-950
|
|
34
|
-
233 233 241 #E9E9F1 - centos-blue-50
|
|
35
|
-
212 211 228 #D4D3E4 - centos-blue-100
|
|
36
|
-
168 168 201 #A8A8C9 - centos-blue-200
|
|
37
|
-
125 124 173 #7D7CAD - centos-blue-300
|
|
38
|
-
81 81 146 #515192 - centos-blue-400
|
|
39
|
-
38 37 119 #262577 - centos-blue-500
|
|
40
|
-
31 30 99 #1F1E63 - centos-blue-600
|
|
41
|
-
25 24 79 #19184F - centos-blue-700
|
|
42
|
-
16 16 61 #10103D - centos-blue-800
|
|
43
|
-
2 1 70 #020146 - centos-blue-900
|
|
44
|
-
0 0 40 #000028 - centos-blue-950
|
|
45
|
-
245 250 234 #F5FAEA - centos-green-50
|
|
46
|
-
235 245 212 #EBF5D4 - centos-green-100
|
|
47
|
-
215 235 170 #D7EBAA - centos-green-200
|
|
48
|
-
196 225 127 #C4E17F - centos-green-300
|
|
49
|
-
176 215 85 #B0D755 - centos-green-400
|
|
50
|
-
156 205 42 #9CCD2A - centos-green-500
|
|
51
|
-
128 168 34 #80A822 - centos-green-600
|
|
52
|
-
109 144 29 #6D901D - centos-green-700
|
|
53
|
-
73 98 15 #49620F - centos-green-800
|
|
54
|
-
63 90 0 #3F5A00 - centos-green-900
|
|
55
|
-
28 40 0 #1C2800 - centos-green-950
|
|
@@ -1,297 +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="784.20868"
|
|
6
|
-
height="468.31464"
|
|
7
|
-
viewBox="0 0 207.48855 123.90824"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.4 (dcaf3e7d9e, 2026-05-05)"
|
|
11
|
-
sodipodi:docname="example-ogp-image.svg"
|
|
12
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
-
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
15
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
-
xmlns:svg="http://www.w3.org/2000/svg">
|
|
17
|
-
<sodipodi:namedview
|
|
18
|
-
id="namedview1"
|
|
19
|
-
pagecolor="#ffffff"
|
|
20
|
-
bordercolor="#000000"
|
|
21
|
-
borderopacity="0.25"
|
|
22
|
-
inkscape:showpageshadow="false"
|
|
23
|
-
inkscape:pageopacity="0.0"
|
|
24
|
-
inkscape:pagecheckerboard="false"
|
|
25
|
-
inkscape:deskcolor="#d1d1d1"
|
|
26
|
-
inkscape:document-units="px"
|
|
27
|
-
borderlayer="false"
|
|
28
|
-
showborder="false"
|
|
29
|
-
inkscape:zoom="1.4142136"
|
|
30
|
-
inkscape:cx="396.33334"
|
|
31
|
-
inkscape:cy="304.40946"
|
|
32
|
-
inkscape:window-width="3440"
|
|
33
|
-
inkscape:window-height="1403"
|
|
34
|
-
inkscape:window-x="0"
|
|
35
|
-
inkscape:window-y="0"
|
|
36
|
-
inkscape:window-maximized="1"
|
|
37
|
-
inkscape:current-layer="layer1"
|
|
38
|
-
showgrid="false" />
|
|
39
|
-
<defs
|
|
40
|
-
id="defs1">
|
|
41
|
-
<marker
|
|
42
|
-
style="overflow:visible"
|
|
43
|
-
id="Triangle"
|
|
44
|
-
refX="0"
|
|
45
|
-
refY="0"
|
|
46
|
-
orient="auto-start-reverse"
|
|
47
|
-
inkscape:stockid="Triangle arrow"
|
|
48
|
-
markerWidth="1"
|
|
49
|
-
markerHeight="1"
|
|
50
|
-
viewBox="0 0 1 1"
|
|
51
|
-
inkscape:isstock="true"
|
|
52
|
-
inkscape:collect="always"
|
|
53
|
-
preserveAspectRatio="xMidYMid">
|
|
54
|
-
<path
|
|
55
|
-
transform="scale(0.5)"
|
|
56
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
57
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
58
|
-
id="path135" />
|
|
59
|
-
</marker>
|
|
60
|
-
<marker
|
|
61
|
-
style="overflow:visible"
|
|
62
|
-
id="Triangle-7"
|
|
63
|
-
refX="0"
|
|
64
|
-
refY="0"
|
|
65
|
-
orient="auto-start-reverse"
|
|
66
|
-
inkscape:stockid="Triangle arrow"
|
|
67
|
-
markerWidth="1"
|
|
68
|
-
markerHeight="1"
|
|
69
|
-
viewBox="0 0 1 1"
|
|
70
|
-
inkscape:isstock="true"
|
|
71
|
-
inkscape:collect="always"
|
|
72
|
-
preserveAspectRatio="xMidYMid">
|
|
73
|
-
<path
|
|
74
|
-
transform="scale(0.5)"
|
|
75
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
76
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
77
|
-
id="path135-5" />
|
|
78
|
-
</marker>
|
|
79
|
-
<clipPath
|
|
80
|
-
clipPathUnits="userSpaceOnUse"
|
|
81
|
-
id="clipPath28">
|
|
82
|
-
<path
|
|
83
|
-
id="path29"
|
|
84
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.33797;stroke-linejoin:bevel;stroke-dasharray:none;paint-order:fill markers stroke;stop-color:#000000"
|
|
85
|
-
d="m 306.371,-325.03536 c -8.65176,8.97009 -11.52002,30.40853 -12.46598,42.74731 l 89.64143,89.64143 c 2.18643,-9.3018 5.56546,-18.72181 10.73522,-23.89156 12.57262,-12.57263 37.71574,-1.97899 50.28856,-14.55181 12.57279,-12.57279 1.97911,-37.71587 14.55184,-50.28859 12.57274,-12.57274 37.71593,-1.97918 50.28858,-14.55183 12.57282,-12.57282 1.97974,-37.7165 14.55249,-50.28924 12.57276,-12.57276 37.79402,-1.59733 50.28856,-14.55181 8.65178,-8.97012 11.52005,-30.40856 12.46598,-42.74732 l -89.64207,-89.64207 c -2.18647,9.30184 -5.5648,18.72243 -10.73455,23.89218 -12.57265,12.57265 -37.7164,1.97965 -50.28925,14.55249 -12.57272,12.57272 -1.97908,37.71585 -14.55183,50.28859 -12.57272,12.57272 -37.71594,1.97918 -50.28856,14.55181 -12.57288,12.57288 -1.97915,37.7159 -14.55183,50.28858 -12.57279,12.57279 -37.79403,1.59733 -50.28859,14.55184 z"
|
|
86
|
-
sodipodi:nodetypes="cccssssssccsssssc" />
|
|
87
|
-
</clipPath>
|
|
88
|
-
</defs>
|
|
89
|
-
<g
|
|
90
|
-
inkscape:label="Layer 1"
|
|
91
|
-
inkscape:groupmode="layer"
|
|
92
|
-
id="layer1"
|
|
93
|
-
transform="translate(65.93618,-38.073772)">
|
|
94
|
-
<rect
|
|
95
|
-
style="opacity:1;fill:#ffffff;stroke:none;stroke-width:0.437536;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
96
|
-
id="rect8"
|
|
97
|
-
width="207.48854"
|
|
98
|
-
height="123.90825"
|
|
99
|
-
x="-65.93618"
|
|
100
|
-
y="38.073772" />
|
|
101
|
-
<g
|
|
102
|
-
id="g9"
|
|
103
|
-
transform="translate(0,17.991666)" />
|
|
104
|
-
<rect
|
|
105
|
-
style="fill:#f6edf4;stroke-width:1.38883;stroke-linecap:round;stroke-linejoin:round"
|
|
106
|
-
id="rect1"
|
|
107
|
-
width="173.21919"
|
|
108
|
-
height="90.940079"
|
|
109
|
-
x="-49.172928"
|
|
110
|
-
y="54.557861" />
|
|
111
|
-
<rect
|
|
112
|
-
style="fill:#ecdce8;stroke-width:0.798653;stroke-linecap:round;stroke-linejoin:round"
|
|
113
|
-
id="rect2"
|
|
114
|
-
width="72.174667"
|
|
115
|
-
height="72.174667"
|
|
116
|
-
x="1.3493359"
|
|
117
|
-
y="63.940567" />
|
|
118
|
-
<g
|
|
119
|
-
id="g12"
|
|
120
|
-
transform="matrix(0.54557227,0,0,0.54557227,-14.32524,-102.55171)">
|
|
121
|
-
<g
|
|
122
|
-
id="g21"
|
|
123
|
-
transform="translate(0,-2.1774013)">
|
|
124
|
-
<g
|
|
125
|
-
id="g8"
|
|
126
|
-
transform="translate(0,34.897769)">
|
|
127
|
-
<path
|
|
128
|
-
style="opacity:1;fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle);marker-end:url(#Triangle)"
|
|
129
|
-
d="M 32.334443,238.75956 H 157.28598"
|
|
130
|
-
id="path4"
|
|
131
|
-
sodipodi:nodetypes="cc" />
|
|
132
|
-
<rect
|
|
133
|
-
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
134
|
-
id="rect7-7"
|
|
135
|
-
width="27.408489"
|
|
136
|
-
height="11.22532"
|
|
137
|
-
x="81.105965"
|
|
138
|
-
y="233.1469" />
|
|
139
|
-
<text
|
|
140
|
-
xml:space="preserve"
|
|
141
|
-
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';writing-mode:lr-tb;direction:ltr;opacity:1;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
142
|
-
x="87.384254"
|
|
143
|
-
y="241.42421"
|
|
144
|
-
id="text5"><tspan
|
|
145
|
-
sodipodi:role="line"
|
|
146
|
-
id="tspan5"
|
|
147
|
-
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
148
|
-
x="87.384254"
|
|
149
|
-
y="241.42421">512</tspan></text>
|
|
150
|
-
</g>
|
|
151
|
-
<path
|
|
152
|
-
style="opacity:1;fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
153
|
-
d="m 29.127397,262.85374 v 21.60717"
|
|
154
|
-
id="path9"
|
|
155
|
-
sodipodi:nodetypes="cc" />
|
|
156
|
-
<use
|
|
157
|
-
x="0"
|
|
158
|
-
y="0"
|
|
159
|
-
xlink:href="#path9"
|
|
160
|
-
id="use9"
|
|
161
|
-
transform="translate(131.49792)" />
|
|
162
|
-
</g>
|
|
163
|
-
</g>
|
|
164
|
-
<g
|
|
165
|
-
id="g11"
|
|
166
|
-
transform="matrix(0.54557227,0,0,0.54557227,-14.32524,19.301321)">
|
|
167
|
-
<path
|
|
168
|
-
style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle);marker-end:url(#Triangle)"
|
|
169
|
-
d="M -61.098001,247.80267 H 250.85072"
|
|
170
|
-
id="path3"
|
|
171
|
-
sodipodi:nodetypes="cc" />
|
|
172
|
-
<rect
|
|
173
|
-
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
174
|
-
id="rect7"
|
|
175
|
-
width="27.408489"
|
|
176
|
-
height="11.22532"
|
|
177
|
-
x="81.172112"
|
|
178
|
-
y="242.19" />
|
|
179
|
-
<text
|
|
180
|
-
xml:space="preserve"
|
|
181
|
-
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';writing-mode:lr-tb;direction:ltr;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
182
|
-
x="84.743973"
|
|
183
|
-
y="250.46733"
|
|
184
|
-
id="text6"><tspan
|
|
185
|
-
sodipodi:role="line"
|
|
186
|
-
id="tspan6"
|
|
187
|
-
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
188
|
-
x="84.743973"
|
|
189
|
-
y="250.46733">1200</tspan></text>
|
|
190
|
-
<use
|
|
191
|
-
x="0"
|
|
192
|
-
y="0"
|
|
193
|
-
xlink:href="#use9"
|
|
194
|
-
id="use10"
|
|
195
|
-
transform="translate(92.604164,-25.85466)" />
|
|
196
|
-
<use
|
|
197
|
-
x="0"
|
|
198
|
-
y="0"
|
|
199
|
-
xlink:href="#use10"
|
|
200
|
-
id="use11"
|
|
201
|
-
transform="translate(-316.70625)" />
|
|
202
|
-
</g>
|
|
203
|
-
<g
|
|
204
|
-
id="g18"
|
|
205
|
-
transform="matrix(0.54557227,0,0,0.54557227,-251.78414,30.964484)">
|
|
206
|
-
<g
|
|
207
|
-
id="g23"
|
|
208
|
-
transform="translate(-5.4337012)">
|
|
209
|
-
<path
|
|
210
|
-
style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle-7);marker-end:url(#Triangle-7)"
|
|
211
|
-
d="M 360.31531,188.93242 V 64.245455"
|
|
212
|
-
id="path4-6"
|
|
213
|
-
sodipodi:nodetypes="cc" />
|
|
214
|
-
<rect
|
|
215
|
-
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
216
|
-
id="rect7-0"
|
|
217
|
-
width="22.116842"
|
|
218
|
-
height="12.548244"
|
|
219
|
-
x="349.2569"
|
|
220
|
-
y="120.31481" />
|
|
221
|
-
<path
|
|
222
|
-
style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
223
|
-
d="M 349.51173,192.3379 H 371.1189"
|
|
224
|
-
id="use14"
|
|
225
|
-
sodipodi:nodetypes="cc" />
|
|
226
|
-
<use
|
|
227
|
-
x="0"
|
|
228
|
-
y="0"
|
|
229
|
-
xlink:href="#use14"
|
|
230
|
-
id="use15"
|
|
231
|
-
transform="translate(0,-131.49792)" />
|
|
232
|
-
<text
|
|
233
|
-
xml:space="preserve"
|
|
234
|
-
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
235
|
-
x="360.4072"
|
|
236
|
-
y="129.2536"
|
|
237
|
-
id="use18"><tspan
|
|
238
|
-
sodipodi:role="line"
|
|
239
|
-
id="tspan18"
|
|
240
|
-
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
241
|
-
x="360.4072"
|
|
242
|
-
y="129.2536">512</tspan></text>
|
|
243
|
-
</g>
|
|
244
|
-
</g>
|
|
245
|
-
<g
|
|
246
|
-
id="g22"
|
|
247
|
-
transform="matrix(0.54557227,0,0,0.54557227,-32.211101,15.224925)">
|
|
248
|
-
<path
|
|
249
|
-
style="fill:#c795ba;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;marker-start:url(#Triangle-7);marker-end:url(#Triangle-7)"
|
|
250
|
-
d="M 303.58294,235.31785 V 75.559279"
|
|
251
|
-
id="path5"
|
|
252
|
-
sodipodi:nodetypes="cc" />
|
|
253
|
-
<rect
|
|
254
|
-
style="fill:#ffffff;stroke:none;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
255
|
-
id="rect15"
|
|
256
|
-
width="22.116842"
|
|
257
|
-
height="12.548244"
|
|
258
|
-
x="292.52451"
|
|
259
|
-
y="149.16444" />
|
|
260
|
-
<text
|
|
261
|
-
xml:space="preserve"
|
|
262
|
-
style="font-size:8.35316px;line-height:1.25;font-family:'SauceCodePro Nerd Font Mono';-inkscape-font-specification:'SauceCodePro Nerd Font Mono';text-align:center;writing-mode:lr-tb;direction:ltr;text-anchor:middle;fill:#a14f8c;stroke:none;stroke-width:1.82554;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
263
|
-
x="303.55789"
|
|
264
|
-
y="158.10323"
|
|
265
|
-
id="use16"><tspan
|
|
266
|
-
sodipodi:role="line"
|
|
267
|
-
id="tspan16"
|
|
268
|
-
style="font-size:8.35316px;fill:#a14f8c;stroke:none;stroke-width:1.82554"
|
|
269
|
-
x="303.55789"
|
|
270
|
-
y="158.10323">630</tspan></text>
|
|
271
|
-
<path
|
|
272
|
-
style="fill:none;stroke:#a14f8c;stroke-width:0.79375;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none"
|
|
273
|
-
d="M 292.09857,72.491693 H 315.0673"
|
|
274
|
-
id="use21"
|
|
275
|
-
sodipodi:nodetypes="cc" />
|
|
276
|
-
<use
|
|
277
|
-
x="0"
|
|
278
|
-
y="0"
|
|
279
|
-
xlink:href="#use21"
|
|
280
|
-
id="use22"
|
|
281
|
-
transform="translate(5e-6,165.89375)" />
|
|
282
|
-
</g>
|
|
283
|
-
<g
|
|
284
|
-
id="g27"
|
|
285
|
-
transform="matrix(0.24005696,0.24005696,-0.24005696,0.24005696,-125.52333,100.61498)"
|
|
286
|
-
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
287
|
-
inkscape:export-xdpi="10.11"
|
|
288
|
-
inkscape:export-ydpi="10.11"
|
|
289
|
-
style="fill:#ffffff;fill-opacity:1;stroke-width:3.80952"
|
|
290
|
-
clip-path="url(#clipPath28)">
|
|
291
|
-
<path
|
|
292
|
-
id="path27"
|
|
293
|
-
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:5.0397;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
294
|
-
d="m 372.92961,-303.88054 a 20.103001,20.103493 0 0 0 -4.90893,13.16408 20.103001,20.103493 0 0 0 20.10242,20.10507 20.103001,20.103493 0 0 0 20.10374,-20.10375 20.103001,20.103493 0 0 0 -20.10374,-20.10374 20.103001,20.103493 0 0 0 -15.19349,6.93834 z m 4.43562,2.40753 h 6.30374 l 4.45545,-4.45545 4.45545,4.45545 h 6.3011 v 6.3011 l 4.45677,4.45677 -4.45545,4.45546 -0.001,6.30241 h -6.3011 l -4.45545,4.45546 -4.45678,-4.45678 h -6.30109 v -6.30109 l -4.45545,-4.45546 4.45545,-4.45545 z m 2.27135,4.18311 3.22723,3.22723 1.91307,0.001 10e-4,-1.91307 -3.22855,-3.22855 z m -2.16294,5.22226 0.001,2.70368 h 4.56387 l 1.3525,-1.3525 -1.3525,-1.3525 z m 9.29696,-9.29695 v 4.56386 l 1.3525,1.3525 1.3525,-1.3525 v -4.56386 z m 0.0912,7.606 0.0172,1.79936 -1.79805,-0.0159 1.28243,1.25863 -1.28243,1.26128 1.79805,-0.0159 -0.0145,1.79937 1.25996,-1.28375 1.25995,1.28375 -0.0145,-1.79937 1.79672,0.0145 -1.28243,-1.25864 1.28243,-1.26127 -1.79804,0.0159 0.0159,-1.79804 -1.26127,1.28243 z m -7.22391,9.6169 1.91174,1.91175 3.22723,-3.22723 v -1.91175 h -1.91175 z m 11.83273,-11.83273 v 1.91175 h 1.91174 l 3.22723,-3.22723 -1.91175,-1.91175 z m -4.69872,11.34356 -0.001,4.56518 h 2.705 v -4.56386 l -1.3525,-1.3525 z m 6.08427,-6.08428 1.3525,1.35251 h 4.56386 v -2.70501 h -4.56386 z m -1.38688,3.34622 10e-4,1.91307 3.22722,3.22723 1.91307,-1.91307 -3.22723,-3.22723 z" />
|
|
295
|
-
</g>
|
|
296
|
-
</g>
|
|
297
|
-
</svg>
|
|
@@ -1,226 +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="169.33333mm"
|
|
6
|
-
height="63.735683mm"
|
|
7
|
-
viewBox="0 0 169.33333 63.735685"
|
|
8
|
-
version="1.1"
|
|
9
|
-
id="svg1"
|
|
10
|
-
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
|
11
|
-
sodipodi:docname="example-sponsors-design.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.4726563"
|
|
27
|
-
inkscape:cx="128"
|
|
28
|
-
inkscape:cy="157.19893"
|
|
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
|
-
showgrid="false" />
|
|
36
|
-
<defs
|
|
37
|
-
id="defs1">
|
|
38
|
-
<marker
|
|
39
|
-
style="overflow:visible"
|
|
40
|
-
id="marker18"
|
|
41
|
-
refX="0"
|
|
42
|
-
refY="0"
|
|
43
|
-
orient="auto-start-reverse"
|
|
44
|
-
inkscape:stockid="Triangle arrow"
|
|
45
|
-
markerWidth="1"
|
|
46
|
-
markerHeight="1"
|
|
47
|
-
viewBox="0 0 1 1"
|
|
48
|
-
inkscape:isstock="true"
|
|
49
|
-
inkscape:collect="always"
|
|
50
|
-
preserveAspectRatio="xMidYMid">
|
|
51
|
-
<path
|
|
52
|
-
transform="scale(0.5)"
|
|
53
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
54
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
55
|
-
id="path18" />
|
|
56
|
-
</marker>
|
|
57
|
-
<marker
|
|
58
|
-
style="overflow:visible"
|
|
59
|
-
id="Triangle"
|
|
60
|
-
refX="0"
|
|
61
|
-
refY="0"
|
|
62
|
-
orient="auto-start-reverse"
|
|
63
|
-
inkscape:stockid="Triangle arrow"
|
|
64
|
-
markerWidth="1"
|
|
65
|
-
markerHeight="1"
|
|
66
|
-
viewBox="0 0 1 1"
|
|
67
|
-
inkscape:isstock="true"
|
|
68
|
-
inkscape:collect="always"
|
|
69
|
-
preserveAspectRatio="xMidYMid">
|
|
70
|
-
<path
|
|
71
|
-
transform="scale(0.5)"
|
|
72
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
73
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
74
|
-
id="path135" />
|
|
75
|
-
</marker>
|
|
76
|
-
<marker
|
|
77
|
-
style="overflow:visible"
|
|
78
|
-
id="marker18-2"
|
|
79
|
-
refX="0"
|
|
80
|
-
refY="0"
|
|
81
|
-
orient="auto-start-reverse"
|
|
82
|
-
inkscape:stockid="Triangle arrow"
|
|
83
|
-
markerWidth="1"
|
|
84
|
-
markerHeight="1"
|
|
85
|
-
viewBox="0 0 1 1"
|
|
86
|
-
inkscape:isstock="true"
|
|
87
|
-
inkscape:collect="always"
|
|
88
|
-
preserveAspectRatio="xMidYMid">
|
|
89
|
-
<path
|
|
90
|
-
transform="scale(0.5)"
|
|
91
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
92
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
93
|
-
id="path18-6" />
|
|
94
|
-
</marker>
|
|
95
|
-
<marker
|
|
96
|
-
style="overflow:visible"
|
|
97
|
-
id="Triangle-1"
|
|
98
|
-
refX="0"
|
|
99
|
-
refY="0"
|
|
100
|
-
orient="auto-start-reverse"
|
|
101
|
-
inkscape:stockid="Triangle arrow"
|
|
102
|
-
markerWidth="1"
|
|
103
|
-
markerHeight="1"
|
|
104
|
-
viewBox="0 0 1 1"
|
|
105
|
-
inkscape:isstock="true"
|
|
106
|
-
inkscape:collect="always"
|
|
107
|
-
preserveAspectRatio="xMidYMid">
|
|
108
|
-
<path
|
|
109
|
-
transform="scale(0.5)"
|
|
110
|
-
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
|
|
111
|
-
d="M 5.77,0 -2.88,5 V -5 Z"
|
|
112
|
-
id="path135-8" />
|
|
113
|
-
</marker>
|
|
114
|
-
</defs>
|
|
115
|
-
<g
|
|
116
|
-
inkscape:label="Layer 1"
|
|
117
|
-
inkscape:groupmode="layer"
|
|
118
|
-
id="layer1"
|
|
119
|
-
transform="translate(-104.24583,25.069433)">
|
|
120
|
-
<rect
|
|
121
|
-
style="fill:#f6edf4;stroke-width:0.416726;stroke-linejoin:bevel;paint-order:fill markers stroke"
|
|
122
|
-
id="rect13-5"
|
|
123
|
-
width="169.33333"
|
|
124
|
-
height="63.735683"
|
|
125
|
-
x="104.24583"
|
|
126
|
-
y="-25.069433"
|
|
127
|
-
inkscape:export-filename="screenshot-sponsors-logo.png"
|
|
128
|
-
inkscape:export-xdpi="96"
|
|
129
|
-
inkscape:export-ydpi="96" />
|
|
130
|
-
<g
|
|
131
|
-
id="g2"
|
|
132
|
-
transform="translate(-3.1490785e-4,-0.77812999)">
|
|
133
|
-
<path
|
|
134
|
-
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
135
|
-
d="M 180.00667,-6.1547687 V -18.57341"
|
|
136
|
-
id="path19"
|
|
137
|
-
sodipodi:nodetypes="cc" />
|
|
138
|
-
<path
|
|
139
|
-
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
140
|
-
d="m 179.71837,-5.9860515 h 75.88072"
|
|
141
|
-
id="path12-9"
|
|
142
|
-
sodipodi:nodetypes="cc" />
|
|
143
|
-
<path
|
|
144
|
-
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
145
|
-
d="m 238.10918,22.791533 h 17.48991"
|
|
146
|
-
id="path13-1"
|
|
147
|
-
sodipodi:nodetypes="cc" />
|
|
148
|
-
<path
|
|
149
|
-
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
150
|
-
d="M 122.47167,33.726487 V 22.869463"
|
|
151
|
-
id="path14-2"
|
|
152
|
-
sodipodi:nodetypes="cc" />
|
|
153
|
-
<path
|
|
154
|
-
style="fill:#0188cc;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;stroke-opacity:1"
|
|
155
|
-
d="M 238.08736,33.726487 V -18.57341"
|
|
156
|
-
id="path15-7"
|
|
157
|
-
sodipodi:nodetypes="cc" />
|
|
158
|
-
<text
|
|
159
|
-
xml:space="preserve"
|
|
160
|
-
style="font-size:4.72723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
161
|
-
x="173.0667"
|
|
162
|
-
y="30.985672"
|
|
163
|
-
id="text15-9-3"><tspan
|
|
164
|
-
sodipodi:role="line"
|
|
165
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
166
|
-
x="173.0667"
|
|
167
|
-
y="30.985672"
|
|
168
|
-
id="tspan16-6">492px</tspan></text>
|
|
169
|
-
<path
|
|
170
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18);marker-end:url(#Triangle)"
|
|
171
|
-
d="m 124.47187,29.775502 h 46.29287 m 18.09949,0 h 47.19646"
|
|
172
|
-
id="path17"
|
|
173
|
-
sodipodi:nodetypes="cccc" />
|
|
174
|
-
<text
|
|
175
|
-
xml:space="preserve"
|
|
176
|
-
style="font-size:4.72723px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
177
|
-
x="243.37663"
|
|
178
|
-
y="10.057274"
|
|
179
|
-
id="text15-0"><tspan
|
|
180
|
-
sodipodi:role="line"
|
|
181
|
-
id="tspan15-9"
|
|
182
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.163432"
|
|
183
|
-
x="243.37663"
|
|
184
|
-
y="10.057274">60px</tspan></text>
|
|
185
|
-
<path
|
|
186
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.490297;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18-2);marker-end:url(#Triangle-1)"
|
|
187
|
-
d="m 245.07135,20.764767 v -7.353652 m 0,-8.7208893 v -8.6495115"
|
|
188
|
-
id="path17-2"
|
|
189
|
-
sodipodi:nodetypes="cccc" />
|
|
190
|
-
<g
|
|
191
|
-
id="g1"
|
|
192
|
-
transform="matrix(0.98831555,0,0,0.98831555,7.8450193,5.6592658)">
|
|
193
|
-
<path
|
|
194
|
-
style="fill:none;fill-opacity:1;stroke:#a14f8c;stroke-width:0.496094;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker18-2);marker-end:url(#Triangle-1)"
|
|
195
|
-
d="M 230.93738,-19.677202 H 212.0195 m -17.0652,0 h -19.06418"
|
|
196
|
-
id="path20"
|
|
197
|
-
sodipodi:nodetypes="cccc" />
|
|
198
|
-
<text
|
|
199
|
-
xml:space="preserve"
|
|
200
|
-
style="font-size:4.78312px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';fill:#a14f8c;fill-opacity:1;stroke-width:0.165364"
|
|
201
|
-
x="196.32039"
|
|
202
|
-
y="-18.250635"
|
|
203
|
-
id="text20"><tspan
|
|
204
|
-
sodipodi:role="line"
|
|
205
|
-
id="tspan20"
|
|
206
|
-
style="fill:#a14f8c;fill-opacity:1;stroke-width:0.165364"
|
|
207
|
-
x="196.32039"
|
|
208
|
-
y="-18.250635">242px</tspan></text>
|
|
209
|
-
</g>
|
|
210
|
-
<rect
|
|
211
|
-
style="fill:#d9b9d1;fill-opacity:1;stroke:none;stroke-width:0.490297;stroke-linejoin:bevel;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
212
|
-
id="rect12-5"
|
|
213
|
-
width="116.10598"
|
|
214
|
-
height="29.267748"
|
|
215
|
-
x="122.22653"
|
|
216
|
-
y="-6.2311997" />
|
|
217
|
-
<rect
|
|
218
|
-
style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:0.490297;stroke-linejoin:bevel;stroke-dasharray:1.96118, 1.96118;stroke-dashoffset:0;paint-order:fill markers stroke"
|
|
219
|
-
id="rect18"
|
|
220
|
-
width="58.633358"
|
|
221
|
-
height="29.267881"
|
|
222
|
-
x="179.69916"
|
|
223
|
-
y="-6.2311997" />
|
|
224
|
-
</g>
|
|
225
|
-
</g>
|
|
226
|
-
</svg>
|