mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
add games
This commit is contained in:
parent
137f5a2b05
commit
cb4c119646
2 changed files with 10 additions and 2 deletions
|
@ -137,11 +137,19 @@ header{
|
||||||
#hamburger-bg{
|
#hamburger-bg{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
background-color: red;
|
background-color: red;
|
||||||
opacity: 40%;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 42pt);
|
height: calc(100% - 42pt);
|
||||||
left: 0pt;
|
left: 0pt;
|
||||||
top: 0pt;
|
top: 0pt;
|
||||||
right: 0;
|
right: 0;
|
||||||
transition: 0s;
|
transition: 0s;
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
& * {
|
||||||
|
display: grid;
|
||||||
|
margin-top: 14pt;
|
||||||
|
margin-bottom: 14pt;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<nav id="footer-nav" aria-label="navigation">
|
<nav id="footer-nav" aria-label="navigation">
|
||||||
{{ $currentPage := . }}
|
{{ $currentPage := . }}
|
||||||
{{ range .Site.Menus.nav }}
|
{{ 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 }}
|
{{ end }}
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue