71 lines
1.1 KiB
CSS
71 lines
1.1 KiB
CSS
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;
|
|
}
|
|
#slider-spark .head {
|
|
position: relative;
|
|
background: transparent;
|
|
border: 2px solid steelblue;
|
|
width: 10px; height: 10px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
#slider-spark .pin {
|
|
position: relative;
|
|
background: rgba(255,191,0,0.5);
|
|
border: 0px;
|
|
margin-left: 6px;
|
|
width: 2px;
|
|
height: 180px;
|
|
}
|
|
path {
|
|
stroke: steelblue;
|
|
stroke-width: 1;
|
|
fill: none;
|
|
}
|
|
.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;
|
|
} |