These are the resources mentioned during my talk, Accessibility at Scale, delivered for Ro on September 21, 2023.
This file contains 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 { | |
--custom-border-radius: 999999px; | |
--custom-color-background: #ffffff; | |
--custom-color-background-panel: #f7f9fa; | |
--custom-color-background-select: #616981; | |
--custom-color-background-dm: #f7f7fe; | |
--custom-color-background-focus: #e0e5eb; | |
--custom-color-background-verified: #bdf7af; | |
--custom-color-border-resting: #e0e5eb; | |
--custom-color-border-active: #c2ccd8; |
ChatGPT: Hi there! How can I help you? (try the Inspire Me button for ideas!)
User: Write the code for a tabbed user interface that uses HTML, JavaScript, and CSS.
ChatGPT: I'll provide you with a template that you can use to create a tabbed user interface utilizing HTML, JavaScript and CSS.
These are companion resources for the Intro to mobile screen readers recording for the Accessibility Champions program.
This file contains 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
/* BODY AND ROOT */ | |
:root { | |
--color-background: #ffffff; | |
--color-background-subtle: #f8f9f9; | |
--color-border-subtle: #f0f3f4; | |
--color-border: #d7dee2; | |
} | |
body { | |
background-color: var(--color-background); |
These are the resources mentioned during my talk, Accessibility and Inclusive Design, delivered for Project Jupyter on March 12, 2022.
This file contains 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
<div class="case-study-cards-grid__card"> | |
<img | |
alt="The Real Simple Energy account page, highlighting $60 in savings from using their service." | |
src="/img/case-study-card__real-simple-energy_v2.jpg" | |
loading="lazy" | |
class="case-study-cards-grid__image u-pointer" | |
onclick="location.href='/case-studies/real-simple-energy'" /> | |
<div class="case-study-cards-grid__text-wrapper"> | |
<div> | |
<p class="case-study-cards-grid__description type-body"> |
NewerOlder