2021-04-22 02:29:13 +02:00
|
|
|
<style>
|
|
|
|
#customizeScene {
|
|
|
|
background: #0000;
|
|
|
|
/*border: 1px solid #ebeeee;*/
|
|
|
|
border-radius: 6px;
|
|
|
|
margin: 10px auto 0;
|
|
|
|
color: #ebeeee;
|
2021-04-28 07:07:51 +02:00
|
|
|
overflow: auto;
|
2021-04-22 02:29:13 +02:00
|
|
|
width: 42vw;
|
2021-04-27 23:58:33 +02:00
|
|
|
height: 48vh;
|
|
|
|
/*max-width: 300px;
|
|
|
|
max-height: 48vh;*/
|
2021-04-22 02:29:13 +02:00
|
|
|
}
|
|
|
|
#customizeScene h1 {
|
|
|
|
background-image: linear-gradient(top, #f1f3f3, #d4dae0);
|
|
|
|
border-bottom: 1px solid #a6abaf;
|
|
|
|
border-radius: 6px 6px 0 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #727678;
|
|
|
|
display: block;
|
|
|
|
height: 43px;
|
|
|
|
padding-top: 10px;
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: 0 -1px 0 rgba(0,0,0,0.2), 0 1px 0 #fff;
|
|
|
|
}
|
|
|
|
#customizeScene section {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
#customizeScene section.action {
|
|
|
|
text-align: center;
|
2021-04-23 19:29:43 +02:00
|
|
|
position: sticky;
|
2021-04-22 02:29:13 +02:00
|
|
|
bottom: 0;
|
|
|
|
top: 100%;
|
|
|
|
}
|
|
|
|
#customizeScene section.action.action-move {
|
2021-04-23 03:59:14 +02:00
|
|
|
top: 55%;
|
2021-04-22 02:29:13 +02:00
|
|
|
}
|
|
|
|
#customizeScene button#customizeSceneFormCancel {
|
|
|
|
background-color: #aca6a600;
|
|
|
|
color: #292929;
|
|
|
|
}
|
|
|
|
#customizeScene section h6,
|
|
|
|
#customizeScene section h5{
|
|
|
|
margin: 1px;
|
|
|
|
}
|
|
|
|
#customizeScene section.text-center{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#customizeScene section p{
|
|
|
|
text-align: left;
|
|
|
|
font-size: 8px;
|
|
|
|
margin: 10px 10px;
|
|
|
|
}
|
|
|
|
#customizeScene section p.err{
|
|
|
|
color: red;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#customizeScene section p.info{
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#customizeScene section input#customizeSceneLink{
|
|
|
|
background-color: #a1a3a3;
|
|
|
|
}
|
|
|
|
#customizeScene section button.customizeSceneButton{
|
|
|
|
position: absolute;
|
|
|
|
margin: 0;
|
|
|
|
top: -8vh;
|
2021-04-23 19:29:43 +02:00
|
|
|
font-size: 10px;
|
|
|
|
padding: 2px 4px;
|
2021-04-22 02:29:13 +02:00
|
|
|
}
|
|
|
|
#customizeScene section button.customizeSceneButton#customizeSceneButtonLeft{
|
2021-04-23 19:29:43 +02:00
|
|
|
left: 0vw;
|
2021-04-22 02:29:13 +02:00
|
|
|
}
|
|
|
|
#customizeScene section button.customizeSceneButton#customizeSceneButtonRight{
|
2021-04-23 19:29:43 +02:00
|
|
|
right: 0vw;
|
2021-04-22 02:29:13 +02:00
|
|
|
}
|
|
|
|
#customizeScene section button.customizeSceneButton#customizeSceneButtonUp{
|
|
|
|
left: calc(2vw + 40px);
|
|
|
|
transform: rotate(90deg);
|
|
|
|
margin-top: -20px;
|
|
|
|
}
|
|
|
|
#customizeScene section button.customizeSceneButton#customizeSceneButtonDown{
|
|
|
|
right: calc(2vw + 40px);
|
|
|
|
transform: rotate(90deg);
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
2021-04-23 19:29:43 +02:00
|
|
|
#customizeScene section.action img{
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
}
|
|
|
|
#customizeScene section.action a#customizeSceneFormBack img{
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
|
|
|
#customizeScene section.action button#customizeSceneFormSubmit img{
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
2021-04-22 02:29:13 +02:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
#customizeScene {
|
|
|
|
max-width: 160px;
|
2021-04-27 23:58:33 +02:00
|
|
|
overflow-y: scroll;
|
2021-04-22 02:29:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@media only screen and (max-height: 400px) {
|
|
|
|
#customizeScene section.action {
|
|
|
|
top: 92%;
|
|
|
|
}
|
|
|
|
#customizeScene section.action.action-move {
|
|
|
|
top: 80%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<form id="customizeScene" hidden>
|
|
|
|
<section class="text-center">
|
2021-04-28 07:07:51 +02:00
|
|
|
<h5>Custom your Avatar</h3>
|
2021-04-22 02:29:13 +02:00
|
|
|
</section>
|
|
|
|
<section class="action action-move">
|
2021-04-28 07:07:51 +02:00
|
|
|
<button class="customizeSceneButton nes-btn" id="customizeSceneButtonLeft"> < </button>
|
|
|
|
<button class="customizeSceneButton nes-btn" id="customizeSceneButtonRight"> > </button>
|
2021-04-23 03:59:14 +02:00
|
|
|
<!--<button class="customizeSceneButton" id="customizeSceneButtonUp"> < </button>
|
|
|
|
<button class="customizeSceneButton" id="customizeSceneButtonDown"> > </button>-->
|
2021-04-22 02:29:13 +02:00
|
|
|
</section>
|
|
|
|
<section class="action">
|
2021-04-28 13:10:50 +02:00
|
|
|
<a type="submit" class="nes-btn is-dark" id="customizeSceneFormBack">Back <img src="resources/objects/arrow_up.png"/></a>
|
2021-04-28 07:07:51 +02:00
|
|
|
<button type="submit" class="nes-btn" id="customizeSceneFormSubmit">Next <img src="resources/objects/arrow_up.png"/></button>
|
2021-04-22 02:29:13 +02:00
|
|
|
</section>
|
|
|
|
</form>
|