Breaks the table out of the centred content column to full page width via a subgrid on <main> (adds a reusable .full-bleed utility), and reworks the table itself to match a Claude Design mockup: a rounded card wrapper, scope values as pill chips, a dotted status pill, and proportional column widths. Colours use the site's existing --primary-hue/light-dark() tokens so it stays correct in both themes. The card scrolls horizontally on narrow viewports instead of clipping content. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LHN7V9kyZxrsxaspMSqoGJ
65 lines
923 B
CSS
65 lines
923 B
CSS
@layer base {
|
|
:root {
|
|
--border-radius: 8px;
|
|
}
|
|
|
|
html {
|
|
font-size: 125%;
|
|
}
|
|
|
|
body {
|
|
display: grid;
|
|
grid-template-columns: 1fr min(80ch, 80vw) 1fr;
|
|
grid-template-rows: min-content 1fr min-content;
|
|
padding-inline: 4vw;
|
|
|
|
> header {
|
|
grid-column: 1/-1;
|
|
}
|
|
|
|
> main {
|
|
grid-column: 1/-1;
|
|
display: grid;
|
|
grid-template-columns: subgrid;
|
|
|
|
> * {
|
|
grid-column: 2/3;
|
|
}
|
|
|
|
> .full-bleed {
|
|
grid-column: 1/-1;
|
|
}
|
|
}
|
|
|
|
> footer {
|
|
grid-column: 1/-1;
|
|
margin-block-start: 2ex;
|
|
|
|
search form {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 1ex;
|
|
|
|
input {
|
|
min-width: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.h-feed {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2ex;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.h-entry {
|
|
pre {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
}
|
|
|