86 lines
1.0 KiB
CSS
86 lines
1.0 KiB
CSS
#sim {
|
|
padding: 2em;
|
|
}
|
|
|
|
#sim section {
|
|
padding: 2em;
|
|
}
|
|
|
|
#introduction {
|
|
width: 60%;
|
|
margin-left: 10%;
|
|
}
|
|
|
|
|
|
#conversation {
|
|
margin: 3em auto;
|
|
font-size: 120%;
|
|
line-height: normal;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
min-height: 10em;
|
|
margin: 3em 0;
|
|
max-width: 80%;
|
|
}
|
|
|
|
#questions-answers {
|
|
min-width: 50%;
|
|
}
|
|
|
|
#sim #help {
|
|
background: #f7f7f7;
|
|
border-radius: 3em;
|
|
font-style: italic;
|
|
border-left: 6px solid #ddd;
|
|
margin-left: 6em;
|
|
padding-left: 6em;
|
|
min-width: 30%;
|
|
color: #444
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
}
|
|
|
|
|
|
|
|
#results {
|
|
width: 90%;
|
|
border-top: 2px solid #aaa;
|
|
}
|
|
|
|
#results ul {
|
|
list-style: none;
|
|
}
|
|
|
|
#results li {
|
|
display: inline-block;
|
|
background: #4A89DC;
|
|
color: white;
|
|
margin: 0 2em;
|
|
border-radius: 6px;
|
|
padding: .6em 2em;
|
|
}
|
|
|
|
#results li h3 {
|
|
border-bottom: 1px solid white;
|
|
}
|
|
|
|
#results .value {
|
|
font-size: 160%;
|
|
}
|