Rolig blå skin: dropp fareris, bruk logoens blå
lint-and-reload / lint (push) Successful in 0s

Fjerner den stripete hero-hr-en; palett fra logoen (marineblå aksent,
slørblå kortkant) på betong.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Y42TyF8Zu7NGRR2893vNcZ
This commit is contained in:
bl
2026-09-01 21:31:40 +02:00
co-authored by Claude Fable 5
parent ea9ef1c0c9
commit 95f5347803
+12 -27
View File
@@ -1,11 +1,11 @@
/* Westra Engineering — a construction skin over the default portal /* Westra Engineering — a quiet skin over the default portal stylesheet
stylesheet (site.yaml `stylesheet`). Steel and safety-amber on a (site.yaml `stylesheet`), drawn from the logo: navy and slate on
concrete ground: the palette of a site hut, not a brochure. */ concrete. */
:root { :root {
/* Safety amber — the accent you see on a hoarding. */ /* The wordmark's navy, as the accent. */
--accent: #e8a317; --accent: #22304f;
--accent-soft: rgba(232, 163, 23, 0.16); --accent-soft: rgba(34, 48, 79, 0.12);
/* Concrete paper, steel ink. */ /* Concrete paper, steel ink. */
--paper: #eceae6; --paper: #eceae6;
--ink: #1c1f24; --ink: #1c1f24;
@@ -19,6 +19,9 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
/* The lighter slate reads on the dark ground. */
--accent: #8c9cc0;
--accent-soft: rgba(140, 156, 192, 0.16);
--paper: #16181c; --paper: #16181c;
--ink: #e7e4dd; --ink: #e7e4dd;
--ink-dim: #999a9a; --ink-dim: #999a9a;
@@ -29,37 +32,19 @@
} }
} }
/* A hazard-stripe rule under the hero wordmark — steel amber, the one
flourish. */
.hero-copy h1 { .hero-copy h1 {
font-weight: 800; font-weight: 800;
letter-spacing: -0.01em; letter-spacing: -0.01em;
} }
.hero::after {
content: "";
display: block;
width: 100%;
max-width: 46rem;
height: 0.4rem;
margin-top: 0.4rem;
background: repeating-linear-gradient(
-45deg,
var(--accent) 0 0.8rem,
#1c1f24 0.8rem 1.6rem
);
border-radius: 0.2rem;
opacity: 0.85;
}
/* Feature icons carry the amber; a left steel edge grounds each card. */ /* Feature icons carry the accent; a slate left edge grounds each card,
echoing the wordmark's ribbon. */
.feature-icon { color: var(--accent); } .feature-icon { color: var(--accent); }
.alt-card { .alt-card {
border-left: 0.2rem solid var(--accent); border-left: 0.2rem solid #5c6a8f;
} }
/* Primary button reads as painted steel. */
.alt-submit { .alt-submit {
border-radius: 0.4rem; border-radius: 0.4rem;
color: #1c1f24;
letter-spacing: 0.01em; letter-spacing: 0.01em;
} }