FEAT: prototype game menu using html elements, better icon for text chat

This commit is contained in:
kharhamel 2020-12-04 11:30:35 +01:00
parent 855b55903b
commit 069f2f1cec
23 changed files with 520 additions and 226 deletions

34
front/dist/resources/html/gameMenu.html vendored Normal file
View file

@ -0,0 +1,34 @@
<style>
#gameMenu button {
background-color: black;
color: white;
border-radius: 7px;
}
#gameMenu section {
margin: 10px;
}
</style>
<div id="gameMenu">
<main>
<section>
<button id="shareButton">Share url</button>
</section>
<section>
<button id="sparkButton">Create map</button>
</section>
<section>
<button id="changeNameButton">Edit name</button>
</section>
<section>
<button id="changeSkinButton">Edit skin</button>
</section>
<section>
<button id="editGameSettingsButton">Settings</button>
</section>
<section id="adminConsoleSection" hidden>
<button id="adminConsoleButton">Admin console</button>
</section>
</main>
</div>