add games

This commit is contained in:
zoe 2022-04-16 13:18:22 +02:00
parent 137f5a2b05
commit cb4c119646
2 changed files with 10 additions and 2 deletions

View File

@ -137,11 +137,19 @@ header{
#hamburger-bg{
position: fixed;
background-color: red;
opacity: 40%;
width: 100%;
height: calc(100% - 42pt);
left: 0pt;
top: 0pt;
right: 0;
transition: 0s;
display: grid;
align-items: center;
justify-content: center;
& * {
display: grid;
margin-top: 14pt;
margin-bottom: 14pt;
text-align: center;
}
}

View File

@ -16,7 +16,7 @@
<nav id="footer-nav" aria-label="navigation">
{{ $currentPage := . }}
{{ range .Site.Menus.nav }}
<a class="footer-nav-item{{if or ($currentPage.IsMenuCurrent "nav" .) ($currentPage.HasMenuCurrent "nav" .) }} active{{end}} colorswitch" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a>
<a class="hamburger-nav-item{{if or ($currentPage.IsMenuCurrent "nav" .) ($currentPage.HasMenuCurrent "nav" .) }} active{{end}} colorswitch" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }} {{ .Title }}</a><br>
{{ end }}
</nav>