diff --git a/theme/static/css/custom.css b/theme/static/css/custom.css
index f71ac0c..41aa241 100644
--- a/theme/static/css/custom.css
+++ b/theme/static/css/custom.css
@@ -283,14 +283,18 @@ h1, h2, h3, h4, h5, h6 {
/* Main content */
-#main-header h1,
-#site-footer p {
+#site-footer p,
+.extra-header h1 {
box-shadow: var(--pico-card-box-shadow);
padding: calc(var(--pico-block-spacing-horizontal) * 0.5) calc(var(--pico-block-spacing-vertical) * 0.5);
text-align: center;
background-color: var(--pico-card-background-color);
}
+#content-header h1 {
+ text-align: center;
+}
+
.featured-image {
text-align: center;
}
@@ -299,7 +303,7 @@ figcaption {
text-align: center;
font-size: 0.8em;
- a { font-size: 0.85m;}
+ a { font-size: 0.85em;}
}
#no-bottom-margin {
@@ -307,8 +311,16 @@ figcaption {
clip-path: inset(-138px -138px -0px -138px);
}
-/* Index page */
+article form {
+ box-shadow: none;
+}
+.padded {
+ margin-left: var(--pico-block-spacing-horizontal);
+ margin-right: var(--pico-block-spacing-horizontal);
+}
+
+/* Index page */
.index {
display: flex;
flex-wrap: wrap;
@@ -593,7 +605,7 @@ img.impr {
height: 1.2lh;
}
-.main-footer {
+.content-footer {
font-size: calc(var(--pico-font-size) * .7);
a {
diff --git a/theme/templates/article.html b/theme/templates/article.html
index 3a435ce..de92130 100644
--- a/theme/templates/article.html
+++ b/theme/templates/article.html
@@ -7,14 +7,16 @@
{% if article.summary %} {{ article.summary|e }} {% else %} An Article in {{ SITETAG }}: {{ article.title }}{% endif %}
{% endblock %}
-{% block content_header %}
-{{ article.title }}
-{{ article.title }}
+