-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (52 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Georgie Mathews</title>
<style>
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.content {
max-width: 30rem;
padding: 1.5rem 2rem;
}
.site__title {
text-decoration: none;
font-size: 1.25rem;
color: #2563EB;
}
.page__title {
color: #6B7280;
font-size: 1.5rem;
font-weight: normal;
}
.page__title:not(:first-of-type) {
text-decoration: line-through;
}
.nowrap {
white-space: nowrap;
}
</style>
</head>
<body>
<div class="content">
<header>
<a class="site__title" href="/" rel="home" title="Home">Georgie Mathews</a>
<h1 class="page__title">I work at Nuro where I build software to better everyday life through robotics.</h1>
<h1 class="page__title">I work at Protoqual where I build software to improve healthcare through <span class="nowrap">targeted education</span>.</h1>
</header>
</div>
</body>
</html>