partey_workadventure/front/dist/resources/html/gameMenuIcon.html

22 lines
523 B
HTML
Raw Normal View History

<style>
2020-12-16 17:17:31 +01:00
#menuIcon button img{
2021-04-28 07:07:51 +02:00
width: 8px;
2021-04-12 18:17:04 +02:00
padding-top: 0;
2021-01-04 17:13:41 +01:00
cursor: url('/resources/logos/cursor_pointer.png'), pointer;
}
#menuIcon section {
margin: 10px;
}
@media only screen and (max-height: 700px) {
#menuIcon section {
margin: 2px;
}
}
</style>
<main id="menuIcon" hidden>
<section>
2021-04-28 07:07:51 +02:00
<button id="openMenuButton" class="nes-btn is-dark">
2020-12-16 17:17:31 +01:00
<img src="/static/images/menu.svg">
</button>
</section>
</main>