CSS: Draw an outline around targets.

This commit is contained in:
tastytea 2021-07-20 15:58:12 +02:00
parent f9fcf4c916
commit 76736a90dc
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,7 @@ html
color: var(--fg); color: var(--fg);
font-family: var(--font-serif); font-family: var(--font-serif);
text-align: justify; text-align: justify;
scroll-padding-top: 0.5em;
} }
body body
@ -308,3 +309,8 @@ kbd
{ {
text-align: left; text-align: left;
} }
:target
{
outline: 0.01em dotted var(--fg-dim);
}