2017-12-05 12:58:24 +01:00
|
|
|
#resultsZone {
|
2017-12-20 16:36:57 +01:00
|
|
|
min-height: 49%;
|
2017-12-05 11:52:59 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
2017-12-20 16:36:57 +01:00
|
|
|
transition: 1s min-height;
|
2017-12-20 16:33:55 +01:00
|
|
|
}
|
|
|
|
#sim.noQuestionsLeft #resultsZone {
|
2017-12-20 16:36:57 +01:00
|
|
|
min-height: 0;
|
2017-12-05 11:52:59 +01:00
|
|
|
}
|
2017-12-05 18:16:50 +01:00
|
|
|
|
|
|
|
@media (max-height: 350px) {
|
2017-12-18 17:19:20 +01:00
|
|
|
/* Hack : at 350px of height, it's a mobile device and the keyboard is active */
|
2017-12-05 18:16:50 +01:00
|
|
|
#resultsZone {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-18 19:37:38 +02:00
|
|
|
#results {
|
2017-12-05 12:58:24 +01:00
|
|
|
width: 100%;
|
2018-01-10 17:51:35 +01:00
|
|
|
padding: 0.4em 1.4em;
|
2017-12-05 12:58:24 +01:00
|
|
|
}
|
|
|
|
#resultsContent {
|
2017-12-05 11:52:59 +01:00
|
|
|
position: relative;
|
2017-10-19 15:11:23 +02:00
|
|
|
margin: 0 auto;
|
2018-01-10 17:51:35 +01:00
|
|
|
padding: 0.3em 0 1em;
|
2017-12-06 17:34:49 +01:00
|
|
|
min-height: 4em;
|
2017-12-05 12:58:24 +01:00
|
|
|
width: 100%;
|
2017-12-04 19:01:28 +01:00
|
|
|
max-width: 45em;
|
2017-04-18 19:37:38 +02:00
|
|
|
color: white;
|
2017-10-19 15:11:23 +02:00
|
|
|
box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
|
2017-12-06 17:34:49 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
2017-10-19 17:14:13 +02:00
|
|
|
}
|
2017-11-20 11:15:04 +01:00
|
|
|
|
|
|
|
#results .edit {
|
|
|
|
vertical-align: middle;
|
|
|
|
border: none;
|
2017-12-06 17:34:49 +01:00
|
|
|
font-size: 85%;
|
2017-11-20 11:15:04 +01:00
|
|
|
color: white;
|
2017-12-06 17:34:49 +01:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2017-11-20 11:15:04 +01:00
|
|
|
}
|
|
|
|
|
2017-03-27 15:32:03 +02:00
|
|
|
#results ul {
|
2017-12-06 17:34:49 +01:00
|
|
|
font-size: 125%;
|
|
|
|
width: 100%;
|
2017-03-27 15:32:03 +02:00
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
2017-10-18 18:32:13 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
2017-12-06 17:34:49 +01:00
|
|
|
margin: 0 auto;
|
2017-10-19 16:02:37 +02:00
|
|
|
}
|
2017-10-18 18:32:13 +02:00
|
|
|
|
2017-10-19 16:02:37 +02:00
|
|
|
#results li {
|
2017-11-20 10:47:10 +01:00
|
|
|
margin: 0 1.2em;
|
2017-10-19 16:02:37 +02:00
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2017-03-27 15:32:03 +02:00
|
|
|
}
|