base.css: focus outline

This commit is contained in:
He4eT 2025-02-19 00:55:35 +01:00
commit 0737c9619f

View file

@ -7,14 +7,22 @@ body {
overflow-y: scroll;
}
/* */
*::selection {
background-color: var(--color-fg);
color: var(--color-bg);
}
*:focus-visible {
outline: calc(0.5 * var(--step)) solid var(--color-fg);
outline-offset: calc(0.5 * var(--step));
}
/* */
h1 {
font-family: Xecut, sans-sefif;
font-weight: normal;
font-size: 72px;
font-size: calc(9 * var(--step));
margin-block-start: 0;
}