2013-04-05 06:56:33 +08:00
|
|
|
body {
|
|
|
|
color: white;
|
|
|
|
font-size: 14;
|
|
|
|
background: purple;
|
|
|
|
}
|
|
|
|
#map {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#slider-container {
|
|
|
|
position: absolute;
|
|
|
|
bottom:30px; left: 0;
|
|
|
|
height: 170px;
|
|
|
|
background: rgba(0,0,0,0.4);
|
|
|
|
width: 100%;
|
|
|
|
padding: 0; margin: 0;
|
|
|
|
}
|
|
|
|
#slider-container #graph {
|
|
|
|
position:absolute;
|
|
|
|
top:10px;
|
|
|
|
left:10px;
|
|
|
|
float:left;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#slider-spark {
|
|
|
|
position: absolute;
|
|
|
|
bottom:0; left: 0;
|
|
|
|
height: 220px;
|
|
|
|
background: transparent;
|
|
|
|
width: 14px;
|
2013-04-05 22:16:08 +08:00
|
|
|
z-index: 2000;
|
|
|
|
cursor: pointer;
|
2013-04-05 06:56:33 +08:00
|
|
|
}
|
|
|
|
#slider-spark .head {
|
|
|
|
position: relative;
|
2013-04-18 06:35:15 +08:00
|
|
|
background: steelblue;
|
2013-04-05 06:56:33 +08:00
|
|
|
border: 2px solid steelblue;
|
|
|
|
width: 10px; height: 10px;
|
2013-04-05 22:16:08 +08:00
|
|
|
border-radius: 6px;
|
2013-04-05 06:56:33 +08:00
|
|
|
cursor: pointer;
|
2013-04-18 06:35:15 +08:00
|
|
|
z-index: 5;
|
2013-04-05 06:56:33 +08:00
|
|
|
}
|
|
|
|
#slider-spark .pin {
|
|
|
|
position: relative;
|
2013-04-18 06:35:15 +08:00
|
|
|
background: rgba(255,191,0,0.2);
|
|
|
|
margin-top: -3px;
|
2013-04-05 06:56:33 +08:00
|
|
|
border: 0px;
|
2013-04-18 06:35:15 +08:00
|
|
|
margin-left: 3px;
|
|
|
|
margin-right: 3px;
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-right: 3px;
|
2013-04-05 06:56:33 +08:00
|
|
|
width: 2px;
|
2013-04-18 06:35:15 +08:00
|
|
|
height: 183px;
|
2013-04-05 06:56:33 +08:00
|
|
|
}
|
|
|
|
path {
|
|
|
|
stroke: steelblue;
|
2013-04-18 06:35:15 +08:00
|
|
|
stroke-width: 2;
|
2013-04-05 06:56:33 +08:00
|
|
|
fill: none;
|
|
|
|
}
|
2013-04-18 06:35:15 +08:00
|
|
|
circle {
|
|
|
|
stroke: steelblue;
|
|
|
|
}
|
|
|
|
text {
|
|
|
|
font-family: Arial;
|
|
|
|
font-size: 9pt;
|
|
|
|
font-color: white;
|
|
|
|
stroke-weight: 300;
|
|
|
|
stroke: rgba(255,255,255,0.45);
|
|
|
|
}
|
2013-04-05 06:56:33 +08:00
|
|
|
.axis {
|
|
|
|
shape-rendering: crispEdges;
|
|
|
|
}
|
|
|
|
|
|
|
|
.x.axis line {
|
|
|
|
stroke: lightgrey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.x.axis .minor {
|
|
|
|
stroke-opacity: .5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.x.axis text {
|
|
|
|
font-color: white;
|
|
|
|
font-size: 14;
|
|
|
|
}
|
|
|
|
.x.axis path {
|
|
|
|
display: none;
|
|
|
|
}
|