Daily Shaarli

All links of one day in a single page.

September 18, 2022

My Blog is Hilariously Overengineered to the Point People Think it's a Static Site - Xe

because it is faster than a static website... because everything is in the RAM.

DaljeetDhaliwal/J.A.R.V.I.S-loading: iron man loading

Why not :)

#idea #project fork it to provide a demo

Focus Styles on Non-Interactive Elements? | CSS-Tricks - CSS-Tricks

Headings are not focusable because they are not interactive, as long as the headings are not links… ;)

Here an example of how to make focused element transition on focus:

section:focus {
  outline: 0;
  animation: yellowFade 3s forwards;
}
@keyframes yellowFade {
  from { background: lightYellow; }
  to   { background: white; }
}