From 51f66594ca3828f549b69ad0dcd9397b8b6822ba Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Sun, 19 Jul 2020 16:19:35 -0400 Subject: [PATCH] style: Move from monospace-everywhere to monospace-headers While I originally liked the old-timey feel of being monospace everywhere, I now subscribe to the ideology that it is harder to read prose in monospace (this became most noticeable with my recent post that was about 3x longer than any prior post...). I like the monospace vibe in the headers and nav (for spacing reasons), but now that I'm rendering / componsing in markdown, I needed a way to signify the blocks from the regular text. Changing from monospace -> sans-serif makes it both easier to read and easier to distinguish the from the

. --- content/03-24-20-domain-name.md | 8 ++++---- content/07-19-20-self-hosted.md | 4 ++-- content/index.md | 4 ++-- content/style.css | 7 ++++++- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/content/03-24-20-domain-name.md b/content/03-24-20-domain-name.md index 1dc994a..8ccbeba 100644 --- a/content/03-24-20-domain-name.md +++ b/content/03-24-20-domain-name.md @@ -8,18 +8,18 @@ have much). Just for me. The results were... disheartening. -* **karle.org:**
Registered since 2004, no website, just an email +* **`karle.org:`**
Registered since 2004, no website, just an email DNS record. WHOIS guard ensures I can't even reach out to who owns it. -* **karle.com:**
For sale by owner on Uniregistry. Ok. Inquired. +* **`karle.com:`**
For sale by owner on Uniregistry. Ok. Inquired. Owner wants a "serious 5 figure offer". Next! -* **karle.net:**
Owned by [RealNames](https://realnames.com), +* **`karle.net:`**
Owned by [RealNames](https://realnames.com), a business seemingly centered around buying lastname.net domains and charging people like me to set up an email. Almost brilliant enough of a business to make me forgive their scumminess. _Almost_. Nary an option to buy it. -So here we are. Looks like karle.co for at least a little longer. +So here we are. Looks like `karle.co` for at least a little longer. diff --git a/content/07-19-20-self-hosted.md b/content/07-19-20-self-hosted.md index 83b0fa2..3701e79 100644 --- a/content/07-19-20-self-hosted.md +++ b/content/07-19-20-self-hosted.md @@ -28,7 +28,7 @@ I'm currently running (in no particular order): * **OS:** OpenBSD * **Web server:** OpenBSD's `httpd(8)` - Serves the `www.` static content - - Also serves [git.alexkarle.com][git] + - Also serves [`git.alexkarle.com`][git] * **Reverse proxy:** OpenBSD's `relayd(8)` - Used to send traffic between [`euchre.live`][el] (which uses a [Mojolicious][mojo] web server as the backend) and `alexkarle.com` based on URL @@ -41,7 +41,7 @@ I'm currently running (in no particular order): * **Git:** - Public repos served with `git-daemon(1)` over the `git://` protocol - Push access via the `ssh://` protocol - - static HTML of content generated via post-receive hook with [stagit][stagit] + - static HTML of content generated via post-receive hook with [`stagit(1)`][stagit] That's all for now! diff --git a/content/index.md b/content/index.md index 9134328..0de91ad 100644 --- a/content/index.md +++ b/content/index.md @@ -11,7 +11,7 @@ and OpenBSD), SCM systems (mostly git), and developer tooling. ### Find me online: -* GitHub: [@akarle](https://github.com/akarle) -* Email: alex AT this-domain +* GitHub: [`@akarle`](https://github.com/akarle) +* Email: `alex AT this-domain` diff --git a/content/style.css b/content/style.css index 0aea6ed..56c5fa1 100644 --- a/content/style.css +++ b/content/style.css @@ -1,9 +1,14 @@ body { background-color: #F5F5F5; - font-family: "Courier New", monospace; + font-family: sans-serif; margin-left: 20px; margin-right: 20px; font-size: 1em; + line-height: 1.3; +} + +h1, h2, #nav { + font-family: "Courier New", monospace; } ul { -- libgit2 1.1.1