diff options
-rw-r--r-- | assets/Windows Regular.ttf | bin | 88840 -> 0 bytes | |||
-rw-r--r-- | assets/img/wordart.png | bin | 272965 -> 195077 bytes | |||
-rw-r--r-- | assets/index.css | 19 | ||||
-rw-r--r-- | blog.html | 1 |
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> |