Skip to content

Commit

Permalink
Initial style, woo
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Apr 3, 2009
1 parent 6eb3d55 commit 8575a43
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_site/
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
auto: true
server: true
1 change: 1 addition & 0 deletions css/960.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions css/reset.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions css/screen.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#left {
background: #ddd;
color: #000;
text-align: right;
}

#right {
background: #000;
color: #ddd;
left: 50%;
}

.bg {
position: absolute;
height: 100%;
width: 50%;
font-size: 10em;
font-family: Georgia, Times, sans-serif;
}

p {
font-size: 10%;
font-family: Verdana, serif;
margin-top: 50px;
margin-left: 3px;
margin-right: 3px;
}

ul {
font-size: 25%;
font-family: Verdana, serif;
margin-top: 50px;
}

ul li {
margin: 10px;
}
1 change: 1 addition & 0 deletions css/text.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>jekyll</title>
<link href="http://feeds2.feedburner.com/git-ready" rel="alternate" title="RSS" type="application/rss+xml" />
<link rel="stylesheet" href="/css/reset.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" />
<!--
<link rel="stylesheet" href="/css/960.css" type="text/css" media="screen, projection" />
-->
</style>
</head>
<body>
<div id="left" class="bg">
jek
<p>
transform your text
</p>
<ul>
<li>code</li>
<li>docs</li>
</ul>
</div>
<div id="right" class="bg">
yll
<p>
into a monster
</p>
<ul>
<li>faq</li>
<li>install</li>
</ul>
</div>
</body>
</html>

0 comments on commit 8575a43

Please sign in to comment.