My learning diary

Style Fixes 1

I discovered there were some unexpected styles for <code> and <pre> in this site. This is due to Foundation’s default styles. The inline code style was fine, but the same style applied to code blocks (i.e. <pre><code>...</code></pre>), and that was not fine. There was also insufficient margin and padding for the code blocks. I inspected the <code> elements. I found out that Foundation was the culprit. It has been styling the <code> elements on top of what Hugo has in store. Refer to official docs for Syntax Highlighting for more information.

Doing a code { all: unset; } was not the way because that would unset stuff that I need, such as font-family. I observed the code blocks in my blog posts and implemented the following styles:

$code-font-color: $background-color;

pre {
 margin-bottom: 1em; // Follow Foundation's margin for p
 padding: 1em;
 // Use the following paddings if lineNos = true for [markup][markup.highlight]
 // padding: 1em 0;
 // padding-right: 1em;
}

pre > code {
 background-color: transparent;
 color: $code-font-color;
 border: 0;
 padding: 0;
}

I chose solarized-dark as the theme for my code blocks (configured in the client’s config.toml). The list of themes is in the Chroma Style Gallery.

Apart from code blocks, I also fixed the background colour for the tables. They were set to be white by Foundation. That’s too painful for my eyes.

Last but not least, I added the “Relevant posts” list below each post in single post view. I’m making progress!

Relevant posts