├── .editorconfig ├── .eleventy.js ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE │ └── design-docs.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build-deploy.yml │ ├── deploy-preview.yml │ ├── publish-webbundle.yml │ ├── test.yml │ └── visual-regression-test.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .lighthouserc.json ├── .node-version ├── .prettierignore ├── .prettierrc ├── .reg-suit └── actual_images │ └── .gitkeep ├── .renovaterc.json ├── .textlintrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── firebase.json ├── npm_scripts └── scrape.js ├── package.json ├── prh.yml ├── regconfig.json └── src ├── 1 ├── 1 │ └── 1.md ├── 2 │ └── 1.md ├── 3 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md └── 4 │ ├── 1.md │ ├── 10.md │ ├── 13.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 7.md │ └── 8.md ├── 2 ├── 1 │ ├── 1.md │ ├── 2.md │ └── 4.md ├── 2 │ ├── 1.md │ ├── 2.md │ └── 4.md ├── 3 │ ├── 1.md │ └── 3.md ├── 4 │ ├── 1.md │ ├── 10.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ └── 8.md └── 5 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md ├── 3 ├── 1 │ ├── 1.md │ ├── 3.md │ └── 5.md ├── 2 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ └── 4.md └── 3 │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ └── 5.md ├── 4 └── 1 │ ├── 1.md │ ├── 2.md │ └── 3.md ├── .nojekyll ├── 404.md ├── _data └── site.js ├── _filters ├── filterByGuidelineNumber.js └── scNumberToPath.js ├── _includes ├── 404.njk ├── index.njk ├── macros │ └── successCriteriaList.njk ├── partials │ ├── footer.njk │ ├── header.njk │ ├── level.njk │ ├── meta.html │ ├── meta.njk │ └── script.njk └── single.njk ├── _shortcodes └── label.js ├── _utils └── scToNumberForCompare.js ├── favicon.ico ├── img ├── 1 │ ├── 2 │ │ └── 1 │ │ │ └── movie.png │ ├── 3 │ │ ├── 3 │ │ │ ├── 1.3.3_ng.png │ │ │ └── 1.3.3_ok.png │ │ └── 5 │ │ │ └── autocomplete.png │ └── 4 │ │ ├── 1 │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ │ ├── 8 │ │ └── 1.4.8.svg │ │ └── 13 │ │ ├── 1.4.13_NG.mp4 │ │ └── 1.4.13_OK.mp4 ├── 2 │ ├── 2 │ │ ├── 2 │ │ │ ├── 2.2.2_1_NG.svg │ │ │ ├── 2.2.2_1_OK.svg │ │ │ ├── 2.2.2_2_NG.mp4 │ │ │ └── 2.2.2_2_OK.mp4 │ │ └── 4 │ │ │ ├── 2.2.4_ng.png │ │ │ └── 2.2.4_ok.png │ ├── 4 │ │ ├── 2 │ │ │ ├── 2.4.2_1.svg │ │ │ └── 2.4.2_2.svg │ │ ├── 4 │ │ │ ├── 2.4.4_1.svg │ │ │ ├── 2.4.4_2.svg │ │ │ ├── 2.4.4_3.svg │ │ │ ├── 2.4.4_4.svg │ │ │ ├── 2.4.4_ng.svg │ │ │ └── 2.4.4_ok.svg │ │ ├── 7 │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── 8 │ │ │ ├── 2.4.8_ng.svg │ │ │ └── 2.4.8_ok.svg │ └── 5 │ │ └── 5 │ │ ├── 2.5.5_1_ng.jpg │ │ ├── 2.5.5_1_ok.jpg │ │ ├── 2.5.5_2_ng.jpg │ │ └── 2.5.5_2_ok.jpg ├── 3 │ ├── 1 │ │ └── 5 │ │ │ └── 1.png │ ├── 2 │ │ ├── 2 │ │ │ ├── 3.2.2_B_NG.mp4 │ │ │ ├── 3.2.2_B_OK.mp4 │ │ │ ├── 3.2.2_C_NG.mp4 │ │ │ ├── 3.2.2_C_OK.mp4 │ │ │ └── 3.3.2_A_OK.svg │ │ └── 4 │ │ │ └── 3.2.4.png │ └── 3 │ │ ├── 1 │ │ ├── 3.3.1_ng.png │ │ └── 3.3.1_ok.png │ │ ├── 2 │ │ ├── 3.3.2_ng.png │ │ └── 3.3.2_ok.png │ │ ├── 3 │ │ ├── 3.3.3_1.png │ │ └── 3.3.3_2.png │ │ └── 5 │ │ ├── 3.3.5_ng.svg │ │ └── 3.3.5_ok.svg ├── 4 │ └── 1 │ │ └── 2 │ │ ├── .DS_Store │ │ ├── underline_tab.png │ │ ├── underline_tab_focused.png │ │ ├── web_test1.png │ │ └── web_test2.png ├── apple-touch-icon.png ├── icon │ ├── circle_bold.svg │ ├── cross_bold.svg │ ├── minus_bold.svg │ └── plus_bold.svg ├── logo-ameba-inverse.svg ├── logo-ameba.svg ├── logo-cyberagent-inverse.svg ├── logo-cyberagent.svg └── ogp │ ├── default.png │ ├── ogp_1.1.1.png │ ├── ogp_1.2.1.png │ ├── ogp_1.3.1.png │ ├── ogp_1.3.2.png │ ├── ogp_1.3.3.png │ ├── ogp_1.3.4.png │ ├── ogp_1.3.5.png │ ├── ogp_1.4.1.png │ ├── ogp_1.4.10.png │ ├── ogp_1.4.13.png │ ├── ogp_1.4.2.png │ ├── ogp_1.4.3.png │ ├── ogp_1.4.4.png │ ├── ogp_1.4.7.png │ ├── ogp_1.4.8.png │ ├── ogp_2.1.1.png │ ├── ogp_2.1.2.png │ ├── ogp_2.1.4.png │ ├── ogp_2.2.1.png │ ├── ogp_2.2.2.png │ ├── ogp_2.2.4.png │ ├── ogp_2.3.1.png │ ├── ogp_2.3.3.png │ ├── ogp_2.4.1.png │ ├── ogp_2.4.10.png │ ├── ogp_2.4.2.png │ ├── ogp_2.4.3.png │ ├── ogp_2.4.4.png │ ├── ogp_2.4.5.png │ ├── ogp_2.4.6.png │ ├── ogp_2.4.7.png │ ├── ogp_2.4.8.png │ ├── ogp_2.5.1.png │ ├── ogp_2.5.2.png │ ├── ogp_2.5.3.png │ ├── ogp_2.5.4.png │ ├── ogp_2.5.5.png │ ├── ogp_3.1.1.png │ ├── ogp_3.1.3.png │ ├── ogp_3.1.5.png │ ├── ogp_3.2.1.png │ ├── ogp_3.2.2.png │ ├── ogp_3.2.3.png │ ├── ogp_3.2.4.png │ ├── ogp_3.3.1.png │ ├── ogp_3.3.2.png │ ├── ogp_3.3.3.png │ ├── ogp_3.3.4.png │ ├── ogp_3.3.5.png │ ├── ogp_4.1.1.png │ ├── ogp_4.1.2.png │ └── ogp_4.1.3.png ├── index.md ├── robots.txt.njk ├── services └── index.md ├── sitemap.xml.njk ├── src └── index.md └── styles ├── common ├── base.css ├── color.css ├── container.css ├── figure.css ├── footer.css ├── header.css ├── heading.css ├── image.css ├── index.css ├── label.css ├── license.css ├── overrides.css ├── rule_label.css └── theme.css ├── default.css ├── default ├── heading.css └── index.css ├── detail.css ├── detail ├── code.css ├── details.css ├── heading.css └── index.css ├── highlight.js-dark.css └── highlight.js-light.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.eleventy.js -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/design-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/ISSUE_TEMPLATE/design-docs.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/workflows/build-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/workflows/deploy-preview.yml -------------------------------------------------------------------------------- /.github/workflows/publish-webbundle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/workflows/publish-webbundle.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/visual-regression-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.github/workflows/visual-regression-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.lighthouserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.lighthouserc.json -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 24.11.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.reg-suit/actual_images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.renovaterc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.renovaterc.json -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/.textlintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/firebase.json -------------------------------------------------------------------------------- /npm_scripts/scrape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/npm_scripts/scrape.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/package.json -------------------------------------------------------------------------------- /prh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/prh.yml -------------------------------------------------------------------------------- /regconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/regconfig.json -------------------------------------------------------------------------------- /src/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/1/1/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/1/1.md -------------------------------------------------------------------------------- /src/1/2/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/2/1.md -------------------------------------------------------------------------------- /src/1/3/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/3/1.md -------------------------------------------------------------------------------- /src/1/3/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/3/2.md -------------------------------------------------------------------------------- /src/1/3/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/3/3.md -------------------------------------------------------------------------------- /src/1/3/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/3/4.md -------------------------------------------------------------------------------- /src/1/3/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/3/5.md -------------------------------------------------------------------------------- /src/1/4/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/1.md -------------------------------------------------------------------------------- /src/1/4/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/10.md -------------------------------------------------------------------------------- /src/1/4/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/13.md -------------------------------------------------------------------------------- /src/1/4/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/2.md -------------------------------------------------------------------------------- /src/1/4/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/3.md -------------------------------------------------------------------------------- /src/1/4/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/4.md -------------------------------------------------------------------------------- /src/1/4/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/7.md -------------------------------------------------------------------------------- /src/1/4/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/1/4/8.md -------------------------------------------------------------------------------- /src/2/1/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/1/1.md -------------------------------------------------------------------------------- /src/2/1/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/1/2.md -------------------------------------------------------------------------------- /src/2/1/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/1/4.md -------------------------------------------------------------------------------- /src/2/2/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/2/1.md -------------------------------------------------------------------------------- /src/2/2/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/2/2.md -------------------------------------------------------------------------------- /src/2/2/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/2/4.md -------------------------------------------------------------------------------- /src/2/3/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/3/1.md -------------------------------------------------------------------------------- /src/2/3/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/3/3.md -------------------------------------------------------------------------------- /src/2/4/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/1.md -------------------------------------------------------------------------------- /src/2/4/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/10.md -------------------------------------------------------------------------------- /src/2/4/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/2.md -------------------------------------------------------------------------------- /src/2/4/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/3.md -------------------------------------------------------------------------------- /src/2/4/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/4.md -------------------------------------------------------------------------------- /src/2/4/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/5.md -------------------------------------------------------------------------------- /src/2/4/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/6.md -------------------------------------------------------------------------------- /src/2/4/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/7.md -------------------------------------------------------------------------------- /src/2/4/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/4/8.md -------------------------------------------------------------------------------- /src/2/5/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/5/1.md -------------------------------------------------------------------------------- /src/2/5/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/5/2.md -------------------------------------------------------------------------------- /src/2/5/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/5/3.md -------------------------------------------------------------------------------- /src/2/5/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/5/4.md -------------------------------------------------------------------------------- /src/2/5/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/2/5/5.md -------------------------------------------------------------------------------- /src/3/1/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/1/1.md -------------------------------------------------------------------------------- /src/3/1/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/1/3.md -------------------------------------------------------------------------------- /src/3/1/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/1/5.md -------------------------------------------------------------------------------- /src/3/2/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/2/1.md -------------------------------------------------------------------------------- /src/3/2/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/2/2.md -------------------------------------------------------------------------------- /src/3/2/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/2/3.md -------------------------------------------------------------------------------- /src/3/2/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/2/4.md -------------------------------------------------------------------------------- /src/3/3/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/3/1.md -------------------------------------------------------------------------------- /src/3/3/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/3/2.md -------------------------------------------------------------------------------- /src/3/3/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/3/3.md -------------------------------------------------------------------------------- /src/3/3/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/3/4.md -------------------------------------------------------------------------------- /src/3/3/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/3/3/5.md -------------------------------------------------------------------------------- /src/4/1/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/4/1/1.md -------------------------------------------------------------------------------- /src/4/1/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/4/1/2.md -------------------------------------------------------------------------------- /src/4/1/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/4/1/3.md -------------------------------------------------------------------------------- /src/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/404.md -------------------------------------------------------------------------------- /src/_data/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_data/site.js -------------------------------------------------------------------------------- /src/_filters/filterByGuidelineNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_filters/filterByGuidelineNumber.js -------------------------------------------------------------------------------- /src/_filters/scNumberToPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_filters/scNumberToPath.js -------------------------------------------------------------------------------- /src/_includes/404.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/404.njk -------------------------------------------------------------------------------- /src/_includes/index.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/index.njk -------------------------------------------------------------------------------- /src/_includes/macros/successCriteriaList.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/macros/successCriteriaList.njk -------------------------------------------------------------------------------- /src/_includes/partials/footer.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/partials/footer.njk -------------------------------------------------------------------------------- /src/_includes/partials/header.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/partials/header.njk -------------------------------------------------------------------------------- /src/_includes/partials/level.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/partials/level.njk -------------------------------------------------------------------------------- /src/_includes/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/partials/meta.html -------------------------------------------------------------------------------- /src/_includes/partials/meta.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/partials/meta.njk -------------------------------------------------------------------------------- /src/_includes/partials/script.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/partials/script.njk -------------------------------------------------------------------------------- /src/_includes/single.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_includes/single.njk -------------------------------------------------------------------------------- /src/_shortcodes/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_shortcodes/label.js -------------------------------------------------------------------------------- /src/_utils/scToNumberForCompare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/_utils/scToNumberForCompare.js -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/img/1/2/1/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/2/1/movie.png -------------------------------------------------------------------------------- /src/img/1/3/3/1.3.3_ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/3/3/1.3.3_ng.png -------------------------------------------------------------------------------- /src/img/1/3/3/1.3.3_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/3/3/1.3.3_ok.png -------------------------------------------------------------------------------- /src/img/1/3/5/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/3/5/autocomplete.png -------------------------------------------------------------------------------- /src/img/1/4/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/4/1/1.png -------------------------------------------------------------------------------- /src/img/1/4/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/4/1/2.png -------------------------------------------------------------------------------- /src/img/1/4/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/4/1/3.png -------------------------------------------------------------------------------- /src/img/1/4/13/1.4.13_NG.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/4/13/1.4.13_NG.mp4 -------------------------------------------------------------------------------- /src/img/1/4/13/1.4.13_OK.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/4/13/1.4.13_OK.mp4 -------------------------------------------------------------------------------- /src/img/1/4/8/1.4.8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/1/4/8/1.4.8.svg -------------------------------------------------------------------------------- /src/img/2/2/2/2.2.2_1_NG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/2/2/2.2.2_1_NG.svg -------------------------------------------------------------------------------- /src/img/2/2/2/2.2.2_1_OK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/2/2/2.2.2_1_OK.svg -------------------------------------------------------------------------------- /src/img/2/2/2/2.2.2_2_NG.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/2/2/2.2.2_2_NG.mp4 -------------------------------------------------------------------------------- /src/img/2/2/2/2.2.2_2_OK.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/2/2/2.2.2_2_OK.mp4 -------------------------------------------------------------------------------- /src/img/2/2/4/2.2.4_ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/2/4/2.2.4_ng.png -------------------------------------------------------------------------------- /src/img/2/2/4/2.2.4_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/2/4/2.2.4_ok.png -------------------------------------------------------------------------------- /src/img/2/4/2/2.4.2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/2/2.4.2_1.svg -------------------------------------------------------------------------------- /src/img/2/4/2/2.4.2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/2/2.4.2_2.svg -------------------------------------------------------------------------------- /src/img/2/4/4/2.4.4_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/4/2.4.4_1.svg -------------------------------------------------------------------------------- /src/img/2/4/4/2.4.4_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/4/2.4.4_2.svg -------------------------------------------------------------------------------- /src/img/2/4/4/2.4.4_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/4/2.4.4_3.svg -------------------------------------------------------------------------------- /src/img/2/4/4/2.4.4_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/4/2.4.4_4.svg -------------------------------------------------------------------------------- /src/img/2/4/4/2.4.4_ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/4/2.4.4_ng.svg -------------------------------------------------------------------------------- /src/img/2/4/4/2.4.4_ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/4/2.4.4_ok.svg -------------------------------------------------------------------------------- /src/img/2/4/7/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/7/1.png -------------------------------------------------------------------------------- /src/img/2/4/7/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/7/2.png -------------------------------------------------------------------------------- /src/img/2/4/8/2.4.8_ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/8/2.4.8_ng.svg -------------------------------------------------------------------------------- /src/img/2/4/8/2.4.8_ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/4/8/2.4.8_ok.svg -------------------------------------------------------------------------------- /src/img/2/5/5/2.5.5_1_ng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/5/5/2.5.5_1_ng.jpg -------------------------------------------------------------------------------- /src/img/2/5/5/2.5.5_1_ok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/5/5/2.5.5_1_ok.jpg -------------------------------------------------------------------------------- /src/img/2/5/5/2.5.5_2_ng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/5/5/2.5.5_2_ng.jpg -------------------------------------------------------------------------------- /src/img/2/5/5/2.5.5_2_ok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/2/5/5/2.5.5_2_ok.jpg -------------------------------------------------------------------------------- /src/img/3/1/5/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/1/5/1.png -------------------------------------------------------------------------------- /src/img/3/2/2/3.2.2_B_NG.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/2/2/3.2.2_B_NG.mp4 -------------------------------------------------------------------------------- /src/img/3/2/2/3.2.2_B_OK.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/2/2/3.2.2_B_OK.mp4 -------------------------------------------------------------------------------- /src/img/3/2/2/3.2.2_C_NG.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/2/2/3.2.2_C_NG.mp4 -------------------------------------------------------------------------------- /src/img/3/2/2/3.2.2_C_OK.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/2/2/3.2.2_C_OK.mp4 -------------------------------------------------------------------------------- /src/img/3/2/2/3.3.2_A_OK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/2/2/3.3.2_A_OK.svg -------------------------------------------------------------------------------- /src/img/3/2/4/3.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/2/4/3.2.4.png -------------------------------------------------------------------------------- /src/img/3/3/1/3.3.1_ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/1/3.3.1_ng.png -------------------------------------------------------------------------------- /src/img/3/3/1/3.3.1_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/1/3.3.1_ok.png -------------------------------------------------------------------------------- /src/img/3/3/2/3.3.2_ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/2/3.3.2_ng.png -------------------------------------------------------------------------------- /src/img/3/3/2/3.3.2_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/2/3.3.2_ok.png -------------------------------------------------------------------------------- /src/img/3/3/3/3.3.3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/3/3.3.3_1.png -------------------------------------------------------------------------------- /src/img/3/3/3/3.3.3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/3/3.3.3_2.png -------------------------------------------------------------------------------- /src/img/3/3/5/3.3.5_ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/5/3.3.5_ng.svg -------------------------------------------------------------------------------- /src/img/3/3/5/3.3.5_ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/3/3/5/3.3.5_ok.svg -------------------------------------------------------------------------------- /src/img/4/1/2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/4/1/2/.DS_Store -------------------------------------------------------------------------------- /src/img/4/1/2/underline_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/4/1/2/underline_tab.png -------------------------------------------------------------------------------- /src/img/4/1/2/underline_tab_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/4/1/2/underline_tab_focused.png -------------------------------------------------------------------------------- /src/img/4/1/2/web_test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/4/1/2/web_test1.png -------------------------------------------------------------------------------- /src/img/4/1/2/web_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/4/1/2/web_test2.png -------------------------------------------------------------------------------- /src/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/apple-touch-icon.png -------------------------------------------------------------------------------- /src/img/icon/circle_bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/icon/circle_bold.svg -------------------------------------------------------------------------------- /src/img/icon/cross_bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/icon/cross_bold.svg -------------------------------------------------------------------------------- /src/img/icon/minus_bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/icon/minus_bold.svg -------------------------------------------------------------------------------- /src/img/icon/plus_bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/icon/plus_bold.svg -------------------------------------------------------------------------------- /src/img/logo-ameba-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/logo-ameba-inverse.svg -------------------------------------------------------------------------------- /src/img/logo-ameba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/logo-ameba.svg -------------------------------------------------------------------------------- /src/img/logo-cyberagent-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/logo-cyberagent-inverse.svg -------------------------------------------------------------------------------- /src/img/logo-cyberagent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/logo-cyberagent.svg -------------------------------------------------------------------------------- /src/img/ogp/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/default.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.1.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.2.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.3.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.3.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.3.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.3.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.3.5.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.10.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.13.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.7.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_1.4.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_1.4.8.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.1.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.1.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.1.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.1.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.2.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.2.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.2.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.3.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.3.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.10.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.5.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.6.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.7.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.4.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.4.8.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.5.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.5.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.5.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.5.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.5.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.5.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.5.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_2.5.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_2.5.5.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.1.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.1.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.1.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.1.5.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.2.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.2.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.2.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.2.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.2.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.2.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.2.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.3.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.3.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.3.3.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.3.4.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_3.3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_3.3.5.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_4.1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_4.1.1.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_4.1.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_4.1.2.png -------------------------------------------------------------------------------- /src/img/ogp/ogp_4.1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/img/ogp/ogp_4.1.3.png -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/index.md -------------------------------------------------------------------------------- /src/robots.txt.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/robots.txt.njk -------------------------------------------------------------------------------- /src/services/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/services/index.md -------------------------------------------------------------------------------- /src/sitemap.xml.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/sitemap.xml.njk -------------------------------------------------------------------------------- /src/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/src/index.md -------------------------------------------------------------------------------- /src/styles/common/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/base.css -------------------------------------------------------------------------------- /src/styles/common/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/color.css -------------------------------------------------------------------------------- /src/styles/common/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/container.css -------------------------------------------------------------------------------- /src/styles/common/figure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/figure.css -------------------------------------------------------------------------------- /src/styles/common/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/footer.css -------------------------------------------------------------------------------- /src/styles/common/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/header.css -------------------------------------------------------------------------------- /src/styles/common/heading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/heading.css -------------------------------------------------------------------------------- /src/styles/common/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/image.css -------------------------------------------------------------------------------- /src/styles/common/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/index.css -------------------------------------------------------------------------------- /src/styles/common/label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/label.css -------------------------------------------------------------------------------- /src/styles/common/license.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/license.css -------------------------------------------------------------------------------- /src/styles/common/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/overrides.css -------------------------------------------------------------------------------- /src/styles/common/rule_label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/rule_label.css -------------------------------------------------------------------------------- /src/styles/common/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/common/theme.css -------------------------------------------------------------------------------- /src/styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/default.css -------------------------------------------------------------------------------- /src/styles/default/heading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/default/heading.css -------------------------------------------------------------------------------- /src/styles/default/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/default/index.css -------------------------------------------------------------------------------- /src/styles/detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/detail.css -------------------------------------------------------------------------------- /src/styles/detail/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/detail/code.css -------------------------------------------------------------------------------- /src/styles/detail/details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/detail/details.css -------------------------------------------------------------------------------- /src/styles/detail/heading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/detail/heading.css -------------------------------------------------------------------------------- /src/styles/detail/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/detail/index.css -------------------------------------------------------------------------------- /src/styles/highlight.js-dark.css: -------------------------------------------------------------------------------- 1 | @import '@openameba/spindle-syntax-themes/highlightjs-dark.css'; 2 | -------------------------------------------------------------------------------- /src/styles/highlight.js-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openameba/a11y-guidelines/HEAD/src/styles/highlight.js-light.css --------------------------------------------------------------------------------