added initial static assets

This commit is contained in:
Stephen McQuay 2015-02-09 21:27:22 -08:00
commit 774307245f
4 changed files with 78 additions and 0 deletions

52
static/css/sm.css Normal file
View File

@ -0,0 +1,52 @@
@import url(http://fonts.googleapis.com/css?family=Exo+2:900);
body {
background-color: #222;
color: #fff;
text-align: center;
font-family: 'Courier';
padding: 20px;
}
a {
color: #f88;
text-decoration: none;
}
:visited {
color: #c88;
}
#content {
vertical-align: middle;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
font-size: 20px;
}
#title {
font-family: 'Exo 2', sans-serif;
vertical-align: middle;
font-size: 48px;
padding-bottom: 40px;
}
#info {
padding-top: 20px;
}
@media (min-width: 400px) {
#content {
width: 380px;
font-size: 18px;
}
#title {
font-size: 64px;
}
#info {
padding-top: 30px;
}
}

BIN
static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
static/img/smcquay.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

26
static/index.html Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>smcquay</title>
<link rel="stylesheet" type="text/css" href="/css/sm.css">
</head>
<body>
<div id="content">
<div id="title">
<a href="https://sec.mcquay.me">smcquay</a>
</div>
<div id="pic">
<a href="https://sec.mcquay.me"><img src="/img/smcquay.png"></a>
</div>
<div id="info">
<p>
My name is <a href="http://stephen.mcquay.me">Stephen McQuay</a>,
<a href="https://twitter.com/smcquay">smcquay</a> on the internet.
I speak <a href="https://golang.org">gopher</a>
</p>
</div>
</div>
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-2869147-4', 'auto'); ga('send', 'pageview'); </script>
</body>
</html>