-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
167 lines (147 loc) · 5.37 KB
/
resume.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jingfelix</title>
</head>
<body>
<style>
* {
padding: 0%;
margin: 0%;
text-decoration: none;
color: black;
font-size: 15px;
font-family: 'Times New Roman', Times, serif;
background-color: #ffffe5;
}
body {
max-width: 1080px;
min-height: 70vh;
margin: 0 auto;
padding-top: 3rem;
display: flex;
flex-direction: column-reverse;
}
div.block {
/*max-width: 80%;*/
padding-left: 1.5rem;
padding-right: 1.5rem;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
flex-grow: 1;
}
#intro {
padding-top: 1rem;
}
#slogan {
padding-top: 1rem;
padding-bottom: 1rem;
font-size: 5rem;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: 200;
border-bottom: solid 2px rgb(124, 124, 124);
}
p {
font-size: 1.4rem;
margin-top: 1rem;
margin-bottom: 1.2rem;
line-height: 2rem;
}
p.bold {
font-size: 1.5rem;
/*font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: bold;*/
font-family: ibm-plex-mono, sans-serif;
font-style: normal;
font-weight: bold;
}
p.slim {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
a {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: inherit;
font-style: italic;
}
@media screen and (min-width: 650px) {
body {
flex-direction: row;
align-items: center;
}
#slogan {
width: 90%;
font-size: 5rem;
padding-left: 2rem;
border-left: solid 2px rgb(124, 124, 124);
border-bottom: none;
}
div.bottom {
width: 100%;
position: fixed;
bottom: 1rem;
left: 0%;
text-align: center;
background-color: rgba(0, 0, 0, 0);
margin-top: 2rem;
}
}
div.bottom {
width: 100%;
position: fixed;
top: 1rem;
left: 0%;
text-align: center;
background-color: rgba(0, 0, 0, 0);
margin-top: 1rem;
}
</style>
<div class="block two">
<div id="intro">
<p class="bold">
Hello there. My name is Tianyi Jing.
</p>
<p class="bold">
I am an undergraduate in Huazhong University of Science and Technology, major in Cyber Security and
Engneering.
</p>
<p class="slim">
I am interested in how technology made changes in our life, and glad to try new tech-products.
</p>
<p class="slim">
I love to make tools that bright my life: including <a href="https://jingfelix.github.io/">my blog</a>,
<a href="https://github.com/ConnectAI-E/GitMaya" style="text-decoration: none;">GitMaya</a>, <a href="https://github.com/jingfelix/Repo2Lark" style="text-decoration: none;">Repo2Lark</a>, and <a href="https://github.com/jingfelix/BiliFM"
style="text-decoration: none;">BiliFM</a>. Previously intern at <a href="https://github.com/ConnectAI-E" style="text-decoration: none;">ConnectAI-E</a>.
</p>
<p class="slim">
You can find me at <a href="https://github.com/jingfelix" style="text-decoration: none;">GitHub</a>,
<a href="https://www.zhihu.com/people/jing-tian-yi-26" style="text-decoration: none;">Zhihu</a>
or <a href="mailto:[email protected]" style="text-decoration: none;">E-mail</a>.
</p>
</div>
</div>
<div class="block one">
<div id="slogan">
Code, <br>
Love, <br>
Design.
</div>
</div>
<script>
let a_list = document.querySelectorAll('a');
var i = 0;
for (len = a_list.length; i < len; i++) {
a_list[i].onmouseover = function () {
this.style.textDecoration = 'underline';
}
a_list[i].onmouseout = function () {
this.style.textDecoration = 'none';
}
}
</script>
</body>
</html>