mon-entreprise/source/components/Results.css

87 lines
1.2 KiB
CSS

#results {
position: fixed;
left: 50%;
bottom: 2.5%;
width: 90%;
max-width: 45em;
margin: 0 auto;
padding: 0;
background: #2975D1;
color: white;
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;
}
#results-actions {
background: #333350;
}
#toSimulation {
font-size: 150%;
color: white;
margin-left: .6em;
line-height: 1.8em;
text-decoration: none;
border-radius: .2em;
position: relative;
}
#toSimulation i {
margin-right: .6em;
}
#results h2 {
margin: .6em;
font-weight: 600;
text-align: left;
font-size: 125%;
}
#results h2 i {
margin-right: .6em;
}
#results h2 small {
opacity: 0.7;
font-size: calc(50% + .2vw);
font-weight: 400;
}
#results h2 span {
font-size: 70%;
margin: 0 .6em
}
#results ul {
list-style: none;
padding-left: 0;
display: flex;
align-items: center;
flex-wrap: wrap;
height: 70%;
margin: .6em auto 1.2em;
}
#results li {
margin: 0 1em 0 2em;
display: inline-block;
width: 100%;
}
@media (max-width: 1280px) {
}