48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<style>
|
|
#gameMenu button {
|
|
background-color: black;
|
|
color: white;
|
|
border-radius: 7px;
|
|
padding-bottom: 2px;
|
|
}
|
|
#gameMenu section {
|
|
margin: 10px;
|
|
}
|
|
section#socialLinks{
|
|
position: absolute;
|
|
margin-bottom: 0;
|
|
}
|
|
section#socialLinks img{
|
|
width: 32px;
|
|
cursor: url('/resources/logos/cursor_pointer.png'), pointer;
|
|
}
|
|
</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>
|
|
<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>
|
|
</main>
|
|
</div>
|