chore: initialize public repository
CI / checks (push) Has been cancelled

This commit is contained in:
maddin
2026-03-22 12:57:09 +00:00
commit 6fbd1bb3c2
142 changed files with 19826 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
min-height: 100%;
}
body {
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font-family-base);
font-size: var(--font-size-md);
font-weight: var(--font-weight-normal);
line-height: 1.4;
}
a {
color: var(--color-link);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
display: block;
height: auto;
max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
hr {
border: 0;
border-top: var(--border-width-1) solid var(--color-border);
margin: var(--space-5) 0;
}
:focus-visible {
outline: var(--border-width-1) solid var(--color-warning);
outline-offset: var(--space-1);
}