From 908593022c229a667d0ff2625fd88b65d9331a46 Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Wed, 15 Apr 2020 19:05:33 -0500 Subject: update style --- public/hello-world/index.html | 27 --------------------------- public/hello-world/style.css | 35 ----------------------------------- public/style.css | 6 ++++-- templates/footer.html | 9 +++++---- templates/header.html | 2 +- templates/index.html | 3 ++- templates/post.html | 2 +- templates/style.css | 6 ++++-- 8 files changed, 17 insertions(+), 73 deletions(-) delete mode 100644 public/hello-world/index.html delete mode 100644 public/hello-world/style.css diff --git a/public/hello-world/index.html b/public/hello-world/index.html deleted file mode 100644 index 1c9534a..0000000 --- a/public/hello-world/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - - Hello world! - - - - -

-blaise/blog/Hello world! -

- -
- -

Header:

-

Markdown content

- -
- - - - - \ No newline at end of file diff --git a/public/hello-world/style.css b/public/hello-world/style.css deleted file mode 100644 index f1b4927..0000000 --- a/public/hello-world/style.css +++ /dev/null @@ -1,35 +0,0 @@ -a { - text-decoration: none; - color: #81a2be; -} - -body { - font-family: sans-serif; - margin: 40px auto; - max-width: 650px; - line-height: 1.5; - font-size: 16px; - background-color: #1d1f21; - color: #c5c8c6; - padding: 0 10px; - text-align: left; -} - -.singlespaced { - line-height: 1; -} - -.horizontal { - display: flex; - list-style-type: none; - padding: 0; - justify-content: space-between; -} - -.tab30 { - margin-left: 30px; -} - -.tab60 { - margin-left: 60px; -} \ No newline at end of file diff --git a/public/style.css b/public/style.css index f1b4927..fc599ab 100644 --- a/public/style.css +++ b/public/style.css @@ -4,15 +4,17 @@ a { } body { - font-family: sans-serif; + font-family: 'DejaVu Sans Mono', monospace; margin: 40px auto; - max-width: 650px; + min-width: 80ch; + max-width: 80ch; line-height: 1.5; font-size: 16px; background-color: #1d1f21; color: #c5c8c6; padding: 0 10px; text-align: left; + overflow-y: scroll; } .singlespaced { diff --git a/templates/footer.html b/templates/footer.html index 7016b7a..3cc1a0e 100644 --- a/templates/footer.html +++ b/templates/footer.html @@ -1,9 +1,10 @@
- +

+built {{ date }} +{{ "\xa0" * 36 }} +CC0: no copyright +

diff --git a/templates/header.html b/templates/header.html index e913fc1..67bc013 100644 --- a/templates/header.html +++ b/templates/header.html @@ -1,7 +1,7 @@ - + {{ title }} diff --git a/templates/index.html b/templates/index.html index 96fe662..7a74e3c 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,7 +1,7 @@ {% include "header.html" %}

-blaise/blog +blaise-blog


@@ -14,6 +14,7 @@ You may be interested in my meta post.
Thanks for stopping by! —Blaise

+

{% for post in posts %} {{ post.date }} diff --git a/templates/post.html b/templates/post.html index 563fbb1..cf7b1f1 100644 --- a/templates/post.html +++ b/templates/post.html @@ -1,7 +1,7 @@ {% include "header.html" %}

-blaise/blog/{{ post.title }} +blaise-blog/{{ post.title }}


diff --git a/templates/style.css b/templates/style.css index 4517798..c5c545b 100644 --- a/templates/style.css +++ b/templates/style.css @@ -4,15 +4,17 @@ a { } body { - font-family: sans-serif; + font-family: 'DejaVu Sans Mono', monospace; margin: 40px auto; - max-width: 650px; + min-width: 80ch; + max-width: 80ch; line-height: 1.5; font-size: 16px; background-color: #1d1f21; color: #c5c8c6; padding: 0 10px; text-align: left; + overflow-y: scroll; } .singlespaced { -- cgit v1.2.3