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-05 13:52:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-text > a > img{
|
|
|
|
max-height: 26px;
|
2015-10-07 18:39:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.glyphicon-spin {
|
|
|
|
-webkit-animation: spin 1000ms infinite linear;
|
|
|
|
animation: spin 1000ms infinite linear;
|
|
|
|
}
|
|
|
|
@-webkit-keyframes spin {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(359deg);
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(359deg);
|
|
|
|
transform: rotate(359deg);
|
|
|
|
}
|
2015-10-04 02:41:16 +01:00
|
|
|
}
|