-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (43 loc) · 1.03 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
---
layout: default
title: Greg Gilbert
---
<style>
* {
box-sizing: border-box;
}
/* Create two unequal columns that floats next to each other */
.column {
float: left;
padding: 5px;
}
.left {
width: 25%;
}
.right {
width: 75%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
</style>
<body>
<div class="row">
<div class="column left">
<p><img src="/images/headshot.jpg" style="width:100%;"></p>
</div>
<div class="column right">
<h1>Hi, I'm Greg Gilbert!</h1>
<p style="font-size:1.5em">I'm a postdoctoral scholar in the Physics & Astronomy department at UCLA.</p>
<p style="font-size:1.2em">My research primarily focuses on understanding the architectures, demographics, and dynamics of exoplanetary systems. I'm especially interested in large-scale surveys and developing new tools to wring the maximum information content out of the available data.</p>
</div>
</div>
</body>