2021-04-20 18:49:42 +02:00
< style >
#loginScene {
background: #eceeee;
border: 1px solid #42464b;
border-radius: 6px;
margin: 20px auto 0;
2021-04-20 18:58:19 +02:00
width: 90%;
max-width: 200px;
2021-04-20 18:49:42 +02:00
height: 200px;
}
#loginScene 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;
}
#loginScene input {
font-size: 70%;
background: linear-gradient(top, #d6d7d7, #dee0e0);
border: 1px solid #a1a3a3;
border-radius: 4px;
box-shadow: 0 1px #fff;
box-sizing: border-box;
color: #696969;
height: 30px;
transition: box-shadow 0.3s;
width: 100%;
text-align: center;
}
#loginScene section {
margin: 10px;
}
#loginScene section.action{
text-align: center;
margin: 0;
}
#loginScene button {
margin-top: 10px;
background-color: black;
color: white;
border-radius: 7px;
padding-bottom: 4px;
width: 100px;
}
#loginScene button#loginSceneFormCancel {
background-color: #c7c7c700;
color: #292929;
}
#loginScene section h6,
#loginScene section h5{
margin: 1px;
}
#loginScene section.text-center{
text-align: center;
}
#loginScene section a{
font-size: 8px;
text-decoration: underline;
color: black;
}
#loginScene section a:hover{
font-weight: 700;
}
#loginScene section p{
text-align: left;
font-size: 8px;
margin: 10px 10px;
}
#loginScene section p.err{
color: red;
text-align: center;
}
#loginScene section p.info{
display: none;
text-align: center;
}
#loginScene section input#loginSceneLink{
background-color: #a1a3a3;
}
< / style >
< form id = "loginScene" hidden >
< section class = "text-center" >
< h5 > Enter your name< / h5 >
< p class = "info" > 9 chars maximum< / p >
< p class = "err" id = "errorLoginScene" > < / p >
< / section >
< section >
< input type = "text" name = "email" id = "loginSceneName" >
< p > By continuing, you are agreeing our < a href = "https://workadventu.re/terms-of-use" target = "_blank" > terms of use< / a > , < a href = "https://workadventu.re/privacy-policy" target = "_blank" > privacy policy< / a > and < a href = "https://workadventu.re/cookie-policy" target = "_blank" > cookie policy< / a > .< / p >
< / section >
< section class = "action" >
< button type = "submit" id = "loginSceneFormSubmit" > Continue< / button >
< / section >
< / form >