50 lines
702 B
CSS
50 lines
702 B
CSS
|
|
||
|
body {
|
||
|
color: #EFF0F1;
|
||
|
background: #484948;
|
||
|
}
|
||
|
|
||
|
.ffError {
|
||
|
margin: 3em;
|
||
|
border-left: 0.3em solid #B55858;
|
||
|
border-radius: 1em;
|
||
|
padding: 0em 1em 0.3em 1em;
|
||
|
}
|
||
|
|
||
|
.ffQuestion {
|
||
|
margin: 3em;
|
||
|
border-left: 0.3em solid #3F68AD;
|
||
|
border-radius: 1em;
|
||
|
padding: 0em 1em 0.3em 1em;
|
||
|
}
|
||
|
|
||
|
.ffQuestion>div>input {
|
||
|
margin: 0.4em;
|
||
|
padding: 0.4em;
|
||
|
line-height: 2em;
|
||
|
background-color: #454442;
|
||
|
color: #EFF0F1;
|
||
|
border: none;
|
||
|
border-radius: 0.4em;
|
||
|
outline: none;
|
||
|
min-width: 5em;
|
||
|
}
|
||
|
|
||
|
.ffQuestion>div>input:focus {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
.ffQuestionError {
|
||
|
color: #B55858;
|
||
|
}
|
||
|
|
||
|
.ffQuestionLoad {
|
||
|
transition: all 0.5s ease;
|
||
|
color: #484948;
|
||
|
}
|
||
|
|
||
|
.ffQuestionLoad>div>input {
|
||
|
background-color: #484948;
|
||
|
color: #484948;
|
||
|
}
|