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

30 lines
694 B
HTML
Raw Normal View History

<style>
2020-12-16 16:32:28 +01:00
*{
font-family: 'Open Sans', sans-serif;
2020-12-16 18:52:11 +01:00
cursor: url('/resources/logos/cursor_normal.png'), auto;
2020-12-16 16:32:28 +01:00
}
* a, button, select{
2020-12-16 18:52:11 +01:00
cursor: url('/resources/logos/cursor_pointer.png'), pointer;
2020-12-16 16:32:28 +01:00
}
#menuIcon button {
background-color: black;
color: white;
border-radius: 7px;
2020-12-17 21:58:18 +01:00
height: 28px;
width: 28px;
2020-12-16 17:17:31 +01:00
}
#menuIcon button img{
width: 14px;
2020-12-17 21:58:18 +01:00
padding-top: 4px;
}
#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>