The Beloved Refactor

This article, part of the writing collection, was published on .

Following the incredible high from a great conference, I just finished an extremely refreshing refactor of the CSS on my site. Here’s what I did.

Last week, I was lucky enough to attend All Day Hey and have been buzzing with ideas and inspiration. Since then, I’ve made some fun and powerful changes to the architecture and philosophy towards writing CSS, so here are a few of the highlights!

Let’s get logical Permalink

Logical Properties and Values throughout, which didn’t take much time to acclimatise to, and even comes with syntax benefits for applying values in the block/inline directions. In addition to better supporting different browsing contexts (mainly to do with languages), I think this will also nurture a better understanding of CSS through its explicit use of the block and inline vocabulary.

.box {
	border-block-start-size: 2px;
	margin-inline: 1em;
}

If you reuse it, give it a name Permalink

Robust system for design tokens, defined with JSON, converted to CSS Custom Properties for CSS and usable as-is for JavaScript, which Eleventy can consume with ease.

For example, I have defined a palette of colours I’d like to reuse:

{
  "raven": "#5f8aa6",
  "maple": "#eb2d36"
}
:root {
	--hsl-raven: 203deg 28% 51%;
	--hsl-maple: 357deg 82% 54%;
}

.box {
	background-color: hsla(var(--hsl-raven) / 0.5);
	color: hsl(var(--hsl-maple));
}

High Fluking Dive Permalink

Sunsetted my personal use of Bowhead in favour of simpler and more reusable code. I might still explore how to make it useful; its type-setting for CSS definitely has some value. At the very least, I might explore using it for generating the CSS variables it uses as part of its powerful v() mixin.

.box {
	@include v(padding, gutter);
}

So I no longer have any enforced notion of types in my CSS; although, I still do use a naming convention for my CSS variables that makes it easy for me to use and read.

Further on CSS Custom Properties, I never made full use of the ability to supply them a fallback:

.box {
	padding: var(--gutter, 1em);
}

However, following an incredible talk by Andy Bell, I have seen the light! I seriously cannot give the talk and its counterpart website, Build Excellent Websites, enough praise! It was nearly a spirital moment for me!

The idea that I can create a component with default values and override them, like I’m used to doing in a BEM context, as a variation was the moment that clicked for me. Naturally, this concept of defaults/fallbacks is now sprinkled throughout my CSS, and has come with the satisfying knock-on effect of realising how similar a lot of my components were, and are now based on a more generic and flexible foundation.

Fresh eyes Permalink

I’m looking forward to jumping back in in a week’s time to see what else I can simplify with fresh eyes. I’m sure things will change as I develop and work with the new code some more.

If you’ve done any satisfying refactors or have any further ideas about building excellent websites like Andy, I’d love to hear about them!

You can also send an anonymous reply (using Quill and Comment Parade).