mirror of
https://github.com/loot/loot.github.io.git
synced 2026-07-27 14:13:30 -07:00
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.
24 lines
509 B
CSS
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;
|
|
}
|