Restore share section with QR code and Share the Show button

This commit is contained in:
nmemmert
2026-05-05 16:52:26 -04:00
parent 8d3755f537
commit 475abff3cf
2 changed files with 112 additions and 0 deletions
+65
View File
@@ -816,6 +816,71 @@
}
/* ── Home Jump Section ── */
.section-share {
background: #080808;
border-top: 1px solid rgba(201, 168, 76, 0.18);
border-bottom: 1px solid rgba(201, 168, 76, 0.12);
padding: 4rem 0;
}
.section-share-inner {
display: flex;
align-items: center;
gap: 3rem;
max-width: 860px;
}
.share-text {
flex: 1;
}
.share-text .section-heading {
text-align: left;
margin-bottom: 0.75rem;
}
.share-p {
font-family: var(--brand-font-body);
font-size: 1.05rem;
line-height: 1.65;
color: var(--brand-muted);
margin: 0 0 1.5rem;
}
.share-show-wrap {
display: flex;
flex-direction: column;
gap: 0.6rem;
align-items: flex-start;
}
.share-feedback {
font-family: var(--brand-font-body);
font-size: 0.9rem;
color: var(--brand-gold);
margin: 0;
}
.share-qr {
width: 180px;
height: auto;
flex-shrink: 0;
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.15);
}
@media (max-width: 600px) {
.section-share-inner {
flex-direction: column;
text-align: center;
gap: 1.75rem;
}
.share-text .section-heading {
text-align: center;
}
}
.section-home-jump {
background: var(--brand-black);
border-top: 1px solid rgba(201, 168, 76, 0.16);