summary refs log tree commit diff stats
diff options
context:
space:
mode:
authormounderfod <mounderfod@gmail.com>2023-07-04 12:36:08 +0100
committermounderfod <mounderfod@gmail.com>2023-07-04 12:36:08 +0100
commit5b6b5a6fb54ab22ea8dfec79ce8df72d167616b9 (patch)
tree1119ba580c7571e2802b3141bcb538f1c94977d9
parent96f58495fa625bb7ba1824118c6d2dc2b261139b (diff)
downloadwebsite-5b6b5a6fb54ab22ea8dfec79ce8df72d167616b9.tar.gz
CSS fixes, add RSS link, change font
-rw-r--r--assets/Windows Regular.ttfbin88840 -> 0 bytes
-rw-r--r--assets/img/wordart.pngbin272965 -> 195077 bytes
-rw-r--r--assets/index.css19
-rw-r--r--blog.html1
4 files changed, 13 insertions, 7 deletions
diff --git a/assets/Windows Regular.ttf b/assets/Windows Regular.ttf
deleted file mode 100644
index 26abb3d..0000000
--- a/assets/Windows Regular.ttf
+++ /dev/null
Binary files differdiff --git a/assets/img/wordart.png b/assets/img/wordart.png
index a0c6b1d..d517481 100644
--- a/assets/img/wordart.png
+++ b/assets/img/wordart.png
Binary files differdiff --git a/assets/index.css b/assets/index.css
index 3ee807b..878746b 100644
--- a/assets/index.css
+++ b/assets/index.css
@@ -1,7 +1,4 @@
-@font-face {
-  font-family: windows;
-  src: url("Windows Regular.ttf");
-}
+@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");
 
 html {
   background-image: url(img/background.png);
@@ -17,7 +14,7 @@ h4,
 h5,
 h6,
 li {
-  font-family: windows;
+  font-family: "JetBrains Mono", monospace;
 }
 .field {
   width: 20%;
@@ -52,7 +49,8 @@ marquee {
   display: block;
   margin-left: auto;
   margin-right: auto;
-  max-width: 50%;
+  max-width: 40%;
+  margin-bottom: 2em;
 }
 
 #container {
@@ -63,6 +61,8 @@ marquee {
 
 .logo {
   width: 100%;
+  margin-left: auto;
+  margin-right: auto;
 }
 
 .box {
@@ -93,6 +93,11 @@ code {
   background-color: black;
 }
 
+a > h2 {
+  color: white;
+  text-decoration: underline wavy white;
+}
+
 pre {
   padding: 5px;
 }
@@ -101,7 +106,7 @@ pre {
   padding: 5px;
 }
 
-@media screen and (max-width: 1100px) {
+@media screen and (max-width: 1110px) {
   .field {
     width: 100%;
     display: block;
diff --git a/blog.html b/blog.html
index 8930e4c..1a9587f 100644
--- a/blog.html
+++ b/blog.html
@@ -4,6 +4,7 @@ title: Blog
 permalink: /blog/
 ---
 
+<a href="/feed.xml"><p>Click here for RSS feed</p></a>
 {% for post in site.posts %}
 <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
 <p><em>{{post.date | date: "%-d %B %Y"}}</em></p>