Files
Oliver Hamlet c1194ac2ec Migrate from Jekyll to Hugo
Hugo is a lot easier to work with locally (especially on Windows), and
because it's not natively supported by GitHub Pages, it gets deployed
using GitHub Actions, so it's also easier to keep the version of Hugo in
sync between local builds and deployments.

I've compared the generated _site/ and public/ folders and they look
equivalent, except that Hugo also generates a sitemap: that can be
disabled, but it's good to have.
2026-01-11 17:48:57 +00:00

24 lines
509 B
CSS

/* Don't allow navigation text to wrap. */
.mdl-navigation__link {
white-space: nowrap;
}
/* Don't stretch YouTube videos. */
.mdl-layout__content > iframe {
width: 560px;
}
/* Fix search input vertical position. */
.mdl-textfield {
vertical-align: middle;
}
/* Change drawer colour scheme to black-on-white. */
div.mdl-layout__drawer {
background-color: white;
}
.mdl-navigation__link > span {
color: rgba(0, 0, 0, 0.87);
}
/* Override link font weight. */
a {
font-weight: normal;
}