-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (69 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
76 lines (69 loc) · 1.61 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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yifeng Du</title>
<style>
:root {
color-scheme: light;
--bg-start: #f5efe6;
--bg-end: #d9e2ec;
--card-bg: rgba(255, 255, 255, 0.88);
--text: #1f2933;
--muted: #52606d;
--accent: #9fb3c8;
--border: rgba(31, 41, 51, 0.08);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
font-family: Georgia, "Times New Roman", serif;
background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
color: var(--text);
}
main {
width: min(560px, 100%);
padding: 48px 36px;
border: 1px solid var(--border);
border-radius: 24px;
background: var(--card-bg);
box-shadow: 0 20px 60px rgba(31, 41, 51, 0.12);
text-align: center;
}
h1 {
margin: 0 0 12px;
font-size: clamp(2rem, 6vw, 3rem);
letter-spacing: 0.06em;
text-transform: uppercase;
}
p {
margin: 12px 0;
font-size: 1.1rem;
color: var(--muted);
}
a {
color: inherit;
text-decoration: none;
border-bottom: 1px solid var(--accent);
}
a:hover {
color: var(--text);
}
</style>
</head>
<body>
<main>
<h1>Yifeng Du</h1>
<p>SEU</p>
<p><a href="mailto:yifeng_du@seu.edu.cn">yifeng_du@seu.edu.cn</a></p>
<p>If you have any questions, please feel free to contact me.</p>
</main>
</body>
</html>