Skip to content

Commit

Permalink
removing hk.nl specific stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
hay committed Oct 14, 2010
1 parent d75b0d2 commit 48cfd0a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 7 deletions.
8 changes: 1 addition & 7 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,9 @@
<head>
<meta charset="utf-8" />
<title>PHP Markov chain text generator by Hay Kranen</title>
<link rel="stylesheet" type="text/css" href="http://static.haykranen.nl/common/style.css" />
<?php echo file_get_contents('http://static.haykranen.nl/common/nav/html/head.php'); ?>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<a href="http://github.com/hay/markov">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" />
</a>

<?php echo file_get_contents('http://static.haykranen.nl/common/nav/html/nav.php'); ?>
<div id="wrapper">
<h1>PHP Markov chain text generator</h1>
<p>This is a very simple Markov chain text generator. Try it below by entering some
Expand Down
39 changes: 39 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
* {
font-family: Helvetica, Arial, sans-serif;
color: #333;
}

body {
margin: 0;
}

#wrapper {
margin: 0 auto;
width: 960px;
}

h1, h1 a {
color: #666;
border-bottom: 1px solid #ccc;
text-decoration: none;
margin: 10px 0 0 0;
}

input {
margin-bottom: 10px;
}

a { color: #33f; }
a:hover { color: #f33; }

pre {
font-family: courier, monospace;
}

pre.code {
background: black;
color: #0f0;
border-left: 5px solid #909090;
padding: 0 10px 20px 10px;
overflow: auto;
}

0 comments on commit 48cfd0a

Please sign in to comment.