-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
101 lines (97 loc) · 3.97 KB
/
cv.html
File metadata and controls
101 lines (97 loc) · 3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lian - CV</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#2D3047',
secondary: '#E8E9F3'
}
}
}
}
</script>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background-color: currentColor;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="bg-white text-primary">
<nav class="fixed top-0 w-full bg-white/90 backdrop-blur-sm z-50 border-b border-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<a href="index.html" class="text-xl font-medium">Lian</a>
<div class="hidden md:flex space-x-8">
<a href="index.html" class="nav-link text-sm hover:text-primary transition-colors">HOME</a>
<a href="bio.html" class="nav-link text-sm hover:text-primary transition-colors">BIO</a>
<a href="research.html" class="nav-link text-sm hover:text-primary transition-colors">RESEARCH</a>
<a href="work.html" class="nav-link text-sm hover:text-primary transition-colors">WORK</a>
<a href="cv.html" class="nav-link text-sm hover:text-primary transition-colors">CV</a>
<a href="contact.html" class="nav-link text-sm hover:text-primary transition-colors">CONTACT</a>
<a href="other.html" class="nav-link text-sm hover:text-primary transition-colors">OTHER</a>
</div>
</div>
</div>
</nav>
<main class="pt-32 pb-16 min-h-screen">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<h1 class="text-3xl font-extralight tracking-wide mb-16">Curriculum Vitae</h1>
<div class="group hover:bg-neutral-50 -mx-4 px-8 py-6 transition-all duration-300 border-l-2 border-transparent hover:border-emerald-600">
<div class="flex justify-end mb-8">
<a href="files/work/CV+Lian+Eng.pdf"
class="inline-flex items-center space-x-2 px-4 py-2 border border-emerald-600 text-emerald-600 rounded-lg hover:bg-emerald-600 hover:text-white transition-all duration-300"
target="_blank">
<i class="ri-download-line"></i>
<span>Download CV</span>
</a>
</div>
<div class="relative w-full aspect-[8.5/11] rounded-xl overflow-hidden bg-white shadow-[0_0_40px_-15px_rgba(0,0,0,0.15)] transform group-hover:scale-[1.02] transition-all duration-500">
<iframe
src="files/work/CV+Lian+Eng.pdf"
class="w-full h-full"
frameborder="0">
</iframe>
<div class="absolute inset-0 pointer-events-none shadow-inner"></div>
<div class="absolute inset-0 bg-gradient-to-tr from-white/5 to-transparent opacity-50 pointer-events-none"></div>
</div>
</div>
</div>
</div>
</main>
<footer class="py-8 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-sm text-gray-500">
<p>© 2024 Lian. All rights reserved.</p>
</div>
</footer>
</body>
</html>