initial commit

This commit is contained in:
Andrew Davidson 2015-03-24 19:39:52 -04:00
commit 6fdd1c6fcb
3 changed files with 50 additions and 0 deletions

14
index.html Normal file
View file

@ -0,0 +1,14 @@
<html>
<head>
<title>Andrew Davidson</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Open+Sans:300' type='text/css'>
</head>
<body>
<div class="info">
<img src="logo.png" class="logo" />
<p><a href="https://amdavidson.com">Andrew Davidson</a></p>
<p><a href="http://twitter.com/amdavidson">@amdavidson</a></p>
</div>
</body>
</html>

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

36
style.css Normal file
View file

@ -0,0 +1,36 @@
body {
font-family: "Open Sans", Helvetica, sans-serif;
color: #3c3c3c;
}
a {
color: #3c3c3c;
}
a:visited {
color: #3c3c3c;
}
a:hover {
color: #ff3c3c;
}
div.info {
position: absolute;
top: 50%;
left: 10%;
width: 300px;
}
img.logo {
width: 300px;
padding-bottom: 0px;
margin-bottom: -30px;
}
div.info p {
display: block;
width: 130px;
margin: 0em auto;
margin-bottom: 10px;
}