alexkarle.com

Source for alexkarle.com
git clone git://git.alexkarle.com/alexkarle.com.git
Log | Files | Refs | README | LICENSE

commit 51f66594ca3828f549b69ad0dcd9397b8b6822ba (patch)
parent 43d27d59dfa41fee65700013d46941f3ba0819e2
Author: Alex Karle <alex@alexkarle.com>
Date:   Sun, 19 Jul 2020 16:19:35 -0400

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 <code> blocks from the regular text.

Changing from monospace -> sans-serif makes it both easier to read and
easier to distinguish the <code> from the <p>.

Diffstat:
Mcontent/03-24-20-domain-name.md | 8++++----
Mcontent/07-19-20-self-hosted.md | 4++--
Mcontent/index.md | 4++--
Mcontent/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 @@ -8,18 +8,18 @@ have much). Just for me. The results were... disheartening. -* **karle.org:**<br> Registered since 2004, no website, just an email +* **`karle.org:`**<br> 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:**<br> For sale by owner on Uniregistry. Ok. Inquired. +* **`karle.com:`**<br> For sale by owner on Uniregistry. Ok. Inquired. Owner wants a "serious 5 figure offer". Next! -* **karle.net:**<br> Owned by [RealNames](https://realnames.com), +* **`karle.net:`**<br> 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. <!-- {% include=post-tail %} --> diff --git 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 @@ -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` <!-- {% include=tail %} --> diff --git 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 {