summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--about/index.html2
-rw-r--r--archives.html4
-rw-r--r--static/css/screen.css12
-rw-r--r--talks/index.html2
4 files changed, 17 insertions, 3 deletions
diff --git a/about/index.html b/about/index.html
index ecad6a1..488c609 100644
--- a/about/index.html
+++ b/about/index.html
@@ -1,6 +1,7 @@
---
layout: default
---
+<div id="page">
<section itemscope itemtype="http://data-vocabulary.org/Person">
<h2>About</h2>
<p>
@@ -32,3 +33,4 @@ layout: default
</ul>
</p>
</section>
+</div>
diff --git a/archives.html b/archives.html
index 38c73aa..9dfb73d 100644
--- a/archives.html
+++ b/archives.html
@@ -2,11 +2,11 @@
layout: default
title: Archives
---
-
+<div id="page">
<h2>archive</h2>
<ul>
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a> <abbr>{{ post.date | date_to_string }}</abbr></li>
{% endfor %}
</ul>
-
+</div>
diff --git a/static/css/screen.css b/static/css/screen.css
index 687dd65..dcac754 100644
--- a/static/css/screen.css
+++ b/static/css/screen.css
@@ -131,7 +131,7 @@ ul.posts span {
border: 0;
}
-#post {
+#post #page {
margin: .5em 1.1em .5em 1.1em;
}
@@ -185,6 +185,16 @@ ul.posts span {
margin-top: 2em;
}
+#page h2 {
+ border-bottom: 1px solid #ededed;
+ margin-top: 2em;
+}
+
+#page h3 {
+ border-bottom: 1px solid #ededed;
+ margin-top: 2em;
+}
+
#post_title {
text-align: left;
padding-bottom: .1em;
diff --git a/talks/index.html b/talks/index.html
index 75db29c..777d312 100644
--- a/talks/index.html
+++ b/talks/index.html
@@ -1,6 +1,7 @@
---
layout: default
---
+<div id="page">
<h2>Previous and Upcoming Talks</h2>
<ul>
@@ -67,3 +68,4 @@ layout: default
<em>Catalyst Advent Calendar</em> &#8212; <a href="http://www.catalystframework.org/calendar/2009/19">Writing REST services with Catalyst</a>
</li>
</ul>
+</div>