Skip to content

Commit

Permalink
a bit of cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kenmickles committed Feb 10, 2012
1 parent e5facbb commit 5546c04
Showing 1 changed file with 4 additions and 65 deletions.
69 changes: 4 additions & 65 deletions index.html
Expand Up @@ -8,12 +8,9 @@
<title>Ken Mickles</title>
<style type="text/css">
body {
font-size: 16px;
line-height: 1.4em;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
letter-spacing:0.08em;
font: lighter 16pt/1.3em Helvetica, Arial, sans-serif;
color: #666;
background:#1A1A1A url(http://kenmickles.com/images/bg.png) repeat fixed 0 0;
background:#1A1A1A url(/images/bg.png) repeat fixed 0 0;
}

h3 {
Expand Down Expand Up @@ -47,7 +44,7 @@

#content {
width: 620px;
margin: 25px auto;
margin: 8% auto;
}

#footer {
Expand All @@ -57,33 +54,6 @@
font-weight: lighter;
margin-top:20px;
}

#overlay {
background-image: url(http://kenmickles.com/images/overlay_bg.gif);
bottom: 0;
left: 0;
position: fixed;
right: 0;
text-align: center;
top: 0;
}

#overlay #wib-map {
box-shadow: 1px 1px 12px #111111;
-moz-box-shadow: 1px 1px 12px #111;
-webkit-box-shadow: 1px 1px 12px #111;
margin: 10% auto;
position: relative;
width: 800px;
height: 500px;
background-color: #fff;
}

#overlay a.close {
left: -19px;
position: absolute;
top: -19px;
}
</style>

<![if !IE]>
Expand All @@ -95,45 +65,14 @@
max-width: 90%;
}
</style>
<![endif]>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
// wib map link
$('a.wib-map').click(function(){
$('body').append('<div id="overlay"><div id="wib-map"><a class="close" href="#"><img src="/images/close.png" alt="x" /></a><iframe src="http://www.whereivebeen.com/map.php?uID=8058374&amp;iID=ir4ej3jo9lcs2oojngiwux5zc0cymxou" width="800" height="500" scrolling="no" frameborder="0"></iframe></div></div>');
return false;
});

// close overlay link
$('#overlay a.close').live('click', function(){
$('#overlay').fadeOut('fast', function(){
$(this).remove();
});
});

// hide popup when escape key is pressed
$(document).keyup(function(e) {
if ( e.keyCode == 27 && $('#overlay').is(':visible') ) {
$('#overlay').fadeOut('fast', function(){
$(this).remove();
});
}
});
});
</script>

<![endif]>
</head>
<body>
<div id="content">
<img class="main" src="http://kenmickles.com/images/about.jpg" alt="A photo of me" />
<h3>Hi, my name is <strong>Ken Mickles</strong>. I'm a <a href="http://www.linkedin.com/in/kenmickles">professional software developer</a> and <a href="http://spoonfullofpoo.com">amateur filmmaker</a> from Philadelphia, PA.</h3>
<p>I keep my videos on <a href="http://vimeo.com/kenmickles">Vimeo</a>, my code on <a href="http://github.com/kenmickles">Github</a>, and my notebook on <a href="http://k3n.tumblr.com">Tumblr</a>.</p>
<p>You can contact me directly via <a href="mailto:ken@37i.net">email</a> or <a href="http://facebook.com/kenmickles">Facebook</a>.</p>
<div id="footer">
<p>Last updated: <em>January 23rd, 2012</em></p>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
Expand Down

0 comments on commit 5546c04

Please sign in to comment.