New design: studio backdrop with a perspective floor and X/Z axis lines, an orientation gizmo that orbits on scroll, Bricolage Grotesque and Instrument Sans (bundled, no build-time network). Projects are laid out as plates by a row planner that keeps every row full for any count; a demo image from the repo root is shown when present, otherwise a generated voxel sculpture. Text and projects still come live from Gitea. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01XtcZtnG4GQA1d6mW5PNrS9
70 lines
1.2 KiB
CSS
70 lines
1.2 KiB
CSS
.bar {
|
|
position: fixed;
|
|
z-index: 50;
|
|
inset: 0 0 auto 0;
|
|
border-bottom: 1px solid transparent;
|
|
transition: background-color 0.25s, border-color 0.25s;
|
|
}
|
|
|
|
.solid {
|
|
background: rgba(244, 246, 248, 0.86);
|
|
border-bottom-color: var(--line);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
|
|
.inner {
|
|
width: var(--shell);
|
|
height: 68px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
|
|
.mark {
|
|
margin-right: auto;
|
|
font: 700 20px/1 var(--font-head);
|
|
letter-spacing: -0.03em;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
gap: 28px;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.nav a {
|
|
text-decoration: none;
|
|
padding: 6px 0;
|
|
background: linear-gradient(currentColor, currentColor) left bottom / 0 1.5px no-repeat;
|
|
transition: background-size 0.25s;
|
|
}
|
|
|
|
.nav a:hover {
|
|
background-size: 100% 1.5px;
|
|
}
|
|
|
|
.mail {
|
|
padding: 10px 18px;
|
|
border-radius: var(--radius-control);
|
|
background: var(--ink);
|
|
color: var(--paper);
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.mail:hover {
|
|
background: var(--z);
|
|
}
|
|
|
|
@media (max-width: 860px) {
|
|
.nav {
|
|
display: none;
|
|
}
|
|
}
|