-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (69 loc) · 3.11 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
<!DOCTYPE html>
<html>
<head>
<title>Hi, I'm Phil...</title>
<link href='http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<style>
/*reset*/
html, body { margin:0; padding:0; height:100% }
/*common*/
#wrap, header, #mid, #social { display:block }
li, #social a { display:inline-block }
#wrap { margin:0 auto }
h1 { margin:0 }
/*main*/
header { min-height:20% }
header img { width:100%; max-width:996px; height:auto; pointer-events:none }
#wrap { height:100%; max-width:1200px }
#social { margin:0 }
p { width:50%; border: 10px solid #000000; padding:10px; margin:0 10px; border-radius:20px }
li { margin:10px 10px 0 0 }
h1 { margin:0 10px }
h2 { margin:10px 20px }
/*background*/
body { background-color:#000000; background-image:url('img/me.jpg'); background-attachment:fixed; background-position:center center; background-size:cover }
p { background: rgba(0,0,0,0.8) }
/*typo*/
body { font-family: 'Roboto Condensed', sans-serif }
h1 { font-family: Bangers }
body, a { color:#FFFFFF }
#social { text-align:right; }
h1 { font-size:9em }
h2 { font-size:4em }
p { font-size:1.5em }
h1 { font-weight:100 }
#social, #social li { list-style:none }
/*effects*/
h1 { text-shadow: 3px 3px #000000 }
@-webkit-keyframes spin {
0% {-webkit-transform: rotate(0deg)}
100% {-webkit-transform: rotate(360deg)}
}
#social a:hover img { -webkit-animation: spin 0.25s 1 linear }
</style>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
</head>
<body>
<div id="wrap">
<header>
<h1>Hi, I'm Phil!</h1>
<ul id="social">
<li><a href="https://twitter.com/filever10" target="_blank"><img src="https://raw.githubusercontent.com/danleech/simple-icons/master/icons/twitter/twitter-48.png" alt="Twitter"/></a></li>
<li><a href="http://www.linkedin.com/in/filever10" target="_blank"><img src="https://raw.githubusercontent.com/danleech/simple-icons/master/icons/linkedin/linkedin-48.png" alt="LinkedIn"/></a></li>
<li><a href="http://stackoverflow.com/users/2903898/filever10" target="_blank"><img src="https://raw.githubusercontent.com/danleech/simple-icons/master/icons/stackoverflow/stackoverflow-48.png" alt="Stack Overflow"/></a></li>
<li><a href="mailto:phil@inclind.com"><img src="https://raw.githubusercontent.com/danleech/simple-icons/master/icons/email/email-48.png" alt="Stack Overflow"/></a></li>
<li><a href="https://plus.google.com/107374775337603086201" target="_blank"><img src="https://raw.githubusercontent.com/danleech/simple-icons/master/icons/googleplus/googleplus-48.png" alt="Google Plus"/></a></li>
</ul>
</header>
<article>
<h2>Work</h2>
<p>I work as a front-end dev @ <a href="http://inclind.com" target="_blank">Inclind, Inc.</a> Where we use Drupal to make awesome web experiences.</p>
</article>
<article>
<h2>About</h2>
<p>I live in Seaford, Delaware with my wife and kids, and have been working with the web for a long time. You can catch me skateboarding, shredding on guitar, programming fun solutions to problems, or hanging out with my younglings.</p>
</article>
</div>
</body>
</html>