Impülement intro questions

This commit is contained in:
Dennis Schoepf 2021-08-02 17:01:27 +02:00
parent 1e5b627e26
commit 47a7ec98ea
5 changed files with 266 additions and 10 deletions

View file

@ -39,6 +39,34 @@ button {
}
}
label {
font-weight: bold;
margin-top: 15px;
}
input[type='text'],
input[type='number'] {
display: block;
width: 100%;
margin-top: 10px;
font-size: 18px;
padding: 8px 12px;
outline: 0;
border: 2px solid black;
border-radius: 5px;
}
select {
display: block;
width: 100%;
margin-top: 10px;
font-size: 18px;
padding: 8px 12px;
outline: 0;
border: 2px solid black;
border-radius: 5px;
}
.ui {
position: absolute;
bottom: 40px;
@ -268,20 +296,34 @@ button {
#intro-step2 {
display: none;
flex-direction: column;
}
#intro-step3 {
display: none;
flex-direction: column;
}
#intro-step4 {
display: none;
flex-direction: column;
}
#intro-button {
float: right;
margin-top: 25px;
}
#intro-error {
display: none;
margin-top: 25px;
background-color: #fecaca;
color: #7f1d1d;
padding: 8px 20px;
border-radius: 5px;
border-left: 7px solid #7f1d1d;
margin-top: 15px;
}
}
}