- 主页第4行特色动画(版本控制)及 01/02/03 动画迭代 - 演示区对话 mock 全部换为真实对话转换:日常使用(汽车对比新/整理周会速记)、 StarRaid(弹幕调研/像素飞机设计)、开发实战(猫咪咖啡店多智能体) - 子智能体 activity、消息截图媒体、文件卡片资源(docx/pdf/html)随站点发布 - sw.js: file/content 二进制 MIME、/api/conversations/media 路由、 模型列表扩为 K3/V4-Flash/MiniMax-M3/GLM-5.2、CACHE v5 - content/ 同步 8-31 沙箱重构文档更新
36 lines
1.1 KiB
CSS
36 lines
1.1 KiB
CSS
/* 修改记录动画 demo 页壳 —— 布局与 token;动画本体样式在 anim-records.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);
|
||
--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; }
|