Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
derek committed Nov 5, 2013
1 parent 3595692 commit 36cea1f
Showing 1 changed file with 55 additions and 40 deletions.
95 changes: 55 additions & 40 deletions homepage/index.html
@@ -1,43 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<style>

body {
text-align: center;
}

h1 {
text-align: center;
font-family: sans-serif;
font-size: 5em;
color: #2C3539;
margin-bottom:0px;
}

#logos {
margin-top:30px;
}

#logos a img {
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
}

#logos a:hover img {
-webkit-transform: translate(0, -25px);
transform: translate(0, -25px);
}
</style>
</head>
<body>
<h1>Derek Gathright</h1>
<p>Hello. I am a software engineer in San Francisco, California.</p>
<p>You can connect with me at:</p>
<div id="logos">
<a id="github" href="http://github.com/derek"><img src="github.png" height="350"></a>
<a id="twitter" href="http://twitter.com/derek"><img src="twitter.png" height="350" style="position:relative; "></a>
<a id="wordpress" href="http://derek.io/blog"><img src="wordpress.png" height="350" style="position:relative;"></a>
</div>
</body>
<head>
<title>Derek Gathright</title>
<style>

body {
text-align: center;
}

h1 {
text-align: center;
font-family: sans-serif;
font-size: 5em;
color: #2C3539;
margin-bottom:0px;
}

#logos {
margin-top:30px;
}

#logos a img {
-webkit-transition: all .3s ease-out;
transition: all .3s ease-out;
}

#logos a:hover img {
-webkit-transform: translate(0, -25px);
transform: translate(0, -25px);
}
</style>
</head>
<body>
<h1>Derek Gathright</h1>
<p>Hello. I am a software engineer in San Francisco, California.</p>
<p>You can connect with me at:</p>
<div id="logos">
<a id="github" href="http://github.com/derek"><img src="github.png" height="350"></a>
<a id="twitter" href="http://twitter.com/derek"><img src="twitter.png" height="350" style="position:relative; "></a>
<a id="wordpress" href="http://derek.io/blog"><img src="wordpress.png" height="350" style="position:relative;"></a>
</div>
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-51709-19']);
_gaq.push(['_setDomainName', 'derek.io']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>
</body>
</html>

0 comments on commit 36cea1f

Please sign in to comment.