zyc c8f5518e07
All checks were successful
Deploy Static Sites / deploy (push) Successful in 7s
feat: 接入 airlabs.art 裸域站点(HTTP only)
- 新增 airlabs-art/ 子目录存放主站点静态内容
- nginx-conf 增加 apex+www 显式 server 块指向 airlabs-art/
- workflow 跳过 airlabs-art 的子域名自动生成,追加裸域+www HTTP 规则
- workflow 新增同步 nginx ConfigMap 并 rollout restart 的步骤

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 10:12:03 +08:00

28 lines
312 B
CSS

/* Modern CSS Reset */
*, *::before, *::after {
box-sizing: border-box;
}
* {
margin: 0;
padding: 0;
font: inherit;
}
body {
min-height: 100vh;
}
img, picture, svg, video {
display: block;
max-width: 100%;
}
ul, ol {
list-style: none;
}
html {
scroll-behavior: smooth;
}