2015-10-04 02:41:16 +01:00
|
|
|
.centered {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left:50%;
|
|
|
|
transform: translate(-50%,-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.padded {
|
|
|
|
padding: 5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body{
|
|
|
|
background-color: lightgray;
|
2015-10-04 03:01:40 +01:00
|
|
|
transition: all 0.5s ease 0s;
|
2015-10-04 02:41:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.correct{
|
|
|
|
background-color: greenyellow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrong{
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.question-size{
|
|
|
|
font-size: 1000%;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.answer-size{
|
|
|
|
font-size: 200%;
|
|
|
|
height: auto;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.help-size{
|
|
|
|
font-size: 200%;
|
|
|
|
color: white;
|
2015-10-05 12:25:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden{
|
|
|
|
display: none;
|
2015-10-04 02:41:16 +01:00
|
|
|
}
|