cleanup
All checks were successful
Build Org Website / build (push) Successful in 45s

This commit is contained in:
2026-05-07 10:25:48 +01:00
parent cc0b739e66
commit 82813556f2
6 changed files with 283 additions and 99 deletions

View File

@@ -15,6 +15,9 @@
--fg: #000000;
--link: #1a0dab;
--heading: #004c99;
--surface: #ffffff;
--surface-soft: #f3f1eb;
--accent: #2563eb;
--code-bg: #f0f0f0;
--active-toc: #cacaca;
--note-color: #555;
@@ -41,6 +44,9 @@
--fg: #e6e6e6;
--link: #8ab4ff;
--heading: #9ecbff;
--surface: #151820;
--surface-soft: #1b202a;
--accent: #8ab4ff;
--code-bg: #1a1d24;
--note-color: #c2c7cf;
@@ -75,13 +81,43 @@ html, body{
transition: background-color .3s, color .3s;
margin: 0;
font-family: 'Noto', system-ui, sans-serif;
line-height: 1.65;
}
h1, h2, h3{ color: var(--heading); }
body {
min-height: 100vh;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
::selection {
background: color-mix(in oklab, var(--accent) 24%, transparent);
}
h1, h2, h3{
color: var(--heading);
line-height: 1.18;
letter-spacing: 0;
}
h1 {
margin-top: 2.25rem;
margin-bottom: 1rem;
font-size: clamp(2rem, 4vw, 3.4rem);
}
h2 {
margin-top: 2.2rem;
}
p {
margin: 0 0 1.15rem;
}
a {
color: var(--link);
text-decoration: none;
text-underline-offset: 0.18em;
}
a:hover {
@@ -91,20 +127,91 @@ a:hover {
.banner-header{
display: flex;
align-items: center;
justify-content: flex-start;
justify-content: space-between;
flex-wrap: wrap;
padding: .5rem 1rem;
border-radius: 6px;
gap: 0.85rem;
padding: 0.7rem;
margin-top: 1rem;
border: 1px solid var(--border);
border-radius: 8px;
background: color-mix(in oklab, var(--surface) 88%, var(--bg) 12%);
box-shadow: 0 12px 32px color-mix(in oklab, #000 8%, transparent);
}
.site-brand {
display: inline-flex;
align-items: center;
gap: 0.7rem;
color: var(--fg);
font-weight: 800;
white-space: nowrap;
}
.site-brand:hover {
text-decoration: none;
color: var(--heading);
}
.site-brand__text {
font-size: 0.98rem;
}
.banner-logo{
height: 80px; width: auto;
margin-right: 1.5rem; border-radius: 50%;
height: 42px;
width: 42px;
object-fit: cover;
border-radius: 50%;
border: 1px solid color-mix(in oklab, var(--border) 80%, transparent);
}
nav{
display: flex; gap: 1rem;
font-weight: 600; font-size: 1.1rem;
.site-nav {
display: flex;
align-items: center;
justify-content: center;
flex: 1 1 auto;
gap: 0.25rem;
font-weight: 700;
font-size: 0.95rem;
}
.site-nav a {
color: var(--muted);
padding: 0.45rem 0.65rem;
border-radius: 7px;
}
.site-nav a:hover,
.site-nav a:focus-visible {
color: var(--fg);
background: color-mix(in oklab, var(--fg) 7%, transparent);
text-decoration: none;
outline: 0;
}
.site-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 0.4rem;
flex: 0 1 23rem;
}
.site-search {
display: block;
flex: 1 1 13rem;
min-width: 10rem;
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
#preamble.status{
@@ -113,6 +220,7 @@ nav{
margin-right: auto;
padding-left: var(--body-pad);
padding-right: var(--body-pad);
padding-top: 0.25rem;
box-sizing: content-box;
}
@@ -124,10 +232,12 @@ nav{
footer{
color: var(--fg);
padding: 1rem; margin-top: 2rem;
border-radius: 6px; text-align: center;
font-size: .9rem; font-style: italic;
color: var(--muted);
padding: 1.25rem;
margin-top: 3rem;
border-top: 1px solid var(--border);
text-align: center;
font-size: .9rem;
}
#content.content{
@@ -138,6 +248,7 @@ footer{
padding-right: var(--body-pad);
box-sizing: content-box;
position: relative;
padding-top: 1.5rem;
}
@@ -145,6 +256,41 @@ footer{
#content img:not(.fullwidth){
max-width: 100%;
height: auto;
border-radius: 8px;
}
hr {
border: 0;
border-top: 1px solid var(--border);
margin: 2rem 0;
}
table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
overflow: hidden;
}
th,
td {
border-bottom: 1px solid var(--border);
padding: 0.65rem 0.75rem;
text-align: left;
}
th {
color: var(--heading);
background: color-mix(in oklab, var(--surface-soft) 80%, transparent);
}
blockquote {
margin: 1.5rem 0;
padding: 0.9rem 1.1rem;
border-left: 4px solid var(--heading);
background: color-mix(in oklab, var(--surface-soft) 72%, transparent);
border-radius: 0 8px 8px 0;
color: color-mix(in oklab, var(--fg) 84%, var(--muted) 16%);
}