workadventure/front/dist/resources/html/gameMenuIcon.html

28 lines
548 B
HTML
Raw Normal View History

<style>
#menuIcon {
pointer-events: auto;
}
#menuIcon button {
background-color: black;
color: white;
border-radius: 7px;
2020-12-17 21:58:18 +01:00
height: 28px;
2021-01-04 17:13:41 +01:00
width: 34px;
2020-12-16 17:17:31 +01:00
}
#menuIcon button img{
width: 14px;
2021-01-04 17:13:41 +01:00
padding-top: 3px;
2021-01-05 21:50:56 +01:00
cursor: pointer;
}
#menuIcon section {
margin: 10px;
}
</style>
<main id="menuIcon" hidden>
<section>
2020-12-16 17:17:31 +01:00
<button id="openMenuButton">
<img src="/static/images/menu.svg">
</button>
</section>
</main>