-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (79 loc) · 2.05 KB
/
index.html
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
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello world</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
position: relative;
background-color: #fff;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("Image_39050285808568.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
filter: blur(5px);
z-index: -1;
}
body > * {
position: relative;
z-index: 1;
background-color: transparent;
}
main {
flex-grow: 1;
display: flex;
flex-direction: column;
}
footer {
text-align: center;
padding: 20px;
color: white;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.content {
padding: 20px;
color: white;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: transparent;
}
.tt {
filter: none !important; /* 强制覆盖 tt.css 的模糊效果 */
}
</style>
<link rel="stylesheet" href="tt.css">
</head>
<body>
<main class="content">
<div class="container">
<h1 style="color: pink;">不知道写什么</h1>
</div>
<div class="container">
<i class="tt" style="color: pink;">Hello world</i>
</div>
</main>
<footer>
<p>© 2077 art</p>
</footer>
</body>
</html>