Scripts: setup.sh, build.sh, serve.sh (Docker-based) Content: about, config, software, posts sections Custom: CSS overrides, HTML sitemap layout, extended_head partial Theme: hugo-theme-terminal via Hugo modules (go.mod)
10 lines
305 B
CSS
10 lines
305 B
CSS
/* Highlight the first two menu items (About, Sitemap) */
|
|
.navigation-menu__inner li:nth-child(-n+2) a,
|
|
.menu__dropdown li:nth-child(-n+2) a {
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
border-bottom: 2px solid currentColor;
|
|
padding-bottom: 2px;
|
|
font-weight: bold;
|
|
font-size: 1.1em;
|
|
}
|