forked from planex/defiance
Add hamburger menu for smaller screens and mobile
This commit is contained in:
parent
3a68004925
commit
5b0616cec4
21 changed files with 93 additions and 17 deletions
|
@ -1,11 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
{{- partial "header.html" . -}} <br>
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
<script src="/js/nav-toggle-mobile.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,10 +1,24 @@
|
|||
<div>
|
||||
<nav id="nav">
|
||||
<div id="nav-toggle-mobile">
|
||||
<i>
|
||||
<svg style="fill: #FAFAFA; margin-left: 10px;" viewBox="0 0 100 80" width="40" height="40">
|
||||
<title>Hamburger menu button</title>
|
||||
<rect width="100" height="20"></rect>
|
||||
<rect y="30" width="100" height="20"></rect>
|
||||
<rect y="60" width="100" height="20"></rect>
|
||||
</svg>
|
||||
</i>
|
||||
</div>
|
||||
<ul id="nav-list">
|
||||
{{ range .Site.Menus.main }}
|
||||
<a id="nav-button" href="{{ .URL }}">
|
||||
{{ $text := print .Name | safeHTML }}
|
||||
{{ $text }}
|
||||
</a>
|
||||
<li class="nav-li">
|
||||
<a class="nav-button" href="{{ .URL }}">
|
||||
{{ $text := print .Name | safeHTML }}
|
||||
{{ $text }}
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -93,23 +93,79 @@ footer {
|
|||
}
|
||||
|
||||
#content {
|
||||
margin-left: 15%;
|
||||
margin-right: 15%;
|
||||
margin-left: 30%;
|
||||
margin-right: 10%;
|
||||
}
|
||||
|
||||
/* For header.html */
|
||||
#nav {
|
||||
background-color: #F14B25;
|
||||
background-color: #A51D2D;
|
||||
}
|
||||
|
||||
#nav-button {
|
||||
color: #E7DBDA;
|
||||
padding: 0px 25px;
|
||||
#nav-list {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: fixed;
|
||||
overflow: auto;
|
||||
width: 25%;
|
||||
list-style-type: none;
|
||||
background-color: #A51D2D;
|
||||
}
|
||||
|
||||
.nav-button {
|
||||
color: #FAFAFA;
|
||||
padding: 0px 40px;
|
||||
text-decoration: none;
|
||||
}
|
||||
li:first-child {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#nav-button:hover {
|
||||
transform: translateY(-2px);
|
||||
@media screen and (min-width: 769px) {
|
||||
#nav-toggle-mobile {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1700px) {
|
||||
#nav-list {
|
||||
width: 17%;
|
||||
}
|
||||
#content {
|
||||
margin-left: 20%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
#content {
|
||||
margin: 10%;
|
||||
}
|
||||
#nav-list {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.nav-li {
|
||||
padding-right: 8px;
|
||||
float: left;
|
||||
display: none;
|
||||
}
|
||||
.nav-li-show-mobile {
|
||||
display: flex;
|
||||
}
|
||||
.nav-button {
|
||||
display: block;
|
||||
padding: 8px;
|
||||
}
|
||||
#nav-toggle-mobile {
|
||||
align-self: flex-end;
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
/* For author.html */
|
||||
|
@ -118,9 +174,6 @@ footer {
|
|||
max-width: 200px;
|
||||
height: auto;
|
||||
}
|
||||
#pronouns {
|
||||
color: #FF535D;
|
||||
}
|
||||
|
||||
/* For meta.html */
|
||||
.meta {
|
||||
|
|
8
static/js/nav-toggle-mobile.js
Normal file
8
static/js/nav-toggle-mobile.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
function classToggle() {
|
||||
const navs = document.querySelectorAll('.nav-li')
|
||||
|
||||
navs.forEach(nav => nav.classList.toggle('nav-li-show-mobile'));
|
||||
}
|
||||
|
||||
document.querySelector('#nav-toggle-mobile')
|
||||
.addEventListener('click', classToggle);
|
Loading…
Add table
Reference in a new issue