-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathlufang.html
53 lines (47 loc) · 1.03 KB
/
lufang.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>hello world</title>
<style>
body {
width: 100vw;
height: 100vh;
font-family: courier, monospace;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-size: 13px;
line-height: 1.65em;
margin: 0;
background-image: linear-gradient(45deg, #f3ffd9, #ffe4e4, #fffce6);
}
body:before {
background-image: linear-gradient(300deg, #e9ffba, #f0f0f0, #ffeccf);
animation: you infinite alternate 1s;
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
}
@keyframes you {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<p>Hi, this is lufang.html.</p>
</body>
</html>