2020-12-16 16:32:28 +01:00
|
|
|
<style>
|
2020-12-04 11:30:35 +01:00
|
|
|
#gameMenu button {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border-radius: 7px;
|
2020-12-17 22:10:36 +01:00
|
|
|
padding-bottom: 2px;
|
2020-12-04 11:30:35 +01:00
|
|
|
}
|
|
|
|
#gameMenu section {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
2021-02-03 23:14:31 +01:00
|
|
|
section#socialLinks{
|
|
|
|
position: absolute;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
section#socialLinks img{
|
|
|
|
width: 32px;
|
|
|
|
cursor: url('/resources/logos/cursor_pointer.png'), pointer;
|
|
|
|
}
|
2020-12-04 11:30:35 +01:00
|
|
|
</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="changeSkinButton">Edit skin</button>
|
|
|
|
</section>
|
2021-04-02 23:13:03 +02:00
|
|
|
<section>
|
|
|
|
<button id="changeCompanionButton">Edit companion</button>
|
|
|
|
</section>
|
2020-12-04 11:30:35 +01:00
|
|
|
<section>
|
|
|
|
<button id="editGameSettingsButton">Settings</button>
|
|
|
|
</section>
|
2021-02-03 23:28:46 +01:00
|
|
|
<section>
|
2021-04-07 12:42:56 +02:00
|
|
|
<button id="toggleFullscreen">Toggle fullscreen</button>
|
2021-02-03 23:28:46 +01:00
|
|
|
</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>
|
2021-02-03 23:14:31 +01:00
|
|
|
<section id="socialLinks" hidden>
|
|
|
|
</section>
|
2020-12-04 11:30:35 +01:00
|
|
|
</main>
|
|
|
|
</div>
|