Why does my site look like this?
This blog is primarily a platform for me to voice my opinions in a durable, shareable way. It is not intended to show off my design skills. I could make it fancy, with scroll effects and hover animations and hero images. I could make it a Single Page App, with dynamic content and spinners and gadgets. But the medium is the message, and I want my messages to be plain and clear.
This website probably loaded for you in less than a second. There was no initial blank body, no pre-load skeletons, no pop-ins or banners. That's how I want it to stay.
There was a time when you could learn how to build a website by viewing the source of any page. Try viewing the source of a popular website today, and you'll be lost in the div soup. It doesn't have to be this way! An aspiring or newbie software developer should be able to look at my code, and learn how to make their own version of it. That's important to me for this site's code, and for all code I write. Maybe no one ever will, but the artifacts of my work should welcome them if they ever do.
If you were just here for the "why", that's all I can give you. If you are an aspiring or newbie software developer, welcome! Let me walk you through some of the choices I made in my stylesheet. Open it up and follow along!
html
) has a font-family
,
listing a bunch of serif fonts.
These are fonts that are likely to be present on a user's machine,
so that text on this website can look at nice as possible
without requiring the user to download anything.
The fonts are listed in priority order:
if the first isn't available, the second is used instead.
I chose serif fonts because I find them easier to read than sans-serif,
especially on text-heavy websites like this one.
I also specify a monospaced font-family
for preformatted blocks and code samples.
max-width: 40em
.
That means it will refuse to grow any larger than forty times the length of an em dash,
even if your screen is much bigger.
That works out to about 15 words per line, which I think is about ideal for readability.
However, since this is only the max width, the text can wrap as much as necessary to fit on a smaller screen.
I chose em
as my unit of measurement instead of pixels,
because screen resolutions vary so widely these days that the word "pixel" has lost almost all its meaning.
margin: auto
, which centers the content horizontally;
padding: 0.5em
, which keeps the text from butting up against the edge of smaller screens;
and tab-size: 4
, which keeps indentation inside of code blocks reasonable (the default is eight!)
margin-left: 2em
.
This sets them a bit left from the edge of the body, so that it's much easier to scroll or scan between headers.
That's pretty easy anyway since headers are so big and bold, so this is purely a matter of taste.
pre
) also have line-height: 1.5
.
This gives them a little more room to breathe vertically.
<strong>
text is also underlined.
This also applies to any text I'm specifically calling out as my <span class="opinion">opinion</span>
.
@media
query.
These styles only apply if the user has enabled Dark Mode on their device.
If so, this block applies a bunch of alternative colors that will hopefully be easier on the eyes at night.
I didn't pull these colors out of my head; I'm using the open-source Dracula theme.