mon-entreprise/source/components/CDD.css

130 lines
1.7 KiB
CSS
Raw Normal View History

#sim {
padding: 0 2em;
}
#sim p {
color: #333;
}
#sim section {
padding: 2em;
}
#sim #introduction {
2017-02-09 14:02:21 +00:00
margin-left: 1.2em;
margin-top: 2em;
font-size: 110%;
padding-top: 0;
width: 60%;
}
#conversation {
2017-01-26 16:16:15 +00:00
margin: 1em auto;
font-size: 120%;
line-height: normal;
display: flex;
justify-content: space-around;
align-items: flex-start;
min-height: 10em;
max-width: 90%;
}
#questions-answers {
min-width: 60%;
transition: width 1s;
}
.dependency-of {
}
.dependency-of ul {
display: inline;
}
.dependency-of li {
font-size: 80%;
background: #4A89DC;
color: white;
display: inline-block;
padding: .1em .6em;
margin: 0 .6em;
border-radius: 3px;
}
2017-01-26 16:16:15 +00:00
#sim #results {
padding: .1em;
background: #4A89DC;
box-shadow: 1px -7px 20px 2px #eee;
2017-01-26 16:16:15 +00:00
position: fixed;
bottom: 0;
left: 0;
width: 100%;
font-size: 80%;
color: white;
height: 10em;
text-align: center;
}
#results h2 {
color: white;
2017-02-09 12:58:12 +00:00
width: 5em;
2017-01-26 16:16:15 +00:00
display: inline-block;
2017-02-09 12:58:12 +00:00
float: left;
line-height: 1.2em;
2017-01-26 16:16:15 +00:00
margin: 0;
2017-02-09 12:58:12 +00:00
margin-left: 1.5em;
2017-01-26 16:16:15 +00:00
padding: .5em;
font-weight: 400;
font-size: 300%;
}
2017-01-26 16:16:15 +00:00
#results ul {
2017-02-09 12:58:12 +00:00
display: inline-flex;
justify-content: space-around;
height: 100%;
width: 70%;
list-style: none;
}
#results li {
2017-01-26 16:16:15 +00:00
color: #333;
background: white;
display: inline-block;
margin: 0 2em;
2017-02-09 12:58:12 +00:00
border-radius: 8px;
padding: .6em 2em;
2017-01-26 16:16:15 +00:00
text-align: center;
border: 1px solid #333350;
}
2017-02-09 12:58:12 +00:00
#results li.unsatisfied {
border: 2px dashed #4A89DC;
2017-02-09 12:58:12 +00:00
}
#results li h3 {
2017-01-26 16:16:15 +00:00
font-size: 130%;
2017-02-09 12:58:12 +00:00
/*width: 80%;*/
2017-01-26 16:16:15 +00:00
border-bottom: 1px solid #aaa;
margin: .1em;
2017-02-09 12:58:12 +00:00
margin-bottom: 1em;
2017-01-26 16:16:15 +00:00
padding-bottom: .2em;
}
2017-02-09 12:58:12 +00:00
#results li p {
margin-top: 0;
font-size: 150%;
2017-01-26 16:16:15 +00:00
}
2017-02-09 12:58:12 +00:00
#results li.unsatisfied p{
font-style: italic;
}
#results li.number p {
font-size: 300%;
}
2017-01-26 16:16:15 +00:00
#results .value {
2017-02-09 12:58:12 +00:00
}