-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (80 loc) · 2.38 KB
/
index.html
File metadata and controls
87 lines (80 loc) · 2.38 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
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<!-- Personal homepage design copied from http://joshdavidmiller.com/ -->
<head>
<title>Jared Neil</title>
<link href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet" type="text/css">
<style>
html, body {
background-color: #607d8b;
color: white;
display: table;
height: 100%;
text-align: center;
width: 100%;
}
#content {
display: table-cell;
font-family: 'Roboto', sans-serif;
height: 100%;
vertical-align: middle;
width: 100%;
}
#name {
font-size: 100px;
}
#subtitle {
font-size: 20px;
padding-bottom: 40px;
}
#spacer {
height: 20%;
max-height: 200px;
}
.icon {
color: white;
transition: color 200ms;
}
.icon:hover {
color: black;
}
</style>
</head>
<body>
<div id="content" class="container">
<div id="name">Jared Neil</div>
<div id="subtitle">Senior Software Engineer at Lucid Software</div>
<div id="icons">
<ul class="list-inline">
<li>
<a href="https://github.com/JaredNeil">
<span class="icon fa-stack fa-2x">
<i class="fa fa-stack-1x fa-github"></i>
<i class="fa fa-stack-2x fa-square-o"></i>
</span>
</a>
</li>
<li>
<a href="http://stackexchange.com/users/473389/jared-neil">
<span class="icon fa-stack fa-2x">
<i class="fa fa-stack-1x fa-stack-overflow"></i>
<i class="fa fa-stack-2x fa-square-o"></i>
</span>
</a>
</li>
<li>
<a href="https://twitter.com/jaredaneil">
<span class="icon fa-stack fa-2x">
<i class="fa fa-stack-1x fa-twitter"></i>
<i class="fa fa-stack-2x fa-square-o"></i>
</span>
</a>
</li>
</ul>
</div>
<div id="spacer"></div>
</div>
</body>
</html>