2021-04-22 13:10:23 +02:00
|
|
|
<style>
|
|
|
|
#selectCompanionScene {
|
|
|
|
background: #0000;
|
|
|
|
/*border: 1px solid #ebeeee;*/
|
|
|
|
border-radius: 6px;
|
|
|
|
margin: 10px auto 0;
|
|
|
|
color: #ebeeee;
|
|
|
|
max-height: 40vh;
|
2021-04-28 07:07:51 +02:00
|
|
|
overflow: auto;
|
2021-04-22 13:10:23 +02:00
|
|
|
max-width: 300px;
|
|
|
|
width: 40vw;
|
|
|
|
}
|
|
|
|
#selectCompanionScene 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;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section {
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section.action {
|
|
|
|
text-align: center;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: 20vh;
|
|
|
|
}
|
|
|
|
#selectCompanionScene button#selectCompanionSceneFormCancel {
|
|
|
|
background-color: #aca6a600;
|
|
|
|
color: #292929;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section h6,
|
|
|
|
#selectCompanionScene section h5{
|
|
|
|
margin: 1px;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section.text-center{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section a:hover{
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section p{
|
|
|
|
text-align: left;
|
|
|
|
font-size: 8px;
|
|
|
|
margin: 10px 10px;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section p.err{
|
|
|
|
color: red;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section p.info{
|
|
|
|
display: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section input#selectCompanionSceneLink{
|
|
|
|
background-color: #a1a3a3;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section img{
|
|
|
|
width: 160px;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section button.selectCharacterButton{
|
|
|
|
position: absolute;
|
|
|
|
top: 20vh;
|
|
|
|
margin: 0;
|
|
|
|
width: 25px;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section button.selectCharacterButton#selectCharacterButtonLeft{
|
|
|
|
left: 1vw;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section button.selectCharacterButton#selectCharacterButtonRight{
|
|
|
|
right: 1vw;
|
|
|
|
}
|
|
|
|
#selectCompanionScene section button#selectCompanionSceneFormCustomYourOwnSubmit{
|
|
|
|
font-size: 14px;
|
|
|
|
width: auto;
|
|
|
|
margin-top: -2px;
|
|
|
|
background-color: #ffd700;
|
|
|
|
color: black;
|
|
|
|
}
|
2021-04-27 23:58:33 +02:00
|
|
|
@media only screen and (max-width: 800px),
|
|
|
|
only screen and (max-height: 600px) {
|
|
|
|
#selectCompanionScene{
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
}
|
2021-04-22 13:10:23 +02:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<form id="selectCompanionScene" hidden>
|
|
|
|
<section class="text-center">
|
2021-04-28 07:07:51 +02:00
|
|
|
<h5>Select your Companion</h5>
|
|
|
|
<button class="selectCharacterButton nes-btn" id="selectCharacterButtonLeft"> < </button>
|
|
|
|
<button class="selectCharacterButton nes-btn" id="selectCharacterButtonRight"> > </button>
|
2021-04-22 13:10:23 +02:00
|
|
|
</section>
|
|
|
|
<section class="action">
|
2021-04-28 13:10:50 +02:00
|
|
|
<a herf="#" class="nes-btn is-dark" id="selectCompanionSceneFormBack">No companion</a>
|
2021-04-28 07:07:51 +02:00
|
|
|
<button type="submit" class="nes-btn" id="selectCompanionSceneFormSubmit">Continue</button>
|
2021-04-22 13:10:23 +02:00
|
|
|
</section>
|
|
|
|
</form>
|