From f17d0eeea6e32ae0b1100154cd0aeab8beb1982d Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 13 Apr 2022 19:06:57 -0500 Subject: [PATCH] cv: index: use font face for slashed 0 Using the "combining long solidus overlay" Unicode character to draw the "slashed zero" does not look very good on many systems. It looks fine on my local machine, with the DejaVu font package that comes with Fedora, but that's about it. The web font apparently does not have this character, so browsers fall back to another system font to render it, which can have varying results. The DejaVu Sans Mono font has a "dotted" zero, which is similar enough to a "slashed" zero. Unless you're looking very closely, you can't really see that the callsign is in a different font, so I think this works fine. I really don't want to use the "Latin capital O with slash" character for this, since that is completely incorrect, but I do want to have the zero stylized like ham radio operators do. --- content/cv/_index.md | 2 +- sass/style.scss | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/content/cv/_index.md b/content/cv/_index.md index 13beaa3..33da855 100644 --- a/content/cv/_index.md +++ b/content/cv/_index.md @@ -16,7 +16,7 @@ Awards and Scholarships: * DeVry University Dean's Scholarship * DeVry University Presidential Scholarship Alternate -* ARRL Irving W. Cook, WA0̸CGS Scholarship +* ARRL Irving W. Cook, WA0CGS Scholarship # Skills diff --git a/sass/style.scss b/sass/style.scss index 80ec22d..9db4b8c 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -84,6 +84,10 @@ code { background-color: #191919; } +span#n0 { + font-family: "DejaVu Sans Mono", monospace, monospace; +} + /* Header */ @media only screen and (min-width: 800px) {