128 lines
2.4 KiB
HTML
128 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<title>{% block title %}Zeus WPI Kelderregistratiesysteem™{% endblock %}</title>
|
|
{% block styles %}{% endblock %}
|
|
<style>
|
|
nav {
|
|
width: 100vw;
|
|
background-color: #ff8000;
|
|
margin-bottom: 1em;
|
|
padding-top: 1rem;
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
nav ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
/*this option by default dispose the elements in a row (flex-direction: row)*/
|
|
display: flex;
|
|
}
|
|
|
|
|
|
nav li {
|
|
list-style-type: none;
|
|
margin: 0 2vw;
|
|
/* our font-size will be 3% of the height of the viewport */
|
|
font-size: 3vh;
|
|
}
|
|
|
|
nav a {
|
|
text-decoration: none;
|
|
|
|
/*below I changed the color*/
|
|
color: black;
|
|
/*I added some padding*/
|
|
padding: 2vw;
|
|
/*also changed the font family but that's totally irrelevant*/
|
|
font-family: monospace;
|
|
}
|
|
|
|
nav a:hover {
|
|
background-color: rgba(255, 128, 0, 0.53);
|
|
}
|
|
|
|
/*change the layout of the navigation bar for all the screens
|
|
that have a width less or equal than 500px*/
|
|
|
|
@media only screen and (max-width: 750px) {
|
|
/*shows elements in a column*/
|
|
ul {
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* deletes margin on top or bottom of the a tag*/
|
|
li {
|
|
margin: 0;
|
|
}
|
|
|
|
/* makes sure that the a tag will take the entire screen*/
|
|
a {
|
|
display: block;
|
|
}
|
|
|
|
button {
|
|
/*makes the button visible*/
|
|
display: block;
|
|
|
|
/*since we are here, we can style it a little bit!*/
|
|
padding: 2vw;
|
|
font-size: 3vh;
|
|
background-color: #AFE0FF;
|
|
border: none;
|
|
|
|
/*outline none removes the default blue border that appears anytime you click on the button*/
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
|
|
|
/*this put the button on the left*/
|
|
align-self: flex-start;
|
|
}
|
|
}
|
|
|
|
button {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<ul>
|
|
<button id="nav-button">🞬</button>
|
|
<li>
|
|
<a href="{% url 'events:index' %}">
|
|
Home</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'users:profile' %}">
|
|
Profile
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<h1>Zeus WPI Kelderregistratiesysteem™</h1>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
let button = document.getElementById('nav-button')
|
|
button.addEventListener('click', () => {
|
|
if (button.innerText === "☰") {
|
|
button.innerText = "✖";
|
|
} else {
|
|
button.innerText = "☰";
|
|
}
|
|
})
|
|
});
|
|
</script>
|
|
</html>
|