summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgamerdonkey2021-08-02 00:56:23 -0500
committergamerdonkey2021-08-02 00:56:23 -0500
commitab3de5023eaee426fd16bfae938347664e17daa3 (patch)
tree99256a8ab5df203b5655ad18fbdb219c08580ab7
parent7ecca64a31eddcdbb1fc0d448afd4f179bfd886a (diff)
downloadgamerdonkey.com-blog-ab3de5023eaee426fd16bfae938347664e17daa3.tar.gz
gamerdonkey.com-blog-ab3de5023eaee426fd16bfae938347664e17daa3.tar.bz2
gamerdonkey.com-blog-ab3de5023eaee426fd16bfae938347664e17daa3.zip
Updating the theme. Fixing some small CSS issues.
-rw-r--r--content/static/favicon.icobin32038 -> 32038 bytes
-rw-r--r--themes/gamerdonkey-theme/static/css/style.css30
-rw-r--r--themes/gamerdonkey-theme/templates/page.html2
3 files changed, 27 insertions, 5 deletions
diff --git a/content/static/favicon.ico b/content/static/favicon.ico
index f504de4..584f3c4 100644
--- a/content/static/favicon.ico
+++ b/content/static/favicon.ico
Binary files differ
diff --git a/themes/gamerdonkey-theme/static/css/style.css b/themes/gamerdonkey-theme/static/css/style.css
index bb5fb78..fce750d 100644
--- a/themes/gamerdonkey-theme/static/css/style.css
+++ b/themes/gamerdonkey-theme/static/css/style.css
@@ -1,19 +1,32 @@
body {
- background: black;
- color: lightgray;
- border: solid 1px lightgray;
+ background: #090909;
+ color: ghostwhite;
margin: 1em auto;
max-width: 50em;
padding: 0em 1em 1em 1em;
font-family: Futura, "Trebuchet MS", Arial, sans-serif;
}
+h1, h2, h3, h4, h5, h6 {
+ color: snow;
+ content: '~ ';
+}
+
+.entry-content h1:before,
+.entry-content h2:before,
+.entry-content h3:before,
+.entry-content h4:before,
+.entry-content h5:before,
+.entry-content h6:before {
+ content: '~ '
+}
+
a {
- color: white;
+ color: darkorange;
}
ul {
- list-style-type: "* ";
+ list-style-type: "-> ";
}
header#banner {
@@ -28,6 +41,7 @@ nav#menu {
nav#menu ul {
list-style: none;
+ padding-left: 0;
}
nav#menu ul li {
@@ -42,12 +56,18 @@ nav#menu ul li:last-child::after {
content: '';
}
+section#content {
+ border: 2px double ghostwhite;
+ padding: 0em 1em 1em 1em;
+}
+
img {
max-width: 100%;
height: auto;
}
footer#contentinfo {
+ margin-top: 0.5em;
font-size: 0.7em;
text-align: center;
}
diff --git a/themes/gamerdonkey-theme/templates/page.html b/themes/gamerdonkey-theme/templates/page.html
index c7658fb..3427fec 100644
--- a/themes/gamerdonkey-theme/templates/page.html
+++ b/themes/gamerdonkey-theme/templates/page.html
@@ -1,8 +1,10 @@
{% extends "!simple/page.html" %}
{% block content %}
+ <section id="content">
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
+ </section><!-- /#content -->
{% endblock %}