← All posts

Minimalism and Editorial Design

4/28/2026 #Design #Thoughts

The Starting Point

In an age of information overload, quiet is itself a form of expression.

When I started designing this blog, I didn’t want to build yet another “modern” website — gradient backgrounds, animated transitions, card grids. Those are fine, but not what I was after.

The Charm of Editorial Design

Editorial design comes from the age of print. A book’s table-of-contents page, a magazine layout — they rely on:

Carried over to the web, these principles need no JavaScript and no framework — just good typesetting.

The Technical Implementation

This site is built with Astro, which outputs pure HTML/CSS by default. The dotted leader lines are done with CSS flexbox:

.toc-item {
  display: flex;
  align-items: baseline;
}

.toc-dots {
  flex: 1;
  border-bottom: 1px dotted #c4b9a4;
}

Simple, effective, elegant.

The Trade-off

This style doesn’t chase visual stimulation. It’s quiet, restrained, even a little “boring.” But for a personal blog with content at its core, quiet is the best container.