43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<style>
|
|
*{
|
|
font-family: 'Open Sans', sans-serif;
|
|
cursor: auto;
|
|
}
|
|
* a, button, select{
|
|
cursor: pointer;
|
|
}
|
|
#gameMenu button {
|
|
background-color: black;
|
|
color: white;
|
|
border-radius: 7px;
|
|
padding-bottom: 2px;
|
|
}
|
|
#gameMenu section {
|
|
margin: 10px;
|
|
}
|
|
</style>
|
|
|
|
<div id="gameMenu" hidden>
|
|
|
|
<main>
|
|
<section>
|
|
<button id="shareButton">Share url</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 hidden>
|
|
<button id="sparkButton">Create map</button>
|
|
</section>
|
|
<section id="adminConsoleSection" hidden>
|
|
<button id="adminConsoleButton">Admin console</button>
|
|
</section>
|
|
</main>
|
|
</div>
|