tiny, simple, classless CSS framework inspired by new.css devcss.devins.page
framework lightweight css classless stylesheet

fix: visible links on old browsers

older browsers don't support light-dark, so links appear the same color as normal text. this makes linked text underlined on unsupported browsers to make it more visible

+6
+6
dev.css
··· 196 196 text-decoration: underline; 197 197 } 198 198 199 + @supports not (light-dark()) { 200 + a { 201 + text-decoration: underline; 202 + } 203 + } 204 + 199 205 mark { 200 206 border-radius: 0.375rem; 201 207 padding: 0.125rem 0.25rem;