summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgamerdonkey2020-05-24 12:16:18 -0500
committergamerdonkey2020-05-24 12:16:18 -0500
commit46f34793588b78daa2b32495454cea3959d16e05 (patch)
treeec26bdda9d94ad12140ee706f4216ace98fe0539
parentcd27091ea122aaca8a161ab1a8039a99f0d90251 (diff)
downloadgamerdonkey.com-blog-46f34793588b78daa2b32495454cea3959d16e05.tar.gz
gamerdonkey.com-blog-46f34793588b78daa2b32495454cea3959d16e05.tar.bz2
gamerdonkey.com-blog-46f34793588b78daa2b32495454cea3959d16e05.zip
Updating the theme for asthetic improvements.
-rw-r--r--themes/gamerdonkey-theme/static/css/style.css14
-rw-r--r--themes/gamerdonkey-theme/templates/index.html4
-rw-r--r--themes/gamerdonkey-theme/templates/page.html8
3 files changed, 23 insertions, 3 deletions
diff --git a/themes/gamerdonkey-theme/static/css/style.css b/themes/gamerdonkey-theme/static/css/style.css
index 5c26248..5715dd0 100644
--- a/themes/gamerdonkey-theme/static/css/style.css
+++ b/themes/gamerdonkey-theme/static/css/style.css
@@ -4,9 +4,8 @@ body {
border: solid 1px lightgray;
margin: 1em auto;
max-width: 40em;
- padding: 1em;
- font-family: monospace;
- font-size: 12pt;
+ padding: 0em 1em 1em 1em;
+ font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}
a {
@@ -47,3 +46,12 @@ footer#contentinfo {
font-size: 0.7em;
text-align: center;
}
+
+ol#post-list {
+ list-style: none;
+ padding-left: 0em;
+}
+
+footer.post-info {
+ font-size: 0.8em;
+}
diff --git a/themes/gamerdonkey-theme/templates/index.html b/themes/gamerdonkey-theme/templates/index.html
new file mode 100644
index 0000000..21476a9
--- /dev/null
+++ b/themes/gamerdonkey-theme/templates/index.html
@@ -0,0 +1,4 @@
+{% extends "!simple/index.html" %}
+
+{% block content_title %}
+{% endblock %}
diff --git a/themes/gamerdonkey-theme/templates/page.html b/themes/gamerdonkey-theme/templates/page.html
new file mode 100644
index 0000000..c7658fb
--- /dev/null
+++ b/themes/gamerdonkey-theme/templates/page.html
@@ -0,0 +1,8 @@
+{% extends "!simple/page.html" %}
+
+{% block content %}
+ {% import 'translations.html' as translations with context %}
+ {{ translations.translations_for(page) }}
+
+ {{ page.content }}
+{% endblock %}