From 587a5288701ecaa20606fc68b7a8a4026a6d77e4 Mon Sep 17 00:00:00 2001 From: Alina Marquardt Date: Mon, 6 Mar 2023 16:27:17 +0000 Subject: [PATCH] improved monospace font choice and ASCII art --- css/main.css | 6 +++--- index.html | 24 +++++++++++------------- sass/main.scss | 6 +++--- 3 files changed, 17 insertions(+), 19 deletions(-) diff --git a/css/main.css b/css/main.css index 5efec4d..078b57f 100644 --- a/css/main.css +++ b/css/main.css @@ -85,16 +85,16 @@ article.expanded { z-index: 120 !important; } article pre { - font-family: "B612 Mono", monospace; + font-family: "Noto Sans Mono", monospace; background-color: #233733; color: #85dcb5; font-size: 1rem; - line-height: 1.2em; + line-height: 1.1em; } #article1 { right: 60px; - width: 645px; + width: 595px; } #article1 .content { padding: 0px; diff --git a/index.html b/index.html index fe0d81e..6c377f1 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - + diff --git a/sass/main.scss b/sass/main.scss index af605e0..7dbb5cd 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -95,11 +95,11 @@ article { z-index: 120 !important; } pre { - font-family: 'B612 Mono', monospace; + font-family: 'Noto Sans Mono', monospace; background-color: #233733; color: #85dcb5; font-size: 1rem; - line-height: 1.2em; + line-height: 1.1em; } } @@ -111,7 +111,7 @@ article { &.expanded { padding: 0px; } - width: 645px; + width: 595px; h1::before { background-position: 120px 0; }