uswds-jekyll 4.0.0 → 5.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +359 -311
- data/_includes/analytics.html +7 -10
- data/_includes/components/banner.html +38 -13
- data/_includes/components/footer--big.html +142 -0
- data/_includes/components/footer--default.html +104 -0
- data/_includes/components/footer--slim.html +93 -0
- data/_includes/components/github-edit.html +3 -0
- data/_includes/components/graphic-list.html +13 -11
- data/_includes/components/header.html +161 -0
- data/_includes/components/hero.html +6 -13
- data/_includes/components/search.html +31 -0
- data/_includes/footer.html +7 -1
- data/_includes/header.html +1 -5
- data/_includes/meta.html +7 -1
- data/_includes/project-list.html +14 -0
- data/_includes/scripts.html +7 -5
- data/_includes/sidenav.html +23 -21
- data/_includes/styles.html +1 -1
- data/_includes/team-list.html +13 -0
- data/_layouts/default.html +39 -3
- data/_layouts/home.html +5 -26
- data/_layouts/page.html +19 -13
- data/_layouts/project.html +23 -0
- data/_layouts/team-member.html +34 -0
- data/_sass/_uswds-theme-custom-styles.scss +0 -0
- data/_sass/_uswds-theme-override-settings.scss +2 -0
- data/_sass/_uswds-theme-packages.scss +1 -0
- data/_sass/_uswds-theme-settings.scss +0 -0
- data/_sass/uswds/components/_all.scss +8 -0
- data/_sass/{components → uswds/components}/_alt-color-section.scss +6 -7
- data/_sass/uswds/components/_card.scss +63 -0
- data/_sass/uswds/components/_footer.scss +16 -502
- data/_sass/uswds/components/_header.scss +30 -198
- data/_sass/uswds/components/_hero.scss +37 -29
- data/_sass/{components → uswds/components}/_nav-buttons.scss +6 -6
- data/_sass/uswds/components/_side-nav.scss +48 -0
- data/_sass/uswds/components/_site-width.scss +6 -0
- data/_sass/uswds/components/_top-nav.scss +84 -0
- data/_sass/uswds/components/_usa-banner.scss +30 -0
- data/_sass/uswds/custom/_uswds-theme-custom-styles.scss +47 -0
- data/_sass/uswds/settings/_uswds-conversion-variables.scss +0 -0
- data/_sass/uswds/src/base/_accessibility.scss +3 -0
- data/_sass/uswds/src/base/_body.scss +5 -0
- data/_sass/uswds/src/components/_accordions.scss +116 -0
- data/_sass/uswds/src/components/_alerts.scss +143 -0
- data/_sass/uswds/src/components/_banner.scss +297 -0
- data/_sass/uswds/src/components/_breadcrumb.scss +168 -0
- data/_sass/uswds/src/components/_button-groups.scss +134 -0
- data/_sass/uswds/src/components/_card.scss +346 -0
- data/_sass/uswds/src/components/_checklist.scss +17 -0
- data/_sass/uswds/src/components/_footer.scss +359 -0
- data/_sass/uswds/src/components/_forms.scss +54 -0
- data/_sass/uswds/src/components/_graphic-list.scss +42 -0
- data/_sass/uswds/src/components/_header.scss +287 -0
- data/_sass/uswds/src/components/_hero.scss +32 -0
- data/_sass/uswds/src/components/_identifier.scss +146 -0
- data/_sass/uswds/src/components/_layout.scss +15 -0
- data/_sass/uswds/src/components/_media-block.scss +12 -0
- data/_sass/uswds/src/components/_megamenu.scss +45 -0
- data/_sass/uswds/src/components/_nav-container.scss +7 -0
- data/_sass/uswds/src/components/_navbar.scss +16 -0
- data/_sass/uswds/src/components/_navigation.scss +348 -0
- data/_sass/uswds/src/components/_search.scss +98 -0
- data/_sass/uswds/src/components/_section.scss +42 -0
- data/_sass/uswds/src/components/_sidenav.scss +19 -0
- data/_sass/uswds/src/components/_skipnav.scss +20 -0
- data/_sass/uswds/src/components/_step-indicator.scss +444 -0
- data/_sass/uswds/src/components/_tooltip.scss +114 -0
- data/_sass/uswds/{core → src/core}/_defaults.scss +1 -1
- data/_sass/uswds/src/core/_deprecated.scss +33 -0
- data/_sass/uswds/src/core/_functions.scss +1954 -0
- data/_sass/uswds/src/core/_notifications.scss +100 -0
- data/_sass/uswds/src/core/_properties.scss +699 -0
- data/_sass/uswds/src/core/_system-tokens.scss +1658 -0
- data/_sass/uswds/src/core/_variables.scss +636 -0
- data/_sass/uswds/src/core/mixins/_add-aspect.scss +17 -0
- data/_sass/uswds/src/core/mixins/_add-background-svg.scss +9 -0
- data/_sass/uswds/src/core/mixins/_add-bar.scss +43 -0
- data/_sass/uswds/src/core/mixins/_add-checkbox-placeholder.scss +15 -0
- data/_sass/uswds/src/core/mixins/_add-kerning.scss +4 -0
- data/_sass/uswds/src/core/mixins/_add-knockout-font-smoothing.scss +9 -0
- data/_sass/uswds/src/core/mixins/_add-link-styles.scss +20 -0
- data/_sass/uswds/src/core/mixins/_add-list-reset.scss +15 -0
- data/_sass/uswds/src/core/mixins/_add-responsive-site-margins.scss +6 -0
- data/_sass/uswds/src/core/mixins/_add-success-mark.scss +7 -0
- data/_sass/uswds/src/core/mixins/_all.scss +90 -0
- data/_sass/uswds/src/core/mixins/_at-media.scss +36 -0
- data/_sass/uswds/src/core/mixins/_border-box-sizing.scss +19 -0
- data/_sass/uswds/src/core/mixins/_button-disabled.scss +17 -0
- data/_sass/uswds/src/core/mixins/_button-unstyled.scss +20 -0
- data/_sass/uswds/src/core/mixins/_clearfix.scss +7 -0
- data/_sass/uswds/src/core/mixins/_embed-container.scss +3 -0
- data/_sass/uswds/src/core/mixins/_external-link.scss +21 -0
- data/_sass/uswds/src/core/mixins/_focus.scss +14 -0
- data/_sass/uswds/src/core/mixins/_font-face.scss +103 -0
- data/_sass/uswds/src/core/mixins/_icon.scss +183 -0
- data/_sass/uswds/src/core/mixins/_layout-grid.scss +128 -0
- data/_sass/uswds/src/core/mixins/_media-block-img.scss +4 -0
- data/_sass/uswds/{elements/_figure.scss → src/core/mixins/_media-link.scss} +0 -8
- data/_sass/uswds/src/core/mixins/_nav-list.scss +95 -0
- data/_sass/uswds/src/core/mixins/_override-prose.scss +6 -0
- data/_sass/uswds/src/core/mixins/_screen-reader.scss +23 -0
- data/_sass/uswds/src/core/mixins/_set-link-from-bg.scss +30 -0
- data/_sass/uswds/src/core/mixins/_set-text-from-bg.scss +28 -0
- data/_sass/uswds/src/core/mixins/_typography.scss +161 -0
- data/_sass/uswds/src/core/mixins/_unstyled-list.scss +11 -0
- data/_sass/uswds/src/core/mixins/_usa-list-styles.scss +10 -0
- data/_sass/uswds/src/core/mixins/_usa-table-styles.scss +8 -0
- data/_sass/uswds/src/core/mixins/_usa-typography.scss +54 -0
- data/_sass/uswds/src/core/mixins/_utility-builder.scss +369 -0
- data/_sass/uswds/src/core/mixins/layout-grid/_grid-container.scss +14 -0
- data/_sass/uswds/src/core/mixins/layout-grid/_grid-row.scss +7 -0
- data/_sass/uswds/src/core/mixins/utilities/_align-items.scss +11 -0
- data/_sass/uswds/src/core/mixins/utilities/_align-self.scss +11 -0
- data/_sass/uswds/src/core/mixins/utilities/_background-color.scss +9 -0
- data/_sass/uswds/src/core/mixins/utilities/_border-color.scss +11 -0
- data/_sass/uswds/src/core/mixins/utilities/_border-radius.scss +55 -0
- data/_sass/uswds/src/core/mixins/utilities/_border-width.scss +32 -0
- data/_sass/uswds/src/core/mixins/utilities/_border.scss +142 -0
- data/_sass/uswds/src/core/mixins/utilities/_bottom.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_circle.scss +9 -0
- data/_sass/uswds/src/core/mixins/utilities/_color.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_cursor.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_display.scss +11 -0
- data/_sass/uswds/src/core/mixins/utilities/_flex-direction.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_flex.scss +55 -0
- data/_sass/uswds/src/core/mixins/utilities/_float.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_font-weight.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_font.scss +42 -0
- data/_sass/uswds/src/core/mixins/utilities/_height.scss +11 -0
- data/_sass/uswds/src/core/mixins/utilities/_justify-content.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_left.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_line-height.scss +13 -0
- data/_sass/uswds/src/core/mixins/utilities/_margin.scss +85 -0
- data/_sass/uswds/src/core/mixins/utilities/_max-height.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_max-width.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_measure.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_min-height.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_min-width.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_order.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_outline-color.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_outline.scss +35 -0
- data/_sass/uswds/src/core/mixins/utilities/_overflow.scss +28 -0
- data/_sass/uswds/src/core/mixins/utilities/_padding.scss +49 -0
- data/_sass/uswds/src/core/mixins/utilities/_pin.scss +82 -0
- data/_sass/uswds/src/core/mixins/utilities/_position.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_right.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_shadow.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_square.scss +7 -0
- data/_sass/uswds/src/core/mixins/utilities/_text-align.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_text-decoration-color.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_text-decoration.scss +17 -0
- data/_sass/uswds/src/core/mixins/utilities/_text-indent.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_text.scss +77 -0
- data/_sass/uswds/src/core/mixins/utilities/_top.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_vertical-align.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_white-space.scss +10 -0
- data/_sass/uswds/src/core/mixins/utilities/_width.scss +11 -0
- data/_sass/uswds/src/core/mixins/utilities/_z-index.scss +10 -0
- data/_sass/uswds/src/core/placeholders/_all.scss +2 -0
- data/_sass/uswds/src/core/placeholders/_list.scss +23 -0
- data/_sass/uswds/src/core/placeholders/_table.scss +58 -0
- data/_sass/uswds/src/core/system-tokens/_blue-cool.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_blue-warm.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_blue.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_cyan.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_gold.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_gray-cool.scss +18 -0
- data/_sass/uswds/src/core/system-tokens/_gray-warm.scss +18 -0
- data/_sass/uswds/src/core/system-tokens/_gray.scss +19 -0
- data/_sass/uswds/src/core/system-tokens/_green-cool.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_green-warm.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_green.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_indigo-cool.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_indigo-warm.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_indigo.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_magenta.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_mint-cool.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_mint.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_orange-warm.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_orange.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_red-cool.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_red-warm.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_red.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_violet-warm.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_violet.scss +26 -0
- data/_sass/uswds/src/core/system-tokens/_yellow.scss +26 -0
- data/_sass/uswds/src/elements/_buttons.scss +224 -0
- data/_sass/uswds/{elements → src/elements}/_embed.scss +0 -4
- data/_sass/uswds/src/elements/_figure.scss +7 -0
- data/_sass/uswds/src/elements/_layout-grid.scss +159 -0
- data/_sass/uswds/src/elements/_table.scss +7 -0
- data/_sass/uswds/src/elements/_tags.scss +18 -0
- data/_sass/uswds/src/elements/form-controls/_all.scss +11 -0
- data/_sass/uswds/src/elements/form-controls/_character-count.scss +9 -0
- data/_sass/uswds/src/elements/form-controls/_checkbox-and-radio.scss +117 -0
- data/_sass/uswds/src/elements/form-controls/_combo-box.scss +126 -0
- data/_sass/uswds/src/elements/form-controls/_date-input.scss +31 -0
- data/_sass/uswds/src/elements/form-controls/_date-picker.scss +325 -0
- data/_sass/uswds/src/elements/form-controls/_dropdown.scss +25 -0
- data/_sass/uswds/src/elements/form-controls/_file-input.scss +199 -0
- data/_sass/uswds/src/elements/form-controls/_global.scss +91 -0
- data/_sass/uswds/src/elements/form-controls/_range-input.scss +89 -0
- data/_sass/uswds/src/elements/form-controls/_text-input.scss +13 -0
- data/_sass/uswds/src/elements/form-controls/_time-picker.scss +3 -0
- data/_sass/uswds/src/elements/typography/_content.scss +62 -0
- data/_sass/uswds/src/elements/typography/_links.scss +15 -0
- data/_sass/uswds/src/elements/typography/_list.scss +14 -0
- data/_sass/uswds/src/elements/typography/_prose.scss +6 -0
- data/_sass/uswds/src/global/_focus.scss +24 -0
- data/_sass/uswds/src/global/_font-face.scss +11 -0
- data/_sass/uswds/src/global/_sizing.scss +14 -0
- data/_sass/uswds/src/global/_typography.scss +32 -0
- data/_sass/uswds/src/lib/_normalize.scss +349 -0
- data/_sass/uswds/src/packages/_form-controls.scss +4 -0
- data/_sass/uswds/src/packages/_form-templates.scss +8 -0
- data/_sass/uswds/src/packages/_global.scss +7 -0
- data/_sass/uswds/src/packages/_layout-grid.scss +4 -0
- data/_sass/uswds/src/packages/_required.scss +21 -0
- data/_sass/uswds/src/packages/_typography.scss +7 -0
- data/_sass/uswds/src/packages/_usa-accordion.scss +4 -0
- data/_sass/uswds/src/packages/_usa-alert.scss +4 -0
- data/_sass/uswds/src/packages/_usa-banner.scss +7 -0
- data/_sass/uswds/src/packages/_usa-breadcrumb.scss +4 -0
- data/_sass/uswds/src/packages/_usa-button-group.scss +2 -0
- data/_sass/uswds/src/packages/_usa-button.scss +4 -0
- data/_sass/uswds/src/packages/_usa-card.scss +4 -0
- data/_sass/uswds/src/packages/_usa-checklist.scss +4 -0
- data/_sass/uswds/src/packages/_usa-footer.scss +10 -0
- data/_sass/uswds/src/packages/_usa-header.scss +13 -0
- data/_sass/uswds/src/packages/_usa-hero.scss +6 -0
- data/_sass/uswds/src/packages/_usa-identifier.scss +1 -0
- data/_sass/uswds/src/packages/_usa-media-block.scss +5 -0
- data/_sass/uswds/src/packages/_usa-megamenu.scss +4 -0
- data/_sass/uswds/src/packages/_usa-nav-container.scss +4 -0
- data/_sass/uswds/src/packages/_usa-nav.scss +5 -0
- data/_sass/uswds/src/packages/_usa-navbar.scss +4 -0
- data/_sass/uswds/src/packages/_usa-search.scss +8 -0
- data/_sass/uswds/src/packages/_usa-sidenav.scss +4 -0
- data/_sass/uswds/src/packages/_usa-skipnav.scss +4 -0
- data/_sass/uswds/src/packages/_usa-step-indicator.scss +2 -0
- data/_sass/uswds/src/packages/_usa-table.scss +4 -0
- data/_sass/uswds/src/packages/_usa-tag.scss +4 -0
- data/_sass/uswds/src/packages/_usa-tooltip.scss +2 -0
- data/_sass/uswds/src/packages/_uswds-components.scss +48 -0
- data/_sass/uswds/src/packages/_uswds-fonts.scss +2 -0
- data/_sass/uswds/src/packages/_uswds-utilities.scss +6 -0
- data/_sass/uswds/src/packages/_validation.scss +8 -0
- data/_sass/uswds/src/settings/_settings-color.scss +138 -0
- data/_sass/uswds/src/settings/_settings-components.scss +129 -0
- data/_sass/uswds/src/settings/_settings-general.scss +101 -0
- data/_sass/uswds/src/settings/_settings-spacing.scss +93 -0
- data/_sass/uswds/src/settings/_settings-typography.scss +422 -0
- data/_sass/uswds/src/settings/_settings-utilities.scss +867 -0
- data/_sass/uswds/src/theme/_uswds-theme-color.scss +136 -0
- data/_sass/uswds/src/theme/_uswds-theme-components.scss +129 -0
- data/_sass/uswds/src/theme/_uswds-theme-custom-styles.scss +21 -0
- data/_sass/uswds/src/theme/_uswds-theme-general.scss +101 -0
- data/_sass/uswds/src/theme/_uswds-theme-spacing.scss +93 -0
- data/_sass/uswds/src/theme/_uswds-theme-typography.scss +422 -0
- data/_sass/uswds/src/theme/_uswds-theme-utilities.scss +867 -0
- data/_sass/uswds/src/theme/styles.scss +76 -0
- data/_sass/uswds/src/uswds.scss +17 -0
- data/_sass/uswds/src/utilities/palettes/_all.scss +41 -0
- data/_sass/uswds/src/utilities/palettes/_default-palettes.scss +73 -0
- data/_sass/uswds/src/utilities/palettes/_font-palettes.scss +2762 -0
- data/_sass/uswds/src/utilities/palettes/_palette-registry.scss +46 -0
- data/_sass/uswds/src/utilities/palettes/_spacing-palettes.scss +135 -0
- data/_sass/uswds/src/utilities/palettes/colors/_all-colors-palettes.scss +56 -0
- data/_sass/uswds/src/utilities/palettes/colors/_black-transparent-palettes.scss +16 -0
- data/_sass/uswds/src/utilities/palettes/colors/_blue-cool-palettes.scss +69 -0
- data/_sass/uswds/src/utilities/palettes/colors/_blue-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_blue-warm-palettes.scss +69 -0
- data/_sass/uswds/src/utilities/palettes/colors/_cyan-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_gold-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_gray-cool-palettes.scss +40 -0
- data/_sass/uswds/src/utilities/palettes/colors/_gray-palettes.scss +40 -0
- data/_sass/uswds/src/utilities/palettes/colors/_gray-warm-palettes.scss +40 -0
- data/_sass/uswds/src/utilities/palettes/colors/_green-cool-palettes.scss +69 -0
- data/_sass/uswds/src/utilities/palettes/colors/_green-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_green-warm-palettes.scss +69 -0
- data/_sass/uswds/src/utilities/palettes/colors/_indigo-cool-palettes.scss +70 -0
- data/_sass/uswds/src/utilities/palettes/colors/_indigo-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_indigo-warm-palettes.scss +70 -0
- data/_sass/uswds/src/utilities/palettes/colors/_magenta-palettes.scss +67 -0
- data/_sass/uswds/src/utilities/palettes/colors/_mint-cool-palettes.scss +69 -0
- data/_sass/uswds/src/utilities/palettes/colors/_mint-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_orange-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_orange-warm-palettes.scss +70 -0
- data/_sass/uswds/src/utilities/palettes/colors/_red-cool-palettes.scss +68 -0
- data/_sass/uswds/src/utilities/palettes/colors/_red-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_red-warm-palettes.scss +68 -0
- data/_sass/uswds/src/utilities/palettes/colors/_violet-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/palettes/colors/_violet-warm-palettes.scss +70 -0
- data/_sass/uswds/src/utilities/palettes/colors/_white-transparent-palettes.scss +16 -0
- data/_sass/uswds/src/utilities/palettes/colors/_yellow-palettes.scss +66 -0
- data/_sass/uswds/src/utilities/rules/_all.scss +57 -0
- data/_sass/uswds/src/utilities/rules/_package.scss +62 -0
- data/_sass/uswds/src/utilities/rules/add-aspect.scss +84 -0
- data/_sass/uswds/src/utilities/rules/add-list-reset.scss +39 -0
- data/_sass/uswds/src/utilities/rules/align-items.scss +30 -0
- data/_sass/uswds/src/utilities/rules/align-self.scss +27 -0
- data/_sass/uswds/src/utilities/rules/background-color.scss +32 -0
- data/_sass/uswds/src/utilities/rules/border-color.scss +32 -0
- data/_sass/uswds/src/utilities/rules/border-radius.scss +51 -0
- data/_sass/uswds/src/utilities/rules/border-style.scss +30 -0
- data/_sass/uswds/src/utilities/rules/border-width.scss +44 -0
- data/_sass/uswds/src/utilities/rules/border.scss +47 -0
- data/_sass/uswds/src/utilities/rules/bottom.scss +28 -0
- data/_sass/uswds/src/utilities/rules/box-shadow.scss +27 -0
- data/_sass/uswds/src/utilities/rules/circle.scss +35 -0
- data/_sass/uswds/src/utilities/rules/clearfix.scss +35 -0
- data/_sass/uswds/src/utilities/rules/color.scss +32 -0
- data/_sass/uswds/src/utilities/rules/cursor.scss +26 -0
- data/_sass/uswds/src/utilities/rules/display.scss +26 -0
- data/_sass/uswds/src/utilities/rules/flex-direction.scss +30 -0
- data/_sass/uswds/src/utilities/rules/flex-wrap.scss +27 -0
- data/_sass/uswds/src/utilities/rules/flex.scss +32 -0
- data/_sass/uswds/src/utilities/rules/float.scss +26 -0
- data/_sass/uswds/src/utilities/rules/font-family.scss +38 -0
- data/_sass/uswds/src/utilities/rules/font-feature.scss +31 -0
- data/_sass/uswds/src/utilities/rules/font-style.scss +29 -0
- data/_sass/uswds/src/utilities/rules/font-weight.scss +30 -0
- data/_sass/uswds/src/utilities/rules/font.scss +38 -0
- data/_sass/uswds/src/utilities/rules/height.scss +26 -0
- data/_sass/uswds/src/utilities/rules/justify-content.scss +32 -0
- data/_sass/uswds/src/utilities/rules/left.scss +28 -0
- data/_sass/uswds/src/utilities/rules/letter-spacing.scss +30 -0
- data/_sass/uswds/src/utilities/rules/line-height.scss +30 -0
- data/_sass/uswds/src/utilities/rules/margin.scss +70 -0
- data/_sass/uswds/src/utilities/rules/max-height.scss +27 -0
- data/_sass/uswds/src/utilities/rules/max-width.scss +27 -0
- data/_sass/uswds/src/utilities/rules/measure.scss +28 -0
- data/_sass/uswds/src/utilities/rules/min-height.scss +27 -0
- data/_sass/uswds/src/utilities/rules/min-width.scss +27 -0
- data/_sass/uswds/src/utilities/rules/opacity.scss +26 -0
- data/_sass/uswds/src/utilities/rules/order.scss +29 -0
- data/_sass/uswds/src/utilities/rules/outline-color.scss +33 -0
- data/_sass/uswds/src/utilities/rules/outline.scss +30 -0
- data/_sass/uswds/src/utilities/rules/overflow.scss +31 -0
- data/_sass/uswds/src/utilities/rules/padding.scss +43 -0
- data/_sass/uswds/src/utilities/rules/pin.scss +101 -0
- data/_sass/uswds/src/utilities/rules/position.scss +27 -0
- data/_sass/uswds/src/utilities/rules/right.scss +28 -0
- data/_sass/uswds/src/utilities/rules/square.scss +33 -0
- data/_sass/uswds/src/utilities/rules/text-align.scss +27 -0
- data/_sass/uswds/src/utilities/rules/text-decoration-color.scss +31 -0
- data/_sass/uswds/src/utilities/rules/text-decoration.scss +30 -0
- data/_sass/uswds/src/utilities/rules/text-indent.scss +30 -0
- data/_sass/uswds/src/utilities/rules/text-transform.scss +30 -0
- data/_sass/uswds/src/utilities/rules/top.scss +28 -0
- data/_sass/uswds/src/utilities/rules/vertical-align.scss +30 -0
- data/_sass/uswds/src/utilities/rules/whitespace.scss +27 -0
- data/_sass/uswds/src/utilities/rules/width.scss +26 -0
- data/_sass/uswds/src/utilities/rules/z-index.scss +28 -0
- data/_sass/uswds/src/utilities/utility-fonts.scss +20 -0
- data/assets/css/uswds-theme.scss +187 -0
- data/assets/img/project-images/project-placeholder.png +0 -0
- data/assets/img/team-images/team-placeholder.png +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Black.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Black.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Black.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-BlackItalic.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-BlackItalic.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-BlackItalic.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Bold.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Bold.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Bold.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-BoldItalic.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-BoldItalic.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-BoldItalic.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Italic.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Italic.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Italic.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Light.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Light.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Light.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-LightItalic.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-LightItalic.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-LightItalic.woff2 +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Regular.ttf +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Regular.woff +0 -0
- data/assets/uswds/fonts/merriweather/Latin-Merriweather-Regular.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Black.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Black.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Black.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-BlackItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-BlackItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-BlackItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Bold.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Bold.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Bold.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-BoldItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-BoldItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-BoldItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraBold.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraBold.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraBold.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraBoldItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraBoldItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraBoldItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraLight.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraLight.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraLight.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraLightItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraLightItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ExtraLightItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Italic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Italic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Italic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Light.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Light.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Light.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-LightItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-LightItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-LightItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Medium.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Medium.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Medium.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-MediumItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-MediumItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-MediumItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Regular.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Regular.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Regular.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-SemiBold.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-SemiBold.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-SemiBold.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-SemiBoldItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-SemiBoldItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-SemiBoldItalic.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Thin.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Thin.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-Thin.woff2 +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ThinItalic.ttf +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ThinItalic.woff +0 -0
- data/assets/uswds/fonts/public-sans/PublicSans-ThinItalic.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100italic.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-100italic.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300italic.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-300italic.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500italic.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-500italic.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700italic.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-700italic.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-italic.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-italic.woff2 +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-regular.ttf +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff +0 -0
- data/assets/uswds/fonts/roboto-mono/roboto-mono-v5-latin-regular.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-black-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-black-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-black-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-blackitalic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bold-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bold-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-bolditalic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralight-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralight-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-extralightitalic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-italic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-light-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-light-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-light-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-lightitalic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-regular-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-regular-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibold-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibold-webfont.woff2 +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.ttf +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff +0 -0
- data/assets/uswds/fonts/source-sans-pro/sourcesanspro-semibolditalic-webfont.woff2 +0 -0
- data/assets/uswds/img/alerts/error.svg +4 -17
- data/assets/uswds/img/alerts/info.svg +4 -18
- data/assets/uswds/img/alerts/success.svg +1 -12
- data/assets/uswds/img/alerts/warning.svg +4 -16
- data/assets/uswds/img/angle-arrow-down-gray-90.svg +1 -0
- data/assets/uswds/img/angle-arrow-down-hover.svg +1 -1
- data/assets/uswds/img/angle-arrow-down-primary-hover.svg +1 -1
- data/assets/uswds/img/angle-arrow-down-primary.svg +1 -1
- data/assets/uswds/img/angle-arrow-down-white.svg +1 -0
- data/assets/uswds/img/angle-arrow-down.svg +1 -1
- data/assets/uswds/img/angle-arrow-right-white.svg +1 -0
- data/assets/uswds/img/angle-arrow-right.svg +1 -0
- data/assets/uswds/img/angle-arrow-up-primary-hover.svg +1 -1
- data/assets/uswds/img/angle-arrow-up-primary.svg +1 -1
- data/assets/uswds/img/angle-arrow-up-white.svg +1 -0
- data/assets/uswds/img/angle-double-left-solid.svg +1 -0
- data/assets/uswds/img/angle-double-right-solid.svg +1 -0
- data/assets/uswds/img/angle-left-solid.svg +1 -0
- data/assets/uswds/img/angle-right-solid.svg +1 -0
- data/assets/uswds/img/arrow-both.svg +1 -1
- data/assets/uswds/img/arrow-down-gray-60.svg +1 -0
- data/assets/uswds/img/arrow-down.svg +1 -1
- data/assets/uswds/img/arrow-left-indigo-cool-50v.svg +1 -0
- data/assets/uswds/img/arrow-left-white.svg +1 -0
- data/assets/uswds/img/arrow-left.svg +1 -0
- data/assets/uswds/img/arrow-right.svg +1 -1
- data/assets/uswds/img/calendar-alt-solid.svg +1 -0
- data/assets/uswds/img/checkbox-check-print.svg +1 -0
- data/assets/uswds/img/chevron-right-white.svg +1 -0
- data/assets/uswds/img/chevron-right.svg +1 -0
- data/assets/uswds/img/chevron-white.svg +1 -0
- data/assets/uswds/img/chevron.svg +1 -0
- data/assets/uswds/img/circle-124.png +0 -0
- data/assets/uswds/img/circle-gray-20.svg +1 -0
- data/assets/uswds/img/close-alt-blue-60v.svg +3 -0
- data/assets/uswds/img/close-alt.svg +3 -0
- data/assets/uswds/img/close-blue-30-alt.svg +3 -0
- data/assets/uswds/img/close-blue-40v-alt.svg +3 -0
- data/assets/uswds/img/close-blue-50-alt.svg +3 -0
- data/assets/uswds/img/close-blue-50v-alt.svg +3 -0
- data/assets/uswds/img/close-blue-60-alt.svg +3 -0
- data/assets/uswds/img/close-blue-60v-alt.svg +3 -0
- data/assets/uswds/img/close-gray-60.svg +1 -0
- data/assets/uswds/img/close-gray-90-alt.svg +3 -0
- data/assets/uswds/img/close-primary.svg +1 -16
- data/assets/uswds/img/close-white-alt.svg +3 -0
- data/assets/uswds/img/close-white.svg +3 -0
- data/assets/uswds/img/close.svg +1 -12
- data/assets/uswds/img/correct8-alt.png +0 -0
- data/assets/uswds/img/correct8-alt.svg +1 -0
- data/assets/uswds/img/correct8.svg +1 -1
- data/assets/uswds/img/correct9.svg +1 -1
- data/assets/uswds/img/external-link-alt-hover.svg +1 -1
- data/assets/uswds/img/external-link-alt.svg +1 -1
- data/assets/uswds/img/external-link-hover.svg +1 -1
- data/assets/uswds/img/external-link.svg +1 -1
- data/assets/uswds/img/favicons/favicon-114.png +0 -0
- data/assets/uswds/img/favicons/favicon-144.png +0 -0
- data/assets/uswds/img/favicons/favicon-16.png +0 -0
- data/assets/uswds/img/favicons/favicon-192.png +0 -0
- data/assets/uswds/img/favicons/favicon-40.png +0 -0
- data/assets/uswds/img/favicons/favicon-57.png +0 -0
- data/assets/uswds/img/favicons/favicon-72.png +0 -0
- data/assets/uswds/img/favicons/favicon.ico +0 -0
- data/assets/uswds/img/favicons/favicon.png +0 -0
- data/assets/uswds/img/file-excel.svg +1 -0
- data/assets/uswds/img/file-pdf.svg +1 -0
- data/assets/uswds/img/file-video.svg +1 -0
- data/assets/uswds/img/file-word.svg +1 -0
- data/assets/uswds/img/file.svg +1 -0
- data/assets/uswds/img/hero.png +0 -0
- data/assets/uswds/img/icon-dot-gov.svg +1 -1
- data/assets/uswds/img/icon-https.svg +1 -1
- data/assets/uswds/img/loader.gif +0 -0
- data/assets/uswds/img/loader.svg +1 -0
- data/assets/uswds/img/lock.svg +1 -0
- data/assets/uswds/img/minus-alt.svg +1 -1
- data/assets/uswds/img/minus.svg +1 -1
- data/assets/uswds/img/plus-alt.svg +1 -1
- data/assets/uswds/img/plus.svg +1 -1
- data/assets/uswds/img/search-alt.svg +1 -1
- data/assets/uswds/img/search-primary.svg +1 -12
- data/assets/uswds/img/search.svg +1 -1
- data/assets/uswds/img/social-icons/facebook25.png +0 -0
- data/assets/uswds/img/social-icons/{svg/facebook25.svg → facebook25.svg} +1 -1
- data/assets/uswds/img/social-icons/rss25.png +0 -0
- data/assets/uswds/img/social-icons/{svg/rss25.svg → rss25.svg} +1 -1
- data/assets/uswds/img/social-icons/twitter16.png +0 -0
- data/assets/uswds/img/social-icons/{svg/twitter16.svg → twitter16.svg} +1 -1
- data/assets/uswds/img/social-icons/youtube15.png +0 -0
- data/assets/uswds/img/social-icons/{svg/youtube15.svg → youtube15.svg} +1 -1
- data/assets/uswds/js/uswds.js +5128 -902
- data/assets/uswds/js/uswds.min.js +1 -1
- data/assets/uswds/js/uswds.min.js.map +1 -1
- metadata +570 -226
- data/_includes/components/footer--medium.html +0 -100
- data/_includes/components/header--basic.html +0 -74
- data/_includes/components/header--extended.html +0 -92
- data/_sass/components/_all.scss +0 -7
- data/_sass/components/_footer.scss +0 -26
- data/_sass/components/_header.scss +0 -27
- data/_sass/components/_hero.scss +0 -45
- data/_sass/components/_side-nav.scss +0 -56
- data/_sass/components/_site-width.scss +0 -12
- data/_sass/components/_top-nav.scss +0 -73
- data/_sass/components/_usa-banner.scss +0 -29
- data/_sass/uswds/_all.scss +0 -1
- data/_sass/uswds/components/_accordions.scss +0 -150
- data/_sass/uswds/components/_alerts.scss +0 -125
- data/_sass/uswds/components/_banner.scss +0 -204
- data/_sass/uswds/components/_forms.scss +0 -164
- data/_sass/uswds/components/_graphic-list.scss +0 -35
- data/_sass/uswds/components/_layout.scss +0 -36
- data/_sass/uswds/components/_media-block.scss +0 -12
- data/_sass/uswds/components/_navigation.scss +0 -549
- data/_sass/uswds/components/_search.scss +0 -111
- data/_sass/uswds/components/_section.scss +0 -37
- data/_sass/uswds/components/_sidenav.scss +0 -8
- data/_sass/uswds/components/_skipnav.scss +0 -19
- data/_sass/uswds/core/_base.scss +0 -35
- data/_sass/uswds/core/_fonts.scss +0 -65
- data/_sass/uswds/core/_grid-settings.scss +0 -3
- data/_sass/uswds/core/_grid.scss +0 -199
- data/_sass/uswds/core/_utilities.scss +0 -252
- data/_sass/uswds/core/_variables.scss +0 -155
- data/_sass/uswds/elements/_buttons.scss +0 -217
- data/_sass/uswds/elements/_inputs.scss +0 -351
- data/_sass/uswds/elements/_labels.scss +0 -20
- data/_sass/uswds/elements/_list.scss +0 -32
- data/_sass/uswds/elements/_table.scss +0 -55
- data/_sass/uswds/elements/_typography.scss +0 -260
- data/_sass/uswds/lib/_bourbon-deprecated-upcoming.scss +0 -411
- data/_sass/uswds/lib/_bourbon.scss +0 -87
- data/_sass/uswds/lib/_neat-helpers.scss +0 -11
- data/_sass/uswds/lib/_neat.scss +0 -23
- data/_sass/uswds/lib/_normalize.scss +0 -424
- data/_sass/uswds/lib/addons/_border-color.scss +0 -26
- data/_sass/uswds/lib/addons/_border-radius.scss +0 -48
- data/_sass/uswds/lib/addons/_border-style.scss +0 -25
- data/_sass/uswds/lib/addons/_border-width.scss +0 -25
- data/_sass/uswds/lib/addons/_buttons.scss +0 -64
- data/_sass/uswds/lib/addons/_clearfix.scss +0 -25
- data/_sass/uswds/lib/addons/_ellipsis.scss +0 -30
- data/_sass/uswds/lib/addons/_font-stacks.scss +0 -31
- data/_sass/uswds/lib/addons/_hide-text.scss +0 -27
- data/_sass/uswds/lib/addons/_margin.scss +0 -26
- data/_sass/uswds/lib/addons/_padding.scss +0 -26
- data/_sass/uswds/lib/addons/_position.scss +0 -48
- data/_sass/uswds/lib/addons/_prefixer.scss +0 -66
- data/_sass/uswds/lib/addons/_retina-image.scss +0 -25
- data/_sass/uswds/lib/addons/_size.scss +0 -51
- data/_sass/uswds/lib/addons/_text-inputs.scss +0 -113
- data/_sass/uswds/lib/addons/_timing-functions.scss +0 -34
- data/_sass/uswds/lib/addons/_triangle.scss +0 -63
- data/_sass/uswds/lib/addons/_word-wrap.scss +0 -29
- data/_sass/uswds/lib/css3/_animation.scss +0 -43
- data/_sass/uswds/lib/css3/_appearance.scss +0 -3
- data/_sass/uswds/lib/css3/_backface-visibility.scss +0 -3
- data/_sass/uswds/lib/css3/_background-image.scss +0 -42
- data/_sass/uswds/lib/css3/_background.scss +0 -55
- data/_sass/uswds/lib/css3/_border-image.scss +0 -59
- data/_sass/uswds/lib/css3/_calc.scss +0 -4
- data/_sass/uswds/lib/css3/_columns.scss +0 -47
- data/_sass/uswds/lib/css3/_filter.scss +0 -4
- data/_sass/uswds/lib/css3/_flex-box.scss +0 -287
- data/_sass/uswds/lib/css3/_font-face.scss +0 -24
- data/_sass/uswds/lib/css3/_font-feature-settings.scss +0 -4
- data/_sass/uswds/lib/css3/_hidpi-media-query.scss +0 -10
- data/_sass/uswds/lib/css3/_hyphens.scss +0 -4
- data/_sass/uswds/lib/css3/_image-rendering.scss +0 -14
- data/_sass/uswds/lib/css3/_keyframes.scss +0 -36
- data/_sass/uswds/lib/css3/_linear-gradient.scss +0 -38
- data/_sass/uswds/lib/css3/_perspective.scss +0 -8
- data/_sass/uswds/lib/css3/_placeholder.scss +0 -8
- data/_sass/uswds/lib/css3/_radial-gradient.scss +0 -39
- data/_sass/uswds/lib/css3/_selection.scss +0 -42
- data/_sass/uswds/lib/css3/_text-decoration.scss +0 -19
- data/_sass/uswds/lib/css3/_transform.scss +0 -15
- data/_sass/uswds/lib/css3/_transition.scss +0 -71
- data/_sass/uswds/lib/css3/_user-select.scss +0 -3
- data/_sass/uswds/lib/functions/_assign-inputs.scss +0 -11
- data/_sass/uswds/lib/functions/_contains-falsy.scss +0 -20
- data/_sass/uswds/lib/functions/_contains.scss +0 -26
- data/_sass/uswds/lib/functions/_is-length.scss +0 -11
- data/_sass/uswds/lib/functions/_is-light.scss +0 -21
- data/_sass/uswds/lib/functions/_is-number.scss +0 -11
- data/_sass/uswds/lib/functions/_is-size.scss +0 -13
- data/_sass/uswds/lib/functions/_modular-scale.scss +0 -69
- data/_sass/uswds/lib/functions/_new-breakpoint.scss +0 -49
- data/_sass/uswds/lib/functions/_private.scss +0 -114
- data/_sass/uswds/lib/functions/_px-to-em.scss +0 -13
- data/_sass/uswds/lib/functions/_px-to-rem.scss +0 -15
- data/_sass/uswds/lib/functions/_shade.scss +0 -24
- data/_sass/uswds/lib/functions/_strip-units.scss +0 -17
- data/_sass/uswds/lib/functions/_tint.scss +0 -24
- data/_sass/uswds/lib/functions/_transition-property-name.scss +0 -22
- data/_sass/uswds/lib/functions/_unpack.scss +0 -27
- data/_sass/uswds/lib/grid/_box-sizing.scss +0 -15
- data/_sass/uswds/lib/grid/_direction-context.scss +0 -33
- data/_sass/uswds/lib/grid/_display-context.scss +0 -28
- data/_sass/uswds/lib/grid/_fill-parent.scss +0 -22
- data/_sass/uswds/lib/grid/_media.scss +0 -92
- data/_sass/uswds/lib/grid/_omega.scss +0 -87
- data/_sass/uswds/lib/grid/_outer-container.scss +0 -34
- data/_sass/uswds/lib/grid/_pad.scss +0 -25
- data/_sass/uswds/lib/grid/_private.scss +0 -35
- data/_sass/uswds/lib/grid/_row.scss +0 -52
- data/_sass/uswds/lib/grid/_shift.scss +0 -50
- data/_sass/uswds/lib/grid/_span-columns.scss +0 -94
- data/_sass/uswds/lib/grid/_to-deprecate.scss +0 -97
- data/_sass/uswds/lib/grid/_visual-grid.scss +0 -42
- data/_sass/uswds/lib/helpers/_convert-units.scss +0 -21
- data/_sass/uswds/lib/helpers/_directional-values.scss +0 -96
- data/_sass/uswds/lib/helpers/_font-source-declaration.scss +0 -43
- data/_sass/uswds/lib/helpers/_gradient-positions-parser.scss +0 -13
- data/_sass/uswds/lib/helpers/_linear-angle-parser.scss +0 -25
- data/_sass/uswds/lib/helpers/_linear-gradient-parser.scss +0 -41
- data/_sass/uswds/lib/helpers/_linear-positions-parser.scss +0 -61
- data/_sass/uswds/lib/helpers/_linear-side-corner-parser.scss +0 -31
- data/_sass/uswds/lib/helpers/_radial-arg-parser.scss +0 -69
- data/_sass/uswds/lib/helpers/_radial-gradient-parser.scss +0 -50
- data/_sass/uswds/lib/helpers/_radial-positions-parser.scss +0 -18
- data/_sass/uswds/lib/helpers/_render-gradients.scss +0 -26
- data/_sass/uswds/lib/helpers/_shape-size-stripper.scss +0 -10
- data/_sass/uswds/lib/helpers/_str-to-num.scss +0 -50
- data/_sass/uswds/lib/mixins/_clearfix.scss +0 -25
- data/_sass/uswds/lib/settings/_asset-pipeline.scss +0 -7
- data/_sass/uswds/lib/settings/_disable-warnings.scss +0 -13
- data/_sass/uswds/lib/settings/_grid.scss +0 -51
- data/_sass/uswds/lib/settings/_prefixer.scss +0 -9
- data/_sass/uswds/lib/settings/_px-to-em.scss +0 -1
- data/_sass/uswds/lib/settings/_visual-grid.scss +0 -27
- data/_sass/uswds/uswds.scss +0 -41
- data/assets/css/main.scss +0 -93
- data/assets/uswds/fonts/merriweather-bold-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-bold-webfont.woff2 +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-italic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-light-webfont.woff2 +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.eot +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.ttf +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.woff +0 -0
- data/assets/uswds/fonts/merriweather-regular-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-bold-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-italic-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-light-webfont.woff2 +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.eot +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.ttf +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff +0 -0
- data/assets/uswds/fonts/sourcesanspro-regular-webfont.woff2 +0 -0
- data/assets/uswds/img/alerts/error.png +0 -0
- data/assets/uswds/img/alerts/info.png +0 -0
- data/assets/uswds/img/alerts/success.png +0 -0
- data/assets/uswds/img/alerts/warning.png +0 -0
- data/assets/uswds/img/angle-arrow-down-hover.png +0 -0
- data/assets/uswds/img/angle-arrow-down-primary-hover.png +0 -0
- data/assets/uswds/img/angle-arrow-down-primary.png +0 -0
- data/assets/uswds/img/angle-arrow-down.png +0 -0
- data/assets/uswds/img/angle-arrow-up-primary-hover.png +0 -0
- data/assets/uswds/img/angle-arrow-up-primary.png +0 -0
- data/assets/uswds/img/arrow-both.png +0 -0
- data/assets/uswds/img/arrow-down.png +0 -0
- data/assets/uswds/img/arrow-right.png +0 -0
- data/assets/uswds/img/close-primary.png +0 -0
- data/assets/uswds/img/close.png +0 -0
- data/assets/uswds/img/correct8.png +0 -0
- data/assets/uswds/img/correct9.png +0 -0
- data/assets/uswds/img/external-link-alt-hover.png +0 -0
- data/assets/uswds/img/external-link-alt.png +0 -0
- data/assets/uswds/img/external-link-hover.png +0 -0
- data/assets/uswds/img/external-link.png +0 -0
- data/assets/uswds/img/minus-alt.png +0 -0
- data/assets/uswds/img/minus.png +0 -0
- data/assets/uswds/img/plus-alt.png +0 -0
- data/assets/uswds/img/plus.png +0 -0
- data/assets/uswds/img/search-alt.png +0 -0
- data/assets/uswds/img/search-primary.png +0 -0
- data/assets/uswds/img/search.png +0 -0
- data/assets/uswds/img/social-icons/png/facebook25.png +0 -0
- data/assets/uswds/img/social-icons/png/rss25.png +0 -0
- data/assets/uswds/img/social-icons/png/twitter16.png +0 -0
- data/assets/uswds/img/social-icons/png/youtube15.png +0 -0
@@ -1,87 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
/// Removes the element's gutter margin, regardless of its position in the grid hierarchy or display property. It can target a specific element, or every `nth-child` occurrence. Works only with `block` layouts.
|
4
|
-
///
|
5
|
-
/// @param {List} $query [block]
|
6
|
-
/// List of arguments. Supported arguments are `nth-child` selectors (targets a specific pseudo element) and `auto` (targets `last-child`).
|
7
|
-
///
|
8
|
-
/// When passed an `nth-child` argument of type `*n` with `block` display, the omega mixin automatically adds a clear to the `*n+1` th element. Note that composite arguments such as `2n+1` do not support this feature.
|
9
|
-
///
|
10
|
-
/// **Deprecation warning**: The omega mixin will no longer take a `$direction` argument. To change the layout direction, use `row($direction)` or set `$default-layout-direction` instead.
|
11
|
-
///
|
12
|
-
/// @example scss - Usage
|
13
|
-
/// .element {
|
14
|
-
/// @include omega;
|
15
|
-
/// }
|
16
|
-
///
|
17
|
-
/// .nth-element {
|
18
|
-
/// @include omega(4n);
|
19
|
-
/// }
|
20
|
-
///
|
21
|
-
/// @example css - CSS Output
|
22
|
-
/// .element {
|
23
|
-
/// margin-right: 0;
|
24
|
-
/// }
|
25
|
-
///
|
26
|
-
/// .nth-element:nth-child(4n) {
|
27
|
-
/// margin-right: 0;
|
28
|
-
/// }
|
29
|
-
///
|
30
|
-
/// .nth-element:nth-child(4n+1) {
|
31
|
-
/// clear: left;
|
32
|
-
/// }
|
33
|
-
|
34
|
-
@mixin omega($query: block, $direction: default) {
|
35
|
-
$table: belongs-to(table, $query);
|
36
|
-
$auto: belongs-to(auto, $query);
|
37
|
-
|
38
|
-
@if $direction != default {
|
39
|
-
@include -neat-warn("The omega mixin will no longer take a $direction argument. To change the layout direction, use the direction(){...} mixin.");
|
40
|
-
} @else {
|
41
|
-
$direction: get-direction($layout-direction, $default-layout-direction);
|
42
|
-
}
|
43
|
-
|
44
|
-
@if $table {
|
45
|
-
@include -neat-warn("The omega mixin no longer removes padding in table layouts.");
|
46
|
-
}
|
47
|
-
|
48
|
-
@if length($query) == 1 {
|
49
|
-
@if $auto {
|
50
|
-
&:last-child {
|
51
|
-
margin-#{$direction}: 0;
|
52
|
-
}
|
53
|
-
}
|
54
|
-
|
55
|
-
@else if contains-display-value($query) and $table == false {
|
56
|
-
margin-#{$direction}: 0;
|
57
|
-
}
|
58
|
-
|
59
|
-
@else {
|
60
|
-
@include nth-child($query, $direction);
|
61
|
-
}
|
62
|
-
} @else if length($query) == 2 {
|
63
|
-
@if $auto {
|
64
|
-
&:last-child {
|
65
|
-
margin-#{$direction}: 0;
|
66
|
-
}
|
67
|
-
} @else {
|
68
|
-
@include nth-child(nth($query, 1), $direction);
|
69
|
-
}
|
70
|
-
} @else {
|
71
|
-
@include -neat-warn("Too many arguments passed to the omega() mixin.");
|
72
|
-
}
|
73
|
-
}
|
74
|
-
|
75
|
-
@mixin nth-child($query, $direction) {
|
76
|
-
$opposite-direction: get-opposite-direction($direction);
|
77
|
-
|
78
|
-
&:nth-child(#{$query}) {
|
79
|
-
margin-#{$direction}: 0;
|
80
|
-
}
|
81
|
-
|
82
|
-
@if type-of($query) == number and unit($query) == "n" {
|
83
|
-
&:nth-child(#{$query}+1) {
|
84
|
-
clear: $opposite-direction;
|
85
|
-
}
|
86
|
-
}
|
87
|
-
}
|
@@ -1,34 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
/// Makes an element a outer container by centering it in the viewport, clearing its floats, and setting its `max-width`.
|
4
|
-
/// Although optional, using `outer-container` is recommended. The mixin can be called on more than one element per page, as long as they are not nested.
|
5
|
-
///
|
6
|
-
/// @param {Number [unit]} $local-max-width [$max-width]
|
7
|
-
/// Max width to be applied to the element. Can be a percentage or a measure.
|
8
|
-
///
|
9
|
-
/// @example scss - Usage
|
10
|
-
/// .element {
|
11
|
-
/// @include outer-container(100%);
|
12
|
-
/// }
|
13
|
-
///
|
14
|
-
/// @example css - CSS Output
|
15
|
-
/// .element {
|
16
|
-
/// max-width: 100%;
|
17
|
-
/// margin-left: auto;
|
18
|
-
/// margin-right: auto;
|
19
|
-
/// }
|
20
|
-
///
|
21
|
-
/// .element::after {
|
22
|
-
/// clear: both;
|
23
|
-
/// content: "";
|
24
|
-
/// display: table;
|
25
|
-
/// }
|
26
|
-
|
27
|
-
@mixin outer-container($local-max-width: $max-width) {
|
28
|
-
@include clearfix;
|
29
|
-
max-width: $local-max-width;
|
30
|
-
margin: {
|
31
|
-
left: auto;
|
32
|
-
right: auto;
|
33
|
-
}
|
34
|
-
}
|
@@ -1,25 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
/// Adds padding to the element.
|
4
|
-
///
|
5
|
-
/// @param {List} $padding [flex-gutter()]
|
6
|
-
/// A list of padding value(s) to use. Passing `default` in the list will result in using the gutter width as a padding value.
|
7
|
-
///
|
8
|
-
/// @example scss - Usage
|
9
|
-
/// .element {
|
10
|
-
/// @include pad(30px -20px 10px default);
|
11
|
-
/// }
|
12
|
-
///
|
13
|
-
/// @example css - CSS Output
|
14
|
-
/// .element {
|
15
|
-
/// padding: 30px -20px 10px 2.35765%;
|
16
|
-
/// }
|
17
|
-
|
18
|
-
@mixin pad($padding: flex-gutter()) {
|
19
|
-
$padding-list: null;
|
20
|
-
@each $value in $padding {
|
21
|
-
$value: if($value == 'default', flex-gutter(), $value);
|
22
|
-
$padding-list: join($padding-list, $value);
|
23
|
-
}
|
24
|
-
padding: $padding-list;
|
25
|
-
}
|
@@ -1,35 +0,0 @@
|
|
1
|
-
$parent-columns: $grid-columns !default;
|
2
|
-
$fg-column: $column;
|
3
|
-
$fg-gutter: $gutter;
|
4
|
-
$fg-max-columns: $grid-columns;
|
5
|
-
$container-display-table: false !default;
|
6
|
-
$layout-direction: LTR !default;
|
7
|
-
|
8
|
-
@function flex-grid($columns, $container-columns: $fg-max-columns) {
|
9
|
-
$width: $columns * $fg-column + ($columns - 1) * $fg-gutter;
|
10
|
-
$container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
|
11
|
-
@return percentage($width / $container-width);
|
12
|
-
}
|
13
|
-
|
14
|
-
@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) {
|
15
|
-
$container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter;
|
16
|
-
@return percentage($gutter / $container-width);
|
17
|
-
}
|
18
|
-
|
19
|
-
@function grid-width($n) {
|
20
|
-
@return $n * $gw-column + ($n - 1) * $gw-gutter;
|
21
|
-
}
|
22
|
-
|
23
|
-
@function get-parent-columns($columns) {
|
24
|
-
@if $columns != $grid-columns {
|
25
|
-
$parent-columns: $columns !global;
|
26
|
-
} @else {
|
27
|
-
$parent-columns: $grid-columns !global;
|
28
|
-
}
|
29
|
-
|
30
|
-
@return $parent-columns;
|
31
|
-
}
|
32
|
-
|
33
|
-
@function is-display-table($container-is-display-table, $display) {
|
34
|
-
@return $container-is-display-table == true or $display == table;
|
35
|
-
}
|
@@ -1,52 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
/// Designates the element as a row of columns in the grid layout. It clears the floats on the element and sets its display property. Rows can't be nested, but there can be more than one row element—with different display properties—per layout.
|
4
|
-
///
|
5
|
-
/// @param {String} $display [default]
|
6
|
-
/// Sets the display property of the element and the display context that will be used by its children. Can be `block` or `table`.
|
7
|
-
///
|
8
|
-
/// @param {String} $direction [$default-layout-direction]
|
9
|
-
/// Sets the layout direction. Can be `LTR` (left-to-right) or `RTL` (right-to-left).
|
10
|
-
///
|
11
|
-
/// @example scss - Usage
|
12
|
-
/// .element {
|
13
|
-
/// @include row();
|
14
|
-
/// }
|
15
|
-
///
|
16
|
-
/// @example css - CSS Output
|
17
|
-
/// .element {
|
18
|
-
/// *zoom: 1;
|
19
|
-
/// display: block;
|
20
|
-
/// }
|
21
|
-
///
|
22
|
-
/// .element:before, .element:after {
|
23
|
-
/// content: " ";
|
24
|
-
/// display: table;
|
25
|
-
/// }
|
26
|
-
///
|
27
|
-
/// .element:after {
|
28
|
-
/// clear: both;
|
29
|
-
/// }
|
30
|
-
|
31
|
-
@mixin row($display: default, $direction: $default-layout-direction) {
|
32
|
-
@if $direction != $default-layout-direction {
|
33
|
-
@include -neat-warn("The $direction argument will be deprecated in future versions in favor of the direction(){...} mixin.");
|
34
|
-
}
|
35
|
-
|
36
|
-
$layout-direction: $direction !global;
|
37
|
-
|
38
|
-
@if $display != default {
|
39
|
-
@include -neat-warn("The $display argument will be deprecated in future versions in favor of the display(){...} mixin.");
|
40
|
-
}
|
41
|
-
|
42
|
-
@if $display == table {
|
43
|
-
display: table;
|
44
|
-
@include fill-parent;
|
45
|
-
table-layout: fixed;
|
46
|
-
$container-display-table: true !global;
|
47
|
-
} @else {
|
48
|
-
@include clearfix;
|
49
|
-
display: block;
|
50
|
-
$container-display-table: false !global;
|
51
|
-
}
|
52
|
-
}
|
@@ -1,50 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
/// Translates an element horizontally by a number of columns. Positive arguments shift the element to the active layout direction, while negative ones shift it to the opposite direction.
|
4
|
-
///
|
5
|
-
/// @param {Number (unitless)} $n-columns [1]
|
6
|
-
/// Number of columns by which the element shifts.
|
7
|
-
///
|
8
|
-
/// @example scss - Usage
|
9
|
-
/// .element {
|
10
|
-
/// @include shift(-3);
|
11
|
-
/// }
|
12
|
-
///
|
13
|
-
/// @example css - CSS output
|
14
|
-
/// .element {
|
15
|
-
/// margin-left: -25.58941%;
|
16
|
-
/// }
|
17
|
-
|
18
|
-
@mixin shift($n-columns: 1) {
|
19
|
-
@include shift-in-context($n-columns);
|
20
|
-
}
|
21
|
-
|
22
|
-
/// Translates an element horizontally by a number of columns, in a specific nesting context.
|
23
|
-
///
|
24
|
-
/// @param {List} $shift
|
25
|
-
/// A list containing the number of columns to shift (`$columns`) and the number of columns of the parent element (`$container-columns`).
|
26
|
-
///
|
27
|
-
/// The two values can be separated with any string such as `of`, `/`, etc.
|
28
|
-
///
|
29
|
-
/// @example scss - Usage
|
30
|
-
/// .element {
|
31
|
-
/// @include shift(-3 of 6);
|
32
|
-
/// }
|
33
|
-
///
|
34
|
-
/// @example css - CSS output
|
35
|
-
/// .element {
|
36
|
-
/// margin-left: -52.41458%;
|
37
|
-
/// }
|
38
|
-
|
39
|
-
@mixin shift-in-context($shift: $columns of $container-columns) {
|
40
|
-
$n-columns: nth($shift, 1);
|
41
|
-
$parent-columns: container-shift($shift) !global;
|
42
|
-
|
43
|
-
$direction: get-direction($layout-direction, $default-layout-direction);
|
44
|
-
$opposite-direction: get-opposite-direction($direction);
|
45
|
-
|
46
|
-
margin-#{$opposite-direction}: $n-columns * flex-grid(1, $parent-columns) + $n-columns * flex-gutter($parent-columns);
|
47
|
-
|
48
|
-
// Reset nesting context
|
49
|
-
$parent-columns: $grid-columns !global;
|
50
|
-
}
|
@@ -1,94 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
/// Specifies the number of columns an element should span. If the selector is nested the number of columns of its parent element should be passed as an argument as well.
|
4
|
-
///
|
5
|
-
/// @param {List} $span
|
6
|
-
/// A list containing `$columns`, the unitless number of columns the element spans (required), and `$container-columns`, the number of columns the parent element spans (optional).
|
7
|
-
///
|
8
|
-
/// If only one value is passed, it is assumed that it's `$columns` and that that `$container-columns` is equal to `$grid-columns`, the total number of columns in the grid.
|
9
|
-
///
|
10
|
-
/// The values can be separated with any string such as `of`, `/`, etc.
|
11
|
-
///
|
12
|
-
/// `$columns` also accepts decimals for when it's necessary to break out of the standard grid. E.g. Passing `2.4` in a standard 12 column grid will divide the row into 5 columns.
|
13
|
-
///
|
14
|
-
/// @param {String} $display [block]
|
15
|
-
/// Sets the display property of the element. By default it sets the display property of the element to `block`.
|
16
|
-
///
|
17
|
-
/// If passed `block-collapse`, it also removes the margin gutter by adding it to the element width.
|
18
|
-
///
|
19
|
-
/// If passed `table`, it sets the display property to `table-cell` and calculates the width of the element without taking gutters into consideration. The result does not align with the block-based grid.
|
20
|
-
///
|
21
|
-
/// @example scss - Usage
|
22
|
-
/// .element {
|
23
|
-
/// @include span-columns(6);
|
24
|
-
///
|
25
|
-
/// .nested-element {
|
26
|
-
/// @include span-columns(2 of 6);
|
27
|
-
/// }
|
28
|
-
/// }
|
29
|
-
///
|
30
|
-
/// @example css - CSS Output
|
31
|
-
/// .element {
|
32
|
-
/// display: block;
|
33
|
-
/// float: left;
|
34
|
-
/// margin-right: 2.35765%;
|
35
|
-
/// width: 48.82117%;
|
36
|
-
/// }
|
37
|
-
///
|
38
|
-
/// .element:last-child {
|
39
|
-
/// margin-right: 0;
|
40
|
-
/// }
|
41
|
-
///
|
42
|
-
/// .element .nested-element {
|
43
|
-
/// display: block;
|
44
|
-
/// float: left;
|
45
|
-
/// margin-right: 4.82916%;
|
46
|
-
/// width: 30.11389%;
|
47
|
-
/// }
|
48
|
-
///
|
49
|
-
/// .element .nested-element:last-child {
|
50
|
-
/// margin-right: 0;
|
51
|
-
/// }
|
52
|
-
|
53
|
-
@mixin span-columns($span: $columns of $container-columns, $display: block) {
|
54
|
-
$columns: nth($span, 1);
|
55
|
-
$container-columns: container-span($span);
|
56
|
-
|
57
|
-
$parent-columns: get-parent-columns($container-columns) !global;
|
58
|
-
|
59
|
-
$direction: get-direction($layout-direction, $default-layout-direction);
|
60
|
-
$opposite-direction: get-opposite-direction($direction);
|
61
|
-
|
62
|
-
$display-table: is-display-table($container-display-table, $display);
|
63
|
-
|
64
|
-
@if $display-table {
|
65
|
-
display: table-cell;
|
66
|
-
width: percentage($columns / $container-columns);
|
67
|
-
} @else {
|
68
|
-
float: #{$opposite-direction};
|
69
|
-
|
70
|
-
@if $display != no-display {
|
71
|
-
display: block;
|
72
|
-
}
|
73
|
-
|
74
|
-
@if $display == collapse {
|
75
|
-
@include -neat-warn("The 'collapse' argument will be deprecated. Use 'block-collapse' instead.");
|
76
|
-
}
|
77
|
-
|
78
|
-
@if $display == collapse or $display == block-collapse {
|
79
|
-
width: flex-grid($columns, $container-columns) + flex-gutter($container-columns);
|
80
|
-
|
81
|
-
&:last-child {
|
82
|
-
width: flex-grid($columns, $container-columns);
|
83
|
-
}
|
84
|
-
|
85
|
-
} @else {
|
86
|
-
margin-#{$direction}: flex-gutter($container-columns);
|
87
|
-
width: flex-grid($columns, $container-columns);
|
88
|
-
|
89
|
-
&:last-child {
|
90
|
-
margin-#{$direction}: 0;
|
91
|
-
}
|
92
|
-
}
|
93
|
-
}
|
94
|
-
}
|
@@ -1,97 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
|
3
|
-
@mixin breakpoint($query:$feature $value $columns, $total-columns: $grid-columns) {
|
4
|
-
@include -neat-warn("The breakpoint() mixin was renamed to media() in Neat 1.0. Please update your project with the new syntax before the next version bump.");
|
5
|
-
|
6
|
-
@if length($query) == 1 {
|
7
|
-
@media screen and ($default-feature: nth($query, 1)) {
|
8
|
-
$default-grid-columns: $grid-columns;
|
9
|
-
$grid-columns: $total-columns;
|
10
|
-
@content;
|
11
|
-
$grid-columns: $default-grid-columns;
|
12
|
-
}
|
13
|
-
} @else if length($query) == 2 {
|
14
|
-
@media screen and (nth($query, 1): nth($query, 2)) {
|
15
|
-
$default-grid-columns: $grid-columns;
|
16
|
-
$grid-columns: $total-columns;
|
17
|
-
@content;
|
18
|
-
$grid-columns: $default-grid-columns;
|
19
|
-
}
|
20
|
-
} @else if length($query) == 3 {
|
21
|
-
@media screen and (nth($query, 1): nth($query, 2)) {
|
22
|
-
$default-grid-columns: $grid-columns;
|
23
|
-
$grid-columns: nth($query, 3);
|
24
|
-
@content;
|
25
|
-
$grid-columns: $default-grid-columns;
|
26
|
-
}
|
27
|
-
} @else if length($query) == 4 {
|
28
|
-
@media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
|
29
|
-
$default-grid-columns: $grid-columns;
|
30
|
-
$grid-columns: $total-columns;
|
31
|
-
@content;
|
32
|
-
$grid-columns: $default-grid-columns;
|
33
|
-
}
|
34
|
-
} @else if length($query) == 5 {
|
35
|
-
@media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): nth($query, 4)) {
|
36
|
-
$default-grid-columns: $grid-columns;
|
37
|
-
$grid-columns: nth($query, 5);
|
38
|
-
@content;
|
39
|
-
$grid-columns: $default-grid-columns;
|
40
|
-
}
|
41
|
-
} @else {
|
42
|
-
@include -neat-warn("Wrong number of arguments for breakpoint(). Read the documentation for more details.");
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
@mixin nth-omega($nth, $display: block, $direction: default) {
|
47
|
-
@include -neat-warn("The nth-omega() mixin is deprecated. Please use omega() instead.");
|
48
|
-
@include omega($nth $display, $direction);
|
49
|
-
}
|
50
|
-
|
51
|
-
/// Resets the active display property to `block`. Particularly useful when changing the display property in a single row.
|
52
|
-
///
|
53
|
-
/// @example scss - Usage
|
54
|
-
/// .element {
|
55
|
-
/// @include row(table);
|
56
|
-
/// // Context changed to table display
|
57
|
-
/// }
|
58
|
-
///
|
59
|
-
/// @include reset-display;
|
60
|
-
/// // Context is reset to block display
|
61
|
-
|
62
|
-
@mixin reset-display {
|
63
|
-
$container-display-table: false !global;
|
64
|
-
@include -neat-warn("Resetting $display will be deprecated in future versions in favor of the display(){...} mixin.");
|
65
|
-
}
|
66
|
-
|
67
|
-
/// Resets the active layout direction to the default value set in `$default-layout-direction`. Particularly useful when changing the layout direction in a single row.
|
68
|
-
///
|
69
|
-
/// @example scss - Usage
|
70
|
-
/// .element {
|
71
|
-
/// @include row($direction: RTL);
|
72
|
-
/// // Context changed to right-to-left
|
73
|
-
/// }
|
74
|
-
///
|
75
|
-
/// @include reset-layout-direction;
|
76
|
-
/// // Context is reset to left-to-right
|
77
|
-
|
78
|
-
@mixin reset-layout-direction {
|
79
|
-
$layout-direction: $default-layout-direction !global;
|
80
|
-
@include -neat-warn("Resetting $direction will be deprecated in future versions in favor of the direction(){...} mixin.");
|
81
|
-
}
|
82
|
-
|
83
|
-
/// Resets both the active layout direction and the active display property.
|
84
|
-
///
|
85
|
-
/// @example scss - Usage
|
86
|
-
/// .element {
|
87
|
-
/// @include row(table, RTL);
|
88
|
-
/// // Context changed to table table and right-to-left
|
89
|
-
/// }
|
90
|
-
///
|
91
|
-
/// @include reset-all;
|
92
|
-
/// // Context is reset to block display and left-to-right
|
93
|
-
|
94
|
-
@mixin reset-all {
|
95
|
-
@include reset-display;
|
96
|
-
@include reset-layout-direction;
|
97
|
-
}
|