35 lines
859 B
HTML
35 lines
859 B
HTML
<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>
|