2020-12-16 16:32:28 +01:00
|
|
|
<style>
|
2021-04-23 03:59:14 +02:00
|
|
|
*{
|
|
|
|
font-family: PixelFont-7,monospace!important;
|
|
|
|
}
|
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-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;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
section#socialLinks{
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
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-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>
|
2021-02-03 23:14:31 +01:00
|
|
|
<section id="socialLinks" hidden>
|
|
|
|
<a class="not-button" href="https://www.facebook.com/workadventurebytcm" target="_blank"><img class="not-button" src="/resources/objects/facebook-icon.png"/></a>
|
|
|
|
<a class="not-button" href="https://twitter.com/Workadventure_" target="_blank"><img class="not-button" src="/resources/objects/twitter-icon.png"/></a>
|
|
|
|
</section>
|
2020-12-04 11:30:35 +01:00
|
|
|
</main>
|
|
|
|
</div>
|