- website-content/:官网 10 篇文档内容 + README - website-design/:官网设计稿、动画实验、预览图与资源 - 根目录官网截图两张 - .gitignore 忽略 website-design/exp/static/dist 构建产物(7.1MB)
37 lines
1.1 KiB
CSS
37 lines
1.1 KiB
CSS
/* 版本控制动画 demo 页壳 —— 布局与 token;动画本体样式在 anim-version.css */
|
||
|
||
:root {
|
||
--bg-0: #0c1120;
|
||
--bg-1: #111830;
|
||
--bg-panel: #151c31;
|
||
--text-1: #eef1f8;
|
||
--text-2: #a7b0c4;
|
||
--text-3: #6b7488;
|
||
--line: rgba(168, 180, 210, 0.14);
|
||
--line-strong: rgba(168, 180, 210, 0.24);
|
||
--accent: #a9c2f0;
|
||
--accent-strong: #c1d4f6;
|
||
--ok: #7ba889;
|
||
--font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC",
|
||
"Noto Sans SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
|
||
--font-mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;
|
||
}
|
||
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
||
body {
|
||
font-family: var(--font-sans);
|
||
background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 60%);
|
||
min-height: 100vh;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: var(--text-1);
|
||
}
|
||
|
||
.stage { display: flex; flex-direction: column; align-items: center; gap: 18px; }
|
||
.hint { font-size: 13px; color: var(--text-3); }
|
||
|
||
/* demo 页动画宿主:原尺寸 1:1(不缩放) */
|
||
.anim-host { width: 540px; height: 380px; }
|