Skip to content

Instantly share code, notes, and snippets.

@fstrr
fstrr / stylus-styles-for-wcag-auditing.md
Last active October 28, 2025 21:45
Stylus styles for WCAG auditing

display links and buttons with aria-label attributes

a[aria-label]::after, button[aria-label]::after{
	background:hsl(13,100%,44%);
	color:#fff;
	content:attr(aria-label);
	display:block;
}
@fstrr
fstrr / letterboxd-posters-to-searchable-text.css
Last active January 23, 2025 04:11
Letterboxd: hide image posters and replace with link text
.poster-container .image{
visibility:hidden;
}
.list-frame, .poster .frame{
text-indent:initial;
}
.frame-title{
color:#768798; /* improve color contrast to WCAG 4.5:1 minimum */