diff --git a/base.twig b/base.twig index 677d33360c5654de5e11df7c7ed1e449f3ad82df..c8d9282b68ef79c26182a62b5a0837c212e1b973 100644 --- a/base.twig +++ b/base.twig @@ -61,7 +61,6 @@ {% for tag in tags|sort %} <li class="nav-link"><a href="{{base_url}}/blog/?tag={{ tag }}">{{ tag }}</a></li> {% endfor %} - </ul> {% endif %} {% elseif (pageDepth == 2) and parentPage %} <li class="nav-link"><a href="{{ page.url }}">{{ page.title }}</a></li> diff --git a/css/style.css b/css/style.css index 0702a5d352e076f49013fd15d1ac4364b21b20fd..e1cfd115d946a97437f7ef058e8eb507f7f58bff 100644 --- a/css/style.css +++ b/css/style.css @@ -81,16 +81,18 @@ body { display: flex; flex-direction: column; } } #top ul { list-style: none; - margin: 0; - padding: 0; } #top ul li { - display: inline-block; + display: block; margin-left: 1em; padding: 0; font-weight: bold; } +#top ul.dropdown-menu { + max-width: 50%; +} + a#logo, #top a, #nav-toggle { color: #556d5f; } a#logo:hover, #top .active a, #top a:hover, #nav-toggle:hover { color: #1e924d; }