summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/layout.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/layout.html b/templates/layout.html
index ee2a090..a76110e 100644
--- a/templates/layout.html
+++ b/templates/layout.html
@@ -26,9 +26,9 @@ header nav a, header nav a:visited {
color: #444;
}
header nav a:hover {
- color: #000;
+ color: #111;
}
-header, #content, footer {
+.padded-box {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
@@ -65,7 +65,7 @@ footer ul#contact-info li {
</head>
<body>
- <header>
+ <header class="padded-box">
<nav>
<ul>
<li><a href="index.html">index</a></li>
@@ -75,11 +75,11 @@ footer ul#contact-info li {
</nav>
</header>
<hr />
- <div id="content">
+ <div class="padded-box">
{% block content %}{% endblock %}
</div>
<hr />
- <footer>
+ <footer class="padded-box">
<div>
<p id="copy">© 2016 Johannes Löthberg</p>
</div>