This commit is contained in:
ponzischeme89
2026-08-19 14:25:44 +12:00
parent 2b43b9ef12
commit 590e069366
83 changed files with 8948 additions and 1266 deletions
+78
View File
@@ -3582,3 +3582,81 @@ details summary {
font: 13px/1.6 var(--sans);
overflow-wrap: anywhere;
}
/* ---------- runtime ----------
The verdict block and the section headings the runtime pages are built from. The verdict
is deliberately not a `.banner`: a banner is something that has gone wrong and can be
dismissed, and this is a standing answer that is usually good news. */
.subhead {
display: flex;
align-items: baseline;
gap: 8px;
margin: 6px 0 0;
font-size: 11.5px;
font-weight: 600;
letter-spacing: 0.07em;
text-transform: uppercase;
color: var(--muted);
}
.subhead small {
font-size: 11px;
font-weight: 500;
letter-spacing: 0;
text-transform: none;
color: var(--quiet);
}
.verdict {
margin: 0 0 16px;
padding: 12px 14px;
border: 1px solid var(--line);
border-left: 3px solid var(--accent);
border-radius: var(--radius-sm);
background: var(--surface-lift);
}
.verdict[data-tone="warn"] {
border-left-color: var(--warn);
}
.verdict[data-tone="bad"] {
border-left-color: var(--danger);
}
.verdict-head {
display: flex;
align-items: center;
gap: 9px;
flex-wrap: wrap;
font-size: 13px;
color: var(--muted);
}
.verdict-head svg {
width: 17px;
height: 17px;
color: var(--accent);
}
.verdict[data-tone="warn"] .verdict-head svg {
color: var(--warn);
}
.verdict[data-tone="bad"] .verdict-head svg {
color: var(--danger);
}
.verdict-head b {
color: var(--text);
font-size: 13px;
}
.verdict-notes {
margin: 11px 0 0;
padding: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.verdict-notes li {
display: flex;
align-items: baseline;
gap: 9px;
font-size: 12.5px;
color: var(--muted);
}