├── .editorconfig ├── .github └── dependabot.yml ├── .gitignore ├── .ruby-version ├── .template_version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── config.rb ├── config └── tech-docs.yml └── source ├── _example_snippets ├── complex_language │ ├── _bad.erb │ └── _good.erb ├── form_fields_no_label │ ├── _bad.erb │ └── _good.erb ├── graph_no_alt │ ├── _bad.erb │ └── _good.erb ├── icon_font │ ├── _bad.erb │ └── _good.erb ├── large_blocks_of_text │ ├── _bad.erb │ └── _good.erb ├── pagination │ ├── _bad.erb │ └── _good.erb ├── refer_to_colour │ ├── _bad.erb │ └── _good.erb ├── table │ ├── _bad.erb │ ├── _good.erb │ └── _table.erb ├── timer │ └── _timer.erb ├── tooltip │ ├── _bad.erb │ └── _good.erb ├── unstructured_text │ ├── _bad.erb │ └── _good.erb └── video │ ├── _bad.erb │ └── _good.erb ├── accessibility.html.md ├── ashleigh ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── chris ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── claudia ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── fail.html.md ├── fake.html.md ├── images ├── accessibility-survey-table.png └── persona-avatars │ ├── _source │ ├── ashleigh.svg │ ├── chris.svg │ ├── claudia.svg │ ├── pawel.svg │ ├── ron.svg │ ├── saleem.svg │ └── simone.svg │ ├── ashleigh.png │ ├── chris.png │ ├── claudia.png │ ├── pawel.png │ ├── ron.png │ ├── saleem.png │ └── simone.png ├── index.html.md ├── javascripts └── application.js ├── pawel ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── raw_assets ├── Persona-Ashleigh.user.js ├── Persona-Chris.user.js ├── Persona-Claudia.user.js ├── Persona-Pawel.user.js ├── Persona-Ron.user.js ├── Persona-Saleem.user.js ├── Persona-Simone.user.js ├── distractions.user.js ├── heavy-blur.user.css ├── light-blur.user.css ├── monochrome.user.css ├── remove-cursor.user.css ├── scramble-letters.user.js ├── translate-to-piglatin.user.js └── wobbly-mouse.user.js ├── ron ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── saleem ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── setup ├── alternatives.html.md └── index.html.md ├── simone ├── bad.html.md.erb ├── good.html.md.erb └── index.html.md ├── stylesheets ├── application.css.scss ├── print.css.scss ├── screen-old-ie.css.scss └── screen.css.scss └── success.html.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.5 2 | -------------------------------------------------------------------------------- /.template_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/.template_version -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'middleman-gh-pages' -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/config.rb -------------------------------------------------------------------------------- /config/tech-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/config/tech-docs.yml -------------------------------------------------------------------------------- /source/_example_snippets/complex_language/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/complex_language/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/complex_language/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/complex_language/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/form_fields_no_label/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/form_fields_no_label/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/form_fields_no_label/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/form_fields_no_label/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/graph_no_alt/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/graph_no_alt/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/graph_no_alt/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/graph_no_alt/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/icon_font/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/icon_font/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/icon_font/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/icon_font/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/large_blocks_of_text/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/large_blocks_of_text/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/large_blocks_of_text/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/large_blocks_of_text/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/pagination/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/pagination/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/pagination/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/pagination/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/refer_to_colour/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/refer_to_colour/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/refer_to_colour/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/refer_to_colour/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/table/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/table/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/table/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/table/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/table/_table.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/table/_table.erb -------------------------------------------------------------------------------- /source/_example_snippets/timer/_timer.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/timer/_timer.erb -------------------------------------------------------------------------------- /source/_example_snippets/tooltip/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/tooltip/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/tooltip/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/tooltip/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/unstructured_text/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/unstructured_text/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/unstructured_text/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/unstructured_text/_good.erb -------------------------------------------------------------------------------- /source/_example_snippets/video/_bad.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/video/_bad.erb -------------------------------------------------------------------------------- /source/_example_snippets/video/_good.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/_example_snippets/video/_good.erb -------------------------------------------------------------------------------- /source/accessibility.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/accessibility.html.md -------------------------------------------------------------------------------- /source/ashleigh/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/ashleigh/bad.html.md.erb -------------------------------------------------------------------------------- /source/ashleigh/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/ashleigh/good.html.md.erb -------------------------------------------------------------------------------- /source/ashleigh/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/ashleigh/index.html.md -------------------------------------------------------------------------------- /source/chris/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/chris/bad.html.md.erb -------------------------------------------------------------------------------- /source/chris/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/chris/good.html.md.erb -------------------------------------------------------------------------------- /source/chris/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/chris/index.html.md -------------------------------------------------------------------------------- /source/claudia/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/claudia/bad.html.md.erb -------------------------------------------------------------------------------- /source/claudia/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/claudia/good.html.md.erb -------------------------------------------------------------------------------- /source/claudia/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/claudia/index.html.md -------------------------------------------------------------------------------- /source/fail.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/fail.html.md -------------------------------------------------------------------------------- /source/fake.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/fake.html.md -------------------------------------------------------------------------------- /source/images/accessibility-survey-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/accessibility-survey-table.png -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/ashleigh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/ashleigh.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/chris.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/chris.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/claudia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/claudia.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/pawel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/pawel.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/ron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/ron.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/saleem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/saleem.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/_source/simone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/_source/simone.svg -------------------------------------------------------------------------------- /source/images/persona-avatars/ashleigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/ashleigh.png -------------------------------------------------------------------------------- /source/images/persona-avatars/chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/chris.png -------------------------------------------------------------------------------- /source/images/persona-avatars/claudia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/claudia.png -------------------------------------------------------------------------------- /source/images/persona-avatars/pawel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/pawel.png -------------------------------------------------------------------------------- /source/images/persona-avatars/ron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/ron.png -------------------------------------------------------------------------------- /source/images/persona-avatars/saleem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/saleem.png -------------------------------------------------------------------------------- /source/images/persona-avatars/simone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/images/persona-avatars/simone.png -------------------------------------------------------------------------------- /source/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/index.html.md -------------------------------------------------------------------------------- /source/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require govuk_tech_docs 2 | -------------------------------------------------------------------------------- /source/pawel/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/pawel/bad.html.md.erb -------------------------------------------------------------------------------- /source/pawel/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/pawel/good.html.md.erb -------------------------------------------------------------------------------- /source/pawel/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/pawel/index.html.md -------------------------------------------------------------------------------- /source/raw_assets/Persona-Ashleigh.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Ashleigh.user.js -------------------------------------------------------------------------------- /source/raw_assets/Persona-Chris.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Chris.user.js -------------------------------------------------------------------------------- /source/raw_assets/Persona-Claudia.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Claudia.user.js -------------------------------------------------------------------------------- /source/raw_assets/Persona-Pawel.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Pawel.user.js -------------------------------------------------------------------------------- /source/raw_assets/Persona-Ron.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Ron.user.js -------------------------------------------------------------------------------- /source/raw_assets/Persona-Saleem.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Saleem.user.js -------------------------------------------------------------------------------- /source/raw_assets/Persona-Simone.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/Persona-Simone.user.js -------------------------------------------------------------------------------- /source/raw_assets/distractions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/distractions.user.js -------------------------------------------------------------------------------- /source/raw_assets/heavy-blur.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/heavy-blur.user.css -------------------------------------------------------------------------------- /source/raw_assets/light-blur.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/light-blur.user.css -------------------------------------------------------------------------------- /source/raw_assets/monochrome.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/monochrome.user.css -------------------------------------------------------------------------------- /source/raw_assets/remove-cursor.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/remove-cursor.user.css -------------------------------------------------------------------------------- /source/raw_assets/scramble-letters.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/scramble-letters.user.js -------------------------------------------------------------------------------- /source/raw_assets/translate-to-piglatin.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/translate-to-piglatin.user.js -------------------------------------------------------------------------------- /source/raw_assets/wobbly-mouse.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/raw_assets/wobbly-mouse.user.js -------------------------------------------------------------------------------- /source/ron/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/ron/bad.html.md.erb -------------------------------------------------------------------------------- /source/ron/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/ron/good.html.md.erb -------------------------------------------------------------------------------- /source/ron/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/ron/index.html.md -------------------------------------------------------------------------------- /source/saleem/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/saleem/bad.html.md.erb -------------------------------------------------------------------------------- /source/saleem/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/saleem/good.html.md.erb -------------------------------------------------------------------------------- /source/saleem/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/saleem/index.html.md -------------------------------------------------------------------------------- /source/setup/alternatives.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/setup/alternatives.html.md -------------------------------------------------------------------------------- /source/setup/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/setup/index.html.md -------------------------------------------------------------------------------- /source/simone/bad.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/simone/bad.html.md.erb -------------------------------------------------------------------------------- /source/simone/good.html.md.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/simone/good.html.md.erb -------------------------------------------------------------------------------- /source/simone/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/simone/index.html.md -------------------------------------------------------------------------------- /source/stylesheets/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/stylesheets/application.css.scss -------------------------------------------------------------------------------- /source/stylesheets/print.css.scss: -------------------------------------------------------------------------------- 1 | $is-print: true; 2 | 3 | @import "govuk_tech_docs"; 4 | -------------------------------------------------------------------------------- /source/stylesheets/screen-old-ie.css.scss: -------------------------------------------------------------------------------- 1 | $is-ie: true; 2 | $ie-version: 8; 3 | 4 | @import "application.css"; 5 | -------------------------------------------------------------------------------- /source/stylesheets/screen.css.scss: -------------------------------------------------------------------------------- 1 | @import "application.css"; 2 | -------------------------------------------------------------------------------- /source/success.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/accessibility-personas/HEAD/source/success.html.md --------------------------------------------------------------------------------