mon-entreprise/source/components/Results.css

87 lines
1.2 KiB
CSS
Raw Normal View History

2017-03-27 13:32:03 +00:00
#results {
position: fixed;
left: 50%;
2017-10-18 16:32:13 +00:00
bottom: 2.5%;
width: 90%;
max-width: 45em;
margin: 0 auto;
padding: .1em;
background: #4A89DC;
color: white;
padding: .6em 0;
font-size: 120%;
box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
opacity: 0;
transform: translate(-50%, 12em);
transition: transform .5s;
transition-delay: .3s;
transition-timing-function: cubic-bezier(0, 1.01, 0.24, 1)
}
#results.show {
transform: translate(-50%, 0);
opacity: 1;
}
2017-10-18 16:32:13 +00:00
#results-actions {
2017-03-27 13:32:03 +00:00
display: inline-block;
float: left;
width: 18%;
2017-03-27 13:32:03 +00:00
margin: 0;
padding: 0 0 0 2em;
}
#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;
}
2017-10-18 16:32:13 +00:00
#results h2 {
margin: 0 .6em;
font-weight: 600;
color: white;
text-align: left;
font-size: 125%;
2017-03-27 13:32:03 +00:00
}
2017-10-18 16:32:13 +00:00
#results h2 i {
margin-right: .6em;
}
2017-03-27 13:32:03 +00:00
#results ul {
list-style: none;
padding-left: 0;
2017-10-18 16:32:13 +00:00
display: flex;
align-items: center;
flex-wrap: wrap;
height: 70%;
width: 96%;
margin: .6em auto;
2017-10-18 16:32:13 +00:00
2017-03-27 13:32:03 +00:00
}
@media (max-width: 1280px) {
}