blob: 2bc8ed40e473f2b45e038a780574ecf7ba9837b5 (
plain) (
blame)
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
|
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="https://files.pinapelz.com/Yukai%20Shan%20-%20Resume-2.pdf">Resume</a></li>
</ul>
</nav>
<img
id="profilePic"
src="https://files.pinapelz.com/21994085.png"
alt="Profile Picture"
/>
</header>
<style>
header {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}
nav ul {
display: flex;
flex-direction: row;
list-style: none;
padding: 0;
margin: 0;
}
nav li {
margin-right: 1.5rem;
position: relative;
}
nav li:last-child {
margin-right: 0;
}
nav a {
color: #fff;
text-decoration: none;
font-weight: 500;
font-size: large;
padding: 5px 10px;
border-radius: 5px;
transition: all 0.3s ease;
}
nav a:hover {
background-color: rgba(255, 255, 255, 0.1);
background-size: 120% 120%;
}
#profilePic {
width: 45px;
height: 45px;
border-radius: 50%;
margin-left: 1rem;
}
@media only screen and (max-width: 1020px) {
header {
flex-direction: column;
padding: 1rem;
}
nav {
margin-top: 1rem;
}
nav ul {
flex-direction: column;
align-items: center;
}
nav li {
margin: 0.5rem 0;
}
#profilePic {
margin: 1rem 0 0;
}
}
</style>
|