Skip to content

Commit

Permalink
Index
Browse files Browse the repository at this point in the history
  • Loading branch information
kpdecker committed May 27, 2010
1 parent ba9ff69 commit a0f2e41
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 0 deletions.
69 changes: 69 additions & 0 deletions css/demo.css
@@ -0,0 +1,69 @@
/*
* Copyright (c) 2010 Kevin Decker (http://www.incaseofstairs.com/)
* See LICENSE for license information
*/

body {
background-color: #83ADC8;
color: white;
font-size: 9pt;
font-family: trebuchet ms,arial,helvetica,sans-serif;
margin: 0;
}

a {
color: inherit;
text-decoration: none;
}

h1 {
display: inline-block;

margin: 0;
padding: 5px 15px;

font-size: 15pt;
font-weight: normal;
letter-spacing: -2px;
}

.wrapper {
margin: 0px auto;
padding: 0;
background-color: #131F27;

width: 960px;
}

.header {
background-color: black;
margin: 20px 0 0;
}

.wrapper, .header {
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
border-radius: 10px 10px 0px 0px;
}

.content {
margin: 5px 15px 0px;
overflow: hidden;
}

.footer {
background-color: black;
padding: 10px 25px;
clear: both;
overflow: auto;
}
.footer > .left {
float: left;
}
.footer > .right {
float: right;
}
.header > a,
.footer > div > a {
color: #6598B8;
}
46 changes: 46 additions & 0 deletions index.html
@@ -0,0 +1,46 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--
Copyright (c) 2010 Kevin Decker (http://www.incaseofstairs.com/)
See LICENSE for license information
-->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>incaseofstairs demo</title>

<link rel="stylesheet" type="text/css" href="css/demo.css">

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-15628919-3"]);
_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>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>incaseofstairs demo</h1>
</div>
<div class="content">
<h2>Index</h2>
<ul>
</ul>
</div>
<div class="footer">
<div class="left">
<a href="http://www.incaseofstairs.com/">incaseofstairs</a>
</div>
<div class="right">
<a href="http://github.com/kpdecker/demo">demo @ github</a>
</div>
</div>
</div>
</html>
</body>
</html>

0 comments on commit a0f2e41

Please sign in to comment.