2020-12-16 16:32:28 +01:00
|
|
|
<style>
|
|
|
|
*{
|
|
|
|
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
|
|
|
}
|
2020-12-04 11:30:35 +01:00
|
|
|
#gameMenu button {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border-radius: 7px;
|
2020-12-16 16:32:28 +01:00
|
|
|
padding-bottom: 4px;
|
2020-12-04 11:30:35 +01:00
|
|
|
}
|
|
|
|
#gameMenu section {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-12-16 12:23:34 +01:00
|
|
|
<div id="gameMenu" hidden>
|
2020-12-04 11:30:35 +01:00
|
|
|
|
|
|
|
<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>
|
2020-12-16 16:32:28 +01:00
|
|
|
<section>
|
|
|
|
<button id="sparkButton">Create map</button>
|
|
|
|
</section>
|
2020-12-04 11:30:35 +01:00
|
|
|
<section id="adminConsoleSection" hidden>
|
2020-12-16 18:52:11 +01:00
|
|
|
<button id="adminConsoleButton">Admin console</button>
|
2020-12-04 11:30:35 +01:00
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
</div>
|