Initial commit: Vanity on Tour Linktree landing page
- Static HTML/CSS Linktree-style landing page - Responsive design with dark theme - Project showcase (StaySense, Expense Logbook, Blog, RSS-Bot) - Social media links and contact information - GitHub Actions workflow for automated deployment - Complete documentation and setup instructions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
commit
1b5762a849
11 changed files with 764 additions and 0 deletions
284
assets/css/style.css
Normal file
284
assets/css/style.css
Normal file
|
|
@ -0,0 +1,284 @@
|
|||
:root{
|
||||
--bg:#0b0f14;
|
||||
--panel:#0f1720;
|
||||
--panel2:#0c141c;
|
||||
--text:#e9eef6;
|
||||
--muted:#a8b3c2;
|
||||
--line:rgba(255,255,255,.10);
|
||||
--accent:#ff9b54;
|
||||
--accent2:#ffd29a;
|
||||
--shadow: 0 18px 60px rgba(0,0,0,.45);
|
||||
--radius:18px;
|
||||
--max:1100px;
|
||||
--font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
|
||||
}
|
||||
|
||||
*{ box-sizing:border-box; }
|
||||
html,body{ height:100%; }
|
||||
body{
|
||||
margin:0;
|
||||
font-family:var(--font);
|
||||
background: radial-gradient(1200px 700px at 20% -10%, rgba(255,155,84,.18), transparent 65%),
|
||||
radial-gradient(900px 600px at 85% 5%, rgba(255,210,154,.12), transparent 60%),
|
||||
var(--bg);
|
||||
color:var(--text);
|
||||
line-height:1.55;
|
||||
}
|
||||
|
||||
a{ color:inherit; text-decoration:none; }
|
||||
a:hover{ text-decoration:underline; }
|
||||
|
||||
.container{
|
||||
width: min(var(--max), calc(100% - 40px));
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.skip{
|
||||
position:absolute; left:-999px; top:auto;
|
||||
width:1px; height:1px; overflow:hidden;
|
||||
}
|
||||
.skip:focus{
|
||||
left:20px; top:16px; width:auto; height:auto;
|
||||
padding:10px 14px; border-radius:10px;
|
||||
background:var(--panel); border:1px solid var(--line);
|
||||
z-index:999;
|
||||
}
|
||||
|
||||
.site-header{
|
||||
position:sticky; top:0; z-index:50;
|
||||
background: rgba(11,15,20,.75);
|
||||
backdrop-filter: blur(10px);
|
||||
border-bottom:1px solid var(--line);
|
||||
}
|
||||
.header-inner{
|
||||
display:flex;
|
||||
justify-content:space-between;
|
||||
align-items:center;
|
||||
padding: 14px 0;
|
||||
gap:16px;
|
||||
}
|
||||
|
||||
.brand{ display:flex; align-items:center; gap:12px; }
|
||||
.brand-mark{ filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
|
||||
.brand-title{ font-weight:800; letter-spacing:.2px; }
|
||||
.brand-sub{ font-size:.92rem; color:var(--muted); }
|
||||
|
||||
.top-nav{ display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; }
|
||||
.nav-link{
|
||||
padding:8px 10px;
|
||||
border-radius:10px;
|
||||
border:1px solid transparent;
|
||||
color:var(--muted);
|
||||
}
|
||||
.nav-link:hover{
|
||||
text-decoration:none;
|
||||
color:var(--text);
|
||||
border-color: var(--line);
|
||||
background: rgba(255,255,255,.03);
|
||||
}
|
||||
|
||||
.hero{ padding: 56px 0 36px; }
|
||||
.hero-inner{
|
||||
display:grid;
|
||||
grid-template-columns: 1.2fr .8fr;
|
||||
gap: 28px;
|
||||
align-items:center;
|
||||
}
|
||||
.kicker{
|
||||
display:inline-block;
|
||||
padding:6px 10px;
|
||||
border-radius:999px;
|
||||
border:1px solid var(--line);
|
||||
background: rgba(255,255,255,.03);
|
||||
color:var(--muted);
|
||||
margin:0 0 14px;
|
||||
}
|
||||
h1{
|
||||
margin:0 0 14px;
|
||||
font-size: clamp(2.0rem, 3.4vw, 3.2rem);
|
||||
line-height:1.1;
|
||||
letter-spacing:-.6px;
|
||||
}
|
||||
.accent{ color: var(--accent2); }
|
||||
.lead{
|
||||
margin:0 0 18px;
|
||||
color:var(--muted);
|
||||
max-width: 52ch;
|
||||
}
|
||||
|
||||
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
|
||||
.btn{
|
||||
display:inline-flex; align-items:center; justify-content:center;
|
||||
padding: 11px 14px;
|
||||
border-radius: 12px;
|
||||
border:1px solid var(--line);
|
||||
background: rgba(255,255,255,.03);
|
||||
box-shadow: 0 0 0 rgba(0,0,0,0);
|
||||
font-weight:700;
|
||||
transition: transform .12s ease, background .12s ease, border-color .12s ease;
|
||||
white-space:nowrap;
|
||||
}
|
||||
.btn:hover{ text-decoration:none; transform: translateY(-1px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
|
||||
.btn.primary{
|
||||
border-color: rgba(255,155,84,.55);
|
||||
background: linear-gradient(180deg, rgba(255,155,84,.28), rgba(255,155,84,.10));
|
||||
}
|
||||
.btn.ghost{ color:var(--text); }
|
||||
|
||||
.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; }
|
||||
.badge{
|
||||
font-size:.88rem;
|
||||
padding:6px 10px;
|
||||
border-radius:999px;
|
||||
border:1px solid var(--line);
|
||||
color:var(--muted);
|
||||
background: rgba(255,255,255,.02);
|
||||
}
|
||||
|
||||
.hero-art{
|
||||
color: var(--accent);
|
||||
background: linear-gradient(180deg, rgba(255,155,84,.16), rgba(255,155,84,.05));
|
||||
border: 1px solid rgba(255,255,255,.10);
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
padding: 14px;
|
||||
}
|
||||
.hero-art svg{ width:100%; height:auto; display:block; }
|
||||
|
||||
.section{ padding: 44px 0; }
|
||||
.section.alt{
|
||||
background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
|
||||
border-top: 1px solid var(--line);
|
||||
border-bottom: 1px solid var(--line);
|
||||
}
|
||||
.section-head h2{
|
||||
margin:0 0 6px;
|
||||
font-size: 1.6rem;
|
||||
letter-spacing:-.2px;
|
||||
}
|
||||
.section-head p{ margin:0 0 18px; color:var(--muted); }
|
||||
|
||||
.grid{
|
||||
display:grid;
|
||||
grid-template-columns: repeat(2, minmax(0,1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
.card{
|
||||
border-radius: var(--radius);
|
||||
background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
|
||||
border:1px solid var(--line);
|
||||
box-shadow: 0 10px 40px rgba(0,0,0,.25);
|
||||
padding: 18px;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
justify-content:space-between;
|
||||
min-height: 210px;
|
||||
}
|
||||
.card h3{ margin:8px 0 10px; font-size:1.25rem; }
|
||||
.card p{ margin:0 0 14px; color:var(--muted); }
|
||||
|
||||
.card-actions{ display:flex; gap:10px; flex-wrap:wrap; }
|
||||
.pill{
|
||||
display:inline-flex;
|
||||
align-items:center;
|
||||
justify-content:center;
|
||||
padding: 5px 10px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255,155,84,.18);
|
||||
border:1px solid rgba(255,155,84,.35);
|
||||
font-size:.85rem;
|
||||
font-weight:800;
|
||||
color: var(--accent2);
|
||||
}
|
||||
.pill.subtle{
|
||||
background: rgba(255,255,255,.05);
|
||||
border-color: var(--line);
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.note{
|
||||
margin-top: 16px;
|
||||
padding: 14px 16px;
|
||||
border-radius: 14px;
|
||||
border:1px dashed rgba(255,255,255,.18);
|
||||
background: rgba(255,255,255,.02);
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.split{
|
||||
display:flex;
|
||||
align-items:center;
|
||||
justify-content:space-between;
|
||||
gap: 18px;
|
||||
flex-wrap:wrap;
|
||||
}
|
||||
.support-actions{ display:flex; gap:10px; flex-wrap:wrap; }
|
||||
|
||||
.social{
|
||||
display:flex;
|
||||
gap:10px;
|
||||
flex-wrap:wrap;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
.social-link{
|
||||
border:1px solid var(--line);
|
||||
background: rgba(255,255,255,.03);
|
||||
padding: 10px 12px;
|
||||
border-radius: 12px;
|
||||
color: var(--text);
|
||||
}
|
||||
.social-link:hover{ text-decoration:none; transform: translateY(-1px); }
|
||||
|
||||
.contact{
|
||||
border-radius: var(--radius);
|
||||
border:1px solid var(--line);
|
||||
background: rgba(255,255,255,.02);
|
||||
padding: 16px;
|
||||
}
|
||||
.contact h3{ margin:0 0 8px; }
|
||||
.fineprint{ margin:10px 0 0; color:var(--muted); font-size:.92rem; }
|
||||
|
||||
.faq{
|
||||
border-radius: var(--radius);
|
||||
border:1px solid var(--line);
|
||||
background: rgba(255,255,255,.02);
|
||||
padding: 12px 14px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
.faq summary{
|
||||
cursor:pointer;
|
||||
font-weight:800;
|
||||
}
|
||||
.faq-body{ color:var(--muted); padding-top: 10px; }
|
||||
code{
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-size: .95em;
|
||||
background: rgba(255,255,255,.06);
|
||||
border: 1px solid var(--line);
|
||||
padding: 2px 6px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.site-footer{
|
||||
padding: 22px 0;
|
||||
border-top:1px solid var(--line);
|
||||
color: var(--muted);
|
||||
}
|
||||
.footer-inner{
|
||||
display:flex;
|
||||
justify-content:space-between;
|
||||
align-items:flex-start;
|
||||
gap: 12px;
|
||||
flex-wrap:wrap;
|
||||
}
|
||||
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
|
||||
.footer-links a{ color: var(--muted); }
|
||||
.footer-links a:hover{ color: var(--text); text-decoration:none; }
|
||||
|
||||
.muted{ color: var(--muted); }
|
||||
|
||||
@media (max-width: 900px){
|
||||
.hero-inner{ grid-template-columns: 1fr; }
|
||||
.hero-art{ order: -1; }
|
||||
.grid{ grid-template-columns: 1fr; }
|
||||
}
|
||||
13
assets/img/favicon.svg
Normal file
13
assets/img/favicon.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<defs>
|
||||
<linearGradient id="g" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#ff9b54"/>
|
||||
<stop offset="1" stop-color="#ffd29a"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect x="8" y="8" width="48" height="48" rx="14" fill="url(#g)" opacity="0.95"/>
|
||||
<path d="M18 39h28c3 0 6 2 6 5v4H12v-4c0-3 3-5 6-5z" fill="#0b0f14" opacity="0.35"/>
|
||||
<path d="M22 37l5-14h14l5 14" stroke="#0b0f14" stroke-opacity="0.55" stroke-width="4" stroke-linecap="round"/>
|
||||
<circle cx="22" cy="48" r="4" fill="#0b0f14" opacity="0.55"/>
|
||||
<circle cx="42" cy="48" r="4" fill="#0b0f14" opacity="0.55"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 668 B |
2
assets/img/og.jpg
Normal file
2
assets/img/og.jpg
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
This is a placeholder file. Replace it with a real OpenGraph image (recommended: 1200x630 JPG/PNG) at:
|
||||
assets/img/og.jpg
|
||||
7
assets/img/van.svg
Normal file
7
assets/img/van.svg
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none">
|
||||
<path d="M14 40h34c4 0 8 3 8 7v5H6v-5c0-4 4-7 8-7z" fill="#ff9b54" fill-opacity="0.22"/>
|
||||
<path d="M20 38l6-16h20l6 16" stroke="#ffd29a" stroke-opacity="0.85" stroke-width="4" stroke-linecap="round"/>
|
||||
<circle cx="20" cy="52" r="4.5" fill="#ffd29a" fill-opacity="0.9"/>
|
||||
<circle cx="44" cy="52" r="4.5" fill="#ffd29a" fill-opacity="0.9"/>
|
||||
<path d="M27 28h10" stroke="#ffd29a" stroke-opacity="0.85" stroke-width="4" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 527 B |
Loading…
Add table
Add a link
Reference in a new issue