-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (68 loc) · 1.97 KB
/
Copy pathindex.html
File metadata and controls
76 lines (68 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>站点建设中 - 博客</title>
<style>
/* 基础样式重置 */
body, html {
height: 100%;
margin: 0;
font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f7f6;
color: #333;
}
/* 容器样式 */
.container {
text-align: center;
padding: 20px;
background: white;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
max-width: 400px;
width: 90%;
}
/* 标题样式 */
h1 {
font-size: 1.8rem;
margin-bottom: 10px;
color: #2c3e50;
}
/* 文字样式 */
p {
font-size: 1rem;
color: #7f8c8d;
line-height: 1.6;
}
/* 简单的 loading 动画 */
.loader {
border: 4px solid #f3f3f3;
border-top: 4px solid #3498db;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 2s linear infinite;
margin: 20px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 响应式调整 */
@media (max-width: 480px) {
h1 { font-size: 1.5rem; }
}
</style>
</head>
<body>
<div class="container">
<div class="loader"></div>
<h1>博客正在建设中</h1>
<p>正在努力打磨内容,敬请期待。<br>感谢您的耐心等待!</p>
</div>
</body>
</html>