2020-12-16 16:32:28 +01:00
|
|
|
<style>
|
2021-04-21 00:53:45 +02:00
|
|
|
#gameMenu main{
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
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-04-21 00:53:45 +02:00
|
|
|
@media only screen and (max-height: 700px) {
|
|
|
|
#gameMenu main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: flex-end;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
#gameMenu section{
|
|
|
|
margin: 2px;
|
|
|
|
}
|
|
|
|
}
|
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="changeNameButton">Edit name</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>
|
|
|
|
</main>
|
|
|
|
</div>
|