vanvan.html: größeres Foto, größerer Text, neuer "Coming soon"-Button
- Foto in der "Wer ich bin"-Sektion vergrößert (Grid-Spalten von 1:1 auf 1.25:1 zugunsten des Fotos). - Fließtext/Lead/Zitate/Überschriften auf der ganzen Seite spürbar größer (eigener <style>-Block, nur für diese Seite). - Neuer .btn-silver-Button-Stil (gleicher Polarlicht-Mechanismus wie .btn-tiktok, nur in Silber) direkt unter dem TikTok-Button, Text "Coming soon…" für VanVans zweiten, noch nicht gestarteten Kanal.
This commit is contained in:
@@ -598,6 +598,65 @@ header.site-header {
|
||||
.btn-tiktok::before, .btn-tiktok::after { animation: none; }
|
||||
}
|
||||
|
||||
/* Silberner "Coming soon"-Button: exakt derselbe Polarlicht-Mechanismus
|
||||
wie .btn-tiktok, nur in gedämpftem Silber statt Markenfarben — für
|
||||
Dinge, die noch nicht live sind (z.B. VanVans zweiter Kanal). */
|
||||
.btn-silver {
|
||||
position: relative;
|
||||
isolation: isolate;
|
||||
overflow: hidden;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: .4rem;
|
||||
padding: .6rem 1.5rem;
|
||||
border-radius: 999px;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
font-size: .95rem;
|
||||
background: #0b0e14;
|
||||
border: 1px solid rgba(255, 255, 255, .16);
|
||||
text-decoration: none;
|
||||
transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
|
||||
box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
|
||||
}
|
||||
.btn-silver span {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
text-shadow: 0 1px 3px rgba(0, 0, 0, .6), 0 0 14px rgba(0, 0, 0, .35);
|
||||
}
|
||||
.btn-silver::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: -60%;
|
||||
z-index: 0;
|
||||
background:
|
||||
radial-gradient(circle at 25% 30%, rgba(230, 235, 242, .85), transparent 55%),
|
||||
radial-gradient(circle at 75% 70%, rgba(190, 200, 215, .7), transparent 58%);
|
||||
filter: blur(9px) saturate(1.2);
|
||||
animation: nav-cta-aurora 9s ease-in-out infinite alternate;
|
||||
}
|
||||
.btn-silver::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 1;
|
||||
background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .4) 49%, transparent 63%);
|
||||
background-size: 240% 100%;
|
||||
mix-blend-mode: overlay;
|
||||
animation: nav-cta-shimmer 4.5s linear infinite;
|
||||
pointer-events: none;
|
||||
}
|
||||
.btn-silver:hover {
|
||||
transform: translateY(-1px);
|
||||
border-color: rgba(255, 255, 255, .32);
|
||||
box-shadow: 0 10px 26px rgba(0, 0, 0, .45),
|
||||
0 0 22px rgba(220, 226, 235, .3),
|
||||
0 0 22px rgba(190, 200, 215, .25);
|
||||
}
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.btn-silver::before, .btn-silver::after { animation: none; }
|
||||
}
|
||||
|
||||
/* Plattform-Karten mit echten Markenfarben (z.B. links.html-Übersicht):
|
||||
gleicher Polarlicht-Mechanismus wie .btn-tiktok, aber generisch über
|
||||
--brand-1/--brand-2 (+ optional --brand-3) einstellbar, damit jede
|
||||
|
||||
Reference in New Issue
Block a user