├── .config ├── .markdownlint.json ├── .prettierignore ├── .prettierrc └── .stylelintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── typo-report.md └── dependabot.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── css ├── ao3butbetter.user.css ├── ao3tagsfonts.css └── light-dark-test.user.css ├── img ├── FF14_nostyle_AO3.png ├── FF14_yesstyle_AO3.png ├── fandompage-nostylesheet-archiveofourown.org.png ├── fandompage-yeswithstylesheet-archiveofourown.org.png ├── stylus_extension_stylesheet_install_screen.png ├── tb_FF14_nostyle_AO3.png ├── tb_FF14_yesstyle_AO3.png ├── tb_stylus_extension_stylesheet_install_screen.png ├── th-fandompage-nostylesheet-archiveofourown.org.png └── th-fandompage-yeswithstylesheet-archiveofourown.org.png ├── new └── ao3readability.user.css ├── package.json └── prepros.config /.config/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.config/.markdownlint.json -------------------------------------------------------------------------------- /.config/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore markdown files 2 | 3 | *.md 4 | -------------------------------------------------------------------------------- /.config/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.config/.prettierrc -------------------------------------------------------------------------------- /.config/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.config/.stylelintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/typo-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.github/ISSUE_TEMPLATE/typo-report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to the Better AO3 Tags and Fonts Project 2 | 3 | 🚧 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /css/ao3butbetter.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/css/ao3butbetter.user.css -------------------------------------------------------------------------------- /css/ao3tagsfonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/css/ao3tagsfonts.css -------------------------------------------------------------------------------- /css/light-dark-test.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/css/light-dark-test.user.css -------------------------------------------------------------------------------- /img/FF14_nostyle_AO3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/FF14_nostyle_AO3.png -------------------------------------------------------------------------------- /img/FF14_yesstyle_AO3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/FF14_yesstyle_AO3.png -------------------------------------------------------------------------------- /img/fandompage-nostylesheet-archiveofourown.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/fandompage-nostylesheet-archiveofourown.org.png -------------------------------------------------------------------------------- /img/fandompage-yeswithstylesheet-archiveofourown.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/fandompage-yeswithstylesheet-archiveofourown.org.png -------------------------------------------------------------------------------- /img/stylus_extension_stylesheet_install_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/stylus_extension_stylesheet_install_screen.png -------------------------------------------------------------------------------- /img/tb_FF14_nostyle_AO3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/tb_FF14_nostyle_AO3.png -------------------------------------------------------------------------------- /img/tb_FF14_yesstyle_AO3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/tb_FF14_yesstyle_AO3.png -------------------------------------------------------------------------------- /img/tb_stylus_extension_stylesheet_install_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/tb_stylus_extension_stylesheet_install_screen.png -------------------------------------------------------------------------------- /img/th-fandompage-nostylesheet-archiveofourown.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/th-fandompage-nostylesheet-archiveofourown.org.png -------------------------------------------------------------------------------- /img/th-fandompage-yeswithstylesheet-archiveofourown.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/img/th-fandompage-yeswithstylesheet-archiveofourown.org.png -------------------------------------------------------------------------------- /new/ao3readability.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/new/ao3readability.user.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/package.json -------------------------------------------------------------------------------- /prepros.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyxmidnight/ao3tagsfonts/HEAD/prepros.config --------------------------------------------------------------------------------