Files
Rocky 733cb8291a docs(site): add App Store badges, SEO pages, and GSC verification
Ship official store badges on READMEs and the site, expand discoverability
with FAQ/JSON-LD/llms.txt/content pages, and add the Search Console HTML
verification file so the live Pages site can be claimed.
2026-07-29 21:41:08 +08:00

118 lines
4.3 KiB
CSS

:root {
--bg: #f7f7f5;
--bg-elevated: #ffffff;
--bg-soft: #efefec;
--text: #121214;
--text-2: #5a5a62;
--text-3: #8e8e96;
--line: rgba(18, 18, 20, 0.10);
--accent: #2f9a52;
--nav: rgba(247, 247, 245, 0.9);
--max: 760px;
--font: "Outfit", -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
}
@media (prefers-color-scheme: dark) {
:root {
--bg: #0a0a0b;
--bg-elevated: #131316;
--bg-soft: #18181b;
--text: #f4f4f2;
--text-2: #a8a8b0;
--text-3: #6f6f78;
--line: rgba(255, 255, 255, 0.09);
--accent: #4cc46e;
--nav: rgba(10, 10, 11, 0.9);
}
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--font);
background: var(--bg);
color: var(--text);
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.nav {
position: sticky; top: 0; z-index: 20;
backdrop-filter: blur(14px);
background: var(--nav);
border-bottom: 1px solid var(--line);
}
.nav-inner {
display: flex; align-items: center; justify-content: space-between;
gap: 1rem; padding: 0.85rem 0; width: min(100% - 2rem, 1120px); margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--text); font-weight: 700; text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 0.85rem 1.1rem; font-size: 0.9rem; font-weight: 500; }
.nav-links a { color: var(--text-2); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
main { padding: 2.5rem 0 4rem; }
.eyebrow {
display: inline-flex; align-items: center; gap: 0.35rem;
margin: 0 0 0.75rem; font-size: 0.8rem; font-weight: 600;
letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent);
}
h1 {
margin: 0 0 0.85rem;
font-size: clamp(1.9rem, 5vw, 2.75rem);
line-height: 1.15; letter-spacing: -0.03em;
}
.lead { margin: 0 0 1.5rem; color: var(--text-2); font-size: 1.08rem; }
.store-badge { display: inline-flex; line-height: 0; margin: 0.25rem 0 1.5rem; }
.store-badge img { height: 44px; width: auto; display: block; }
.store-badge:hover { opacity: 0.9; }
h2 { margin: 2.25rem 0 0.75rem; font-size: 1.35rem; letter-spacing: -0.02em; }
h3 { margin: 1.4rem 0 0.45rem; font-size: 1.08rem; }
p, li { color: var(--text-2); }
ul, ol { padding-left: 1.2rem; }
li { margin: 0.35rem 0; }
.card {
background: var(--bg-elevated);
border: 1px solid var(--line);
border-radius: 16px;
padding: 1.1rem 1.2rem;
margin: 1rem 0;
}
.card strong { color: var(--text); }
table {
width: 100%; border-collapse: collapse; font-size: 0.92rem;
margin: 1rem 0 0.5rem; background: var(--bg-elevated);
border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
}
th, td { padding: 0.7rem 0.75rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--bg-soft); color: var(--text); font-weight: 600; }
tr:last-child td { border-bottom: none; }
.note { font-size: 0.88rem; color: var(--text-3); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; align-items: center; margin: 1.25rem 0; }
.btn {
display: inline-flex; align-items: center; gap: 0.35rem;
padding: 0.65rem 1rem; border-radius: 999px; font-weight: 600;
font-size: 0.92rem; text-decoration: none; border: 1px solid var(--line);
color: var(--text); background: var(--bg-elevated);
}
.btn:hover { text-decoration: none; background: var(--bg-soft); }
.btn-primary { background: var(--accent); color: #fff; border-color: transparent; }
.btn-primary:hover { opacity: 0.92; background: var(--accent); }
footer {
border-top: 1px solid var(--line);
padding: 1.4rem 0 2rem;
color: var(--text-3);
font-size: 0.88rem;
}
.footer-inner {
width: min(100% - 2rem, 1120px); margin-inline: auto;
display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
justify-content: space-between; align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.footer-links a { color: var(--text-2); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.lang-switch { font-size: 0.9rem; margin-bottom: 1rem; color: var(--text-3); }
.lang-switch a { margin-right: 0.75rem; }