covid-19/sim/sim.css

144 lines
2.3 KiB
CSS

body{
margin: 0;
font-family: Helvetica, Arial, sans-serif;
font-size: 15px;
background: #ddd;
}
#sandbox{
width: 800px;
height: 520px;
overflow: hidden;
background: #fff;
position: absolute;
margin:auto;
top:0; left:0; right:0; bottom:0;
}
#controls{
position: absolute;
left:15px;
top:20px;
width:250px;
/*height:500px;*/
float:left;
position: relative;
}
/*
#controls > div{
overflow: hidden;
margin-bottom: 1em;
position: relative;
border-left: 5px solid #ffffff;
padding-left: 10px;
}
#controls > div > div{
width: 150px;
float: left;
position: relative;
}
#controls > div > div.bar{
height:10px;
background: #eeeeee;
position: absolute;
bottom:0; left:150px;
overflow: hidden;
}
#controls > div > div.bar > div{
height: 100%;
float: left;
}
#controls > div > div.bar > div:nth-child(1){
background: #ff4040;
}
#controls > div > div.bar > div:nth-child(2){
background: #cc4040;
}
#controls > div > div.bar > div:nth-child(3){
background: #994040;
}
#controls > div > div.bar > div:nth-child(4){
background: #664040;
}
#controls > div > #r_end{
height: 30px;
}
#controls > #containment_line{
display: block;
width:1px;
height: 100%;
background: #000;
position: absolute;
top: 0;
}
#controls .cap{
background: #fff;
opacity: 0.8;
position: absolute;
bottom: 0;
right: 0;
width: 50px;
height: 20px;
}*/
#controls input[type=range]{
width: 100%;
}
#controls div[strikethrough]{
text-decoration: line-through;
}
#controls div[strikethrough] > input[type=range]{
pointer-events: none;
opacity: 0.5;
}
/*
#controls > div[locked]{
opacity: 0.2;
pointer-events: none;
}*/
#graph{
position: absolute;
right:15px;
top:8px;
width: 500px;
}
#graphCanvas{
width:500px;
height:500px;
border: 1px solid #ccc;
}
#graph > #months{
color: #bbb;
font-size: 10px;
width: 562.5px;
height: 50px;
text-align: right;
position: relative;
left: -70.5px;
top: 2px;
}
#graph > #months > div{
color: #bbb;
font-size: 10px;
width: 62.5px;
float: left;
transform-origin: top right;
transform: rotate(-30deg);
}
#graph > #month_ticks{
width: 562.5px;
height: 5px;
position: relative;
left: -61.5px;
top: -50px;
}
#graph > #month_ticks > div{
width: 61.5px;
height: 100%;
border-right: 1px solid #bbb;
float: left;
}