These are the resources mentioned during my talk, Accessibility at Scale, delivered at enterJS on June 27, 2019 in Darmstadt, Germany.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.article-details { | |
display: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { DateTime } = require("luxon"); | |
const pluginRss = require("@11ty/eleventy-plugin-rss"); | |
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight"); | |
module.exports = function (eleventyConfig) { | |
eleventyConfig.addPlugin(pluginRss); | |
eleventyConfig.addPlugin(pluginSyntaxHighlight); | |
eleventyConfig.setDataDeepMerge(true); | |
eleventyConfig.addLayoutAlias("post", "layouts/post.njk"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.LeftnavList { | |
width: 220px; | |
} | |
.LeftnavListRow__text { | |
width: 100px; | |
} | |
.feedlyChrome--leftnav-open .LeftnavPin { | |
left: 284px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* LOGO | |
*/ | |
[aria-label="Twitter"] { | |
display: none; | |
} | |
/* | |
* LEFT COLUMN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.c-tab { | |
color: var(--color-tab-type); | |
// Other component declarations | |
@media (prefers-color-scheme: dark) { | |
--color-tab-link: #ffffff; | |
color: var(--color-tab-link) | |
// Other component theme tweaks | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--color-tab-link: #007aff; | |
// Other CSS Custom property declarations | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$colors: ( | |
tab ( | |
background: #6b9cdd, | |
border: #00e2ff, | |
link: #ffffe7, | |
link-hover: #ffd5d9, | |
link-active: #ffadfb, | |
type: #ffffff, | |
dark-theme: ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.c-tab { | |
color: c(tab, type); | |
border: 1px solid c(tab, border); | |
padding: 1rem 3rem; | |
@media (prefers-color-scheme: dark) { | |
background-color: c(tab, dark-theme, background); | |
} | |
a { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$colors: ( | |
brand-primary: #6b9cdd, | |
brand-secondary: #ffadfa, | |
brand-tertiary: #fed5d8, | |
tab ( | |
background: #6b9cdd, | |
border: #00e2ff, | |
link: #ffffe7, | |
link-hover: #ffd5d9, |