52 lines
725 B
CSS
52 lines
725 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.graph_container {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.graph {
|
|
position: relative;
|
|
min-height: 400px;
|
|
}
|
|
|
|
svg {
|
|
border: 1px solid #aaa;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.legend {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin: 0 0 0 0px;
|
|
}
|
|
|
|
.graph .detail .item.active {
|
|
line-height: 1.4em;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.labels {
|
|
font-size: 11px;
|
|
line-height: 11px;
|
|
}
|
|
|
|
.graph .detail .item .detail_swatch {
|
|
float: right;
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
margin: 2px 2px 0 8px;
|
|
}
|
|
|
|
.legend.rickshaw_legend {
|
|
width: auto;
|
|
}
|
|
|
|
.legend.rickshaw_legend .line {
|
|
padding-bottom: 10px;
|
|
clear: none;
|
|
float: left;
|
|
}
|