diff --git a/content/blog/_index.md b/content/blog/_index.md index 539afb4..1a84467 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,5 +1,5 @@ +++ -title = "List of blog posts" +title = "Various Ramblings" sort_by = "date" template = "blog.html" page_template = "post.html" diff --git a/static/main.css b/static/main.css index 8494336..8efe402 100644 --- a/static/main.css +++ b/static/main.css @@ -7,8 +7,7 @@ } body { - background-color: #11111b; - font-family: "JetBrains Mono", monospace; + background-color: #0a0a0a; max-width: max(800px, 45%); height: 100vh; @@ -22,11 +21,28 @@ body { justify-content: flex-start; } +:is(h1, h2, h3) { + font-family: "JetBrains Mono", monospace; + color: #8aadf4; +} +:is(a:link, a:visited) { + color: #91d7e3; +} +a:hover { + color: #8eeacd; +} + +.subtitle { + color: #8bd5ca +} + .content { } header { + font-family: "JetBrains Mono", monospace; + padding: 10px; nav { @@ -36,7 +52,7 @@ header { a { padding-left: 4px; padding-right: 4px; - color: #a6e3a1; + color: #8aadf4; } } } @@ -54,7 +70,7 @@ footer { } hr { - border: 2px dashed #89b4fa + border: 2px dotted #89b4fa } text-align: center; @@ -69,8 +85,8 @@ footer { padding: 8px; - background-color: hsl(199deg, 76%, 39%); - border-color: hsl(189deg, 71%, 73%); + background-color: hsl(199deg, 76%, 20%); + border-color: hsl(189deg, 71%, 30%); } .insert-warning { diff --git a/templates/base.html b/templates/base.html index 854d791..cf68f7c 100644 --- a/templates/base.html +++ b/templates/base.html @@ -21,7 +21,7 @@
- Hey! This is a new version of my site rewritten from scratch! + Hey! This is a new version of my site rewritten from scratch! I still don't really know what I'm doing with web dev, and this is still very WIP. Stuff is still very broken/incomplete relative to the old site, but I'm working on it! (Hopefully)
diff --git a/templates/blog.html b/templates/blog.html index 8f73e38..fa82396 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -6,7 +6,7 @@ {% endblock content %} \ No newline at end of file diff --git a/templates/post.html b/templates/post.html index 4072083..8414706 100644 --- a/templates/post.html +++ b/templates/post.html @@ -4,6 +4,6 @@

{{ page.title }}

-

{{ page.date }}

+

{{ page.date }}{%if page.updated %}   Updated {{page.updated}}{% endif %}

{{ page.content | safe }} {% endblock content %} \ No newline at end of file