-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (72 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
80 lines (72 loc) · 2.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jonas Andersson</title>
<link href='https://fonts.googleapis.com/css?family=Raleway:100,300,400' rel='stylesheet' type='text/css'>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: #111;
color: #eee;
font-family: 'Raleway', sans-serif;
font-weight: 300;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
border: 1px solid #333;
padding: 48px 56px;
max-width: 480px;
width: 100%;
}
h1 {
font-size: 28px;
font-weight: 300;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: 6px;
}
.title {
font-size: 12px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #4a9ebb;
margin-bottom: 32px;
}
.bio {
font-size: 13px;
color: #aaa;
margin-bottom: 32px;
line-height: 1.6;
}
.links {
font-size: 12px;
letter-spacing: 0.1em;
}
.links a {
color: #eee;
text-decoration: none;
margin-right: 24px;
text-transform: uppercase;
}
.links a:hover {
color: #fff;
}
</style>
</head>
<body>
<div class="card">
<h1>Jonas <span style="font-weight: 100; color: #888;">Alexander</span> Andersson</h1>
<div class="title">Data Engineer</div>
<div class="bio">Based in Stockholm. Originally from Chicago.</div>
<div class="links">
<a href="https://github.com/jandersson" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/in/anderssonjonas/" target="_blank">LinkedIn</a>
</div>
</div>
</body>
</html>