-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (97 loc) · 2.78 KB
/
index.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Kevin Surya</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
html {
overflow: auto;
background-color: black;
}
body {
height: 100%;
padding-top: 5%;
padding-bottom: 5%;
padding-left: 25%;
padding-right: 25%;
}
body::-webkit-scrollbar {
width: 1em;
}
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}
.navbar {
position: absolute;
}
.navbar a {
float: left;
display: inline;
margin-right: 16px;
color: gray;
font-size: 22px;
font-family: arial, helvetica, sans-serif;
font-variant: small-caps;
text-decoration: none;
}
.navbar a:hover {
color: gainsboro;
}
.main {
color: silver;
font-family: "lucida sans unicode", "lucida grande", sans-serif;
font-kerning: auto;
}
img {
float: left;
width: 175px;
height: 175px;
margin-bottom: 12px;
margin-right: 22px;
}
.name {
color: gainsboro;
font-size: 24px;
font-weight: bold;
}
.contact {
position: relative;
color: gray;
font-size: 14px;
font-family: arial, helvetica, sans-serif;
font-variant: small-caps;
}
</style>
</head>
<body>
<div class="navbar">
<a href="index.html" style="color: gainsboro;">about</a>
<a href="research.html">research</a>
<a href="publications.html">publications</a>
<a href="storytelling.html">storytelling</a>
</div>
<br /><br /><br /><br /><br />
<div class="main">
<img src="Surya_profile_picture.jpg" alt="profile picture" />
<div class="name">KEVIN SURYA</div>
<a href="Surya_cv.pdf" style="color: lightgray; font-size: 14px;
text-decoration: none"; target="_blank">curriculum vitae</a>
<p>I'm an Indonesian statistics PhD student at Montana State University.
My broad interest is combining genomic, fossil, and ecological data
with statistical models to explain large-scale evolutionary trends,
from dinosaurs to viruses.</p>
</div>
<br /><br /><br /><br /><br />
<div class="contact">
kevin surya · montana state university · bozeman · mt
· usa · <a href="mailto:sadikin.kevin@gmail.com"
style="color: gray;
text-decoration: none";>kevinsurya@montana.edu</a>
</div>
</body>
</html>