Boersendchcker update
All checks were successful
Deploy / deploy-staging (push) Successful in 5s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-05-04 02:31:42 +02:00
parent 03166c575e
commit 3cd5d90f1a
7 changed files with 822 additions and 800 deletions

View File

@@ -1,4 +1,4 @@
.bc-app {
.bc-page {
--bc-accent: var(--brand-accent);
--bc-accent-strong: var(--brand-accent-2);
--bc-ink: var(--text);
@@ -12,73 +12,9 @@
color: var(--bc-text);
}
.bc-grid-bg {
position: relative;
padding: 0 0 8px;
}
.bc-grid-bg::before {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background:
radial-gradient(circle at top right, color-mix(in srgb, var(--brand-accent-2) 10%, transparent), transparent 28%),
radial-gradient(circle at bottom left, color-mix(in srgb, var(--brand-accent-3) 10%, transparent), transparent 30%),
linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.bc-shell {
position: relative;
display: grid;
}
.bc-stack {
display: grid;
}
.bc-hero {
display: grid;
gap: 18px;
padding: 28px;
border-radius: 28px;
background:
radial-gradient(circle at top right, rgba(94, 234, 212, 0.18), transparent 28%),
radial-gradient(circle at bottom left, rgba(121, 215, 255, 0.14), transparent 32%),
linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.78));
border: 1px solid var(--bc-line);
box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}
.bc-hero-top {
.bc-page {
display: grid;
gap: 16px;
grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.7fr);
align-items: start;
}
.bc-hero-copy {
display: grid;
gap: 10px;
}
.bc-eyebrow {
display: inline-flex;
align-items: center;
width: fit-content;
padding: 8px 12px;
border-radius: 999px;
background: color-mix(in srgb, var(--bc-accent) 18%, transparent);
border: 1px solid color-mix(in srgb, var(--bc-accent) 28%, transparent);
color: var(--bc-text);
font-size: 0.86rem;
font-weight: 700;
}
.bc-title {
margin: 0;
font-size: clamp(2rem, 3vw, 2.8rem);
line-height: 1.05;
}
.bc-text {
@@ -86,10 +22,23 @@
margin: 0;
}
.bc-hero-controls {
display: grid;
gap: 12px;
justify-items: stretch;
.bc-section-head {
display: flex;
align-items: start;
justify-content: space-between;
gap: 16px;
}
.bc-section-title {
margin: 0;
font-size: 1.45rem;
line-height: 1.15;
}
.bc-section-head p,
.bc-section-copy {
color: var(--bc-muted);
margin: 8px 0 0;
}
.bc-form-card,
@@ -128,10 +77,10 @@
.bc-button,
.bc-tabs a,
.bc-app button,
.bc-app input,
.bc-app select,
.bc-app textarea {
.bc-page button,
.bc-page input,
.bc-page select,
.bc-page textarea {
font: inherit;
}
@@ -352,14 +301,14 @@
background: rgba(255,255,255,0.04);
}
.bc-app .setup-field {
.bc-page .setup-field {
display: grid;
gap: 6px;
}
.bc-app input,
.bc-app select,
.bc-app textarea {
.bc-page input,
.bc-page select,
.bc-page textarea {
width: 100%;
border: 1px solid var(--bc-line);
border-radius: 14px;
@@ -368,16 +317,16 @@
color: var(--bc-text);
}
.bc-app input::placeholder,
.bc-app textarea::placeholder {
.bc-page input::placeholder,
.bc-page textarea::placeholder {
color: color-mix(in srgb, var(--bc-muted) 70%, transparent);
}
.bc-app a {
.bc-page a {
color: inherit;
}
.bc-app .muted {
.bc-page .muted {
color: var(--bc-muted);
}