2020-12-04 11:30:35 +01:00
|
|
|
<style>
|
|
|
|
#menuIcon button {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border-radius: 7px;
|
2021-04-21 00:53:45 +02:00
|
|
|
padding: 2px 8px;
|
2020-12-16 17:17:31 +01:00
|
|
|
}
|
|
|
|
#menuIcon button img{
|
|
|
|
width: 14px;
|
2021-04-12 18:17:04 +02:00
|
|
|
padding-top: 0;
|
2021-01-05 21:50:56 +01:00
|
|
|
cursor: pointer;
|
2020-12-04 11:30:35 +01:00
|
|
|
}
|
|
|
|
#menuIcon section {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
2021-04-21 00:53:45 +02:00
|
|
|
@media only screen and (max-height: 700px) {
|
|
|
|
#menuIcon section {
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
}
|
2020-12-04 11:30:35 +01:00
|
|
|
</style>
|
2020-12-16 15:09:58 +01:00
|
|
|
<main id="menuIcon" hidden>
|
2020-12-04 11:30:35 +01:00
|
|
|
<section>
|
2020-12-16 17:17:31 +01:00
|
|
|
<button id="openMenuButton">
|
|
|
|
<img src="/static/images/menu.svg">
|
|
|
|
</button>
|
2020-12-04 11:30:35 +01:00
|
|
|
</section>
|
2021-03-21 18:37:39 +01:00
|
|
|
</main>
|