2017-03-27 13:32:03 +00:00
|
|
|
|
2017-04-18 17:37:38 +00:00
|
|
|
#results {
|
2017-10-18 08:55:46 +00:00
|
|
|
position: fixed;
|
2017-10-18 13:14:10 +00:00
|
|
|
bottom: 3%;
|
2017-10-18 08:55:46 +00:00
|
|
|
left: 0;
|
2017-10-18 13:14:10 +00:00
|
|
|
width: 90%;
|
|
|
|
margin: 0 5%;
|
2017-10-18 08:55:46 +00:00
|
|
|
|
2017-04-18 17:37:38 +00:00
|
|
|
padding: .1em;
|
2017-10-18 08:55:46 +00:00
|
|
|
background: #4A89DC;
|
2017-04-18 17:37:38 +00:00
|
|
|
font-size: 80%;
|
|
|
|
color: white;
|
2017-05-17 16:00:57 +00:00
|
|
|
padding: .6em 0;
|
2017-04-18 17:37:38 +00:00
|
|
|
text-align: center;
|
2017-10-08 14:07:13 +00:00
|
|
|
height: 12em;
|
2017-10-18 08:55:46 +00:00
|
|
|
|
2017-04-18 17:37:38 +00:00
|
|
|
box-shadow: 1px -7px 20px 2px #ccc;
|
2017-05-18 13:01:34 +00:00
|
|
|
|
2017-05-18 14:04:23 +00:00
|
|
|
opacity: 0;
|
2017-05-18 13:01:34 +00:00
|
|
|
transform: translateY(12em);
|
|
|
|
transition: transform .5s;
|
|
|
|
transition-delay: .3s;
|
|
|
|
transition-timing-function: cubic-bezier(0, 1.01, 0.24, 1)
|
|
|
|
}
|
|
|
|
#results.show {
|
|
|
|
transform: translateY(0);
|
2017-05-18 14:04:23 +00:00
|
|
|
opacity: 1;
|
2017-04-18 17:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-18 10:07:17 +00:00
|
|
|
#results-actions,
|
|
|
|
#results-titles {
|
2017-03-27 13:32:03 +00:00
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
2017-05-18 10:07:17 +00:00
|
|
|
width: 18%;
|
2017-03-27 13:32:03 +00:00
|
|
|
margin: 0;
|
2017-05-18 13:01:34 +00:00
|
|
|
padding: 0 0 0 2em;
|
2017-05-18 10:07:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#results-actions {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-around;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toSimulation {
|
|
|
|
font-size: 190%;
|
|
|
|
color: white;
|
|
|
|
background: #4A89DC;
|
|
|
|
padding: .6em .6em;
|
|
|
|
text-decoration: none;
|
|
|
|
border-radius: .2em;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#toSimulation i {
|
|
|
|
margin-right: .6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#results-titles {
|
|
|
|
color: white;
|
|
|
|
line-height: 1.2em;
|
2017-03-27 13:32:03 +00:00
|
|
|
font-weight: 400;
|
|
|
|
font-size: 120%;
|
2017-05-17 16:00:57 +00:00
|
|
|
text-align: left;
|
2017-03-27 13:32:03 +00:00
|
|
|
}
|
2017-05-18 10:07:17 +00:00
|
|
|
#results-titles h2 {
|
2017-05-17 16:00:57 +00:00
|
|
|
font-size: 250%;
|
|
|
|
margin: .4em 0;
|
2017-03-27 13:32:03 +00:00
|
|
|
}
|
2017-05-18 10:07:17 +00:00
|
|
|
#results-titles p {
|
2017-05-17 16:00:57 +00:00
|
|
|
color: inherit;
|
2017-03-27 13:32:03 +00:00
|
|
|
}
|
2017-05-18 10:07:17 +00:00
|
|
|
#results-titles i {
|
2017-05-17 16:00:57 +00:00
|
|
|
margin: 0 .3em;
|
|
|
|
}
|
2017-05-18 10:07:17 +00:00
|
|
|
#resultText {
|
2017-05-17 16:00:57 +00:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
|
|
|
|
2017-03-27 13:32:03 +00:00
|
|
|
|
|
|
|
|
2017-10-03 09:44:03 +00:00
|
|
|
|
2017-03-27 13:32:03 +00:00
|
|
|
#results ul {
|
|
|
|
display: inline-flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
height: 100%;
|
|
|
|
width: 80%;
|
|
|
|
list-style: none;
|
|
|
|
padding-left: 0;
|
2017-05-18 10:07:17 +00:00
|
|
|
margin: 0;
|
2017-03-27 13:32:03 +00:00
|
|
|
}
|
|
|
|
|
2017-05-05 16:29:08 +00:00
|
|
|
|
2017-05-30 09:08:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1280px) {
|
|
|
|
#results .rule-type {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#results {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#results-titles {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: .6em;
|
|
|
|
}
|
|
|
|
#results-titles p {
|
|
|
|
margin: 0;
|
|
|
|
margin-right: 3em;
|
|
|
|
}
|
|
|
|
#results-titles h2 {
|
|
|
|
font-size: 150%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#results-titles #resultText {
|
|
|
|
font-size: 120%
|
|
|
|
}
|
|
|
|
#results h2 {
|
|
|
|
margin: 0.3em 1em 0 0;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
#results-titles > p {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
#results-titles #understandTip {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#results ul {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|