Quite good looking graph derived from d3.js http://c3js.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

197 lines
2.6 KiB

12 years ago
/*-- Chart --*/
.c3 svg {
12 years ago
font: 10px sans-serif;
}
.c3 path, .c3 line {
12 years ago
fill: none;
stroke: #000;
}
.c3 text {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
12 years ago
.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
shape-rendering: crispEdges;
}
.c3-chart-arc path {
stroke: #fff;
}
.c3-chart-arc text {
fill: #fff;
font-size: 13px;
}
/*-- Axis --*/
.c3-axis-x .tick {
}
.c3-axis-x-label {
}
.c3-axis-y .tick {
}
.c3-axis-y-label {
}
.c3-axis-y2 .tick {
}
.c3-axis-y2-label {
}
12 years ago
/*-- Grid --*/
.c3-grid line {
11 years ago
stroke: #aaa;
}
.c3-grid text {
11 years ago
fill: #aaa;
12 years ago
}
.c3-xgrid, .c3-ygrid {
12 years ago
stroke-dasharray: 3 3;
}
.c3-xgrid-focus {
12 years ago
}
/*-- Text on Chart --*/
.c3-text {
}
.c3-text.c3-empty {
fill: #808080;
font-size: 2em;
}
12 years ago
/*-- Line --*/
.c3-line {
12 years ago
stroke-width: 1px;
}
/*-- Point --*/
.c3-circle._expanded_ {
stroke-width: 1px;
stroke: white;
}
.c3-selected-circle {
12 years ago
fill: white;
stroke-width: 2px;
}
/*-- Bar --*/
10 years ago
.c3-bar {
stroke-width: 0;
}
.c3-bar._expanded_ {
fill-opacity: 0.75;
}
/*-- Arc --*/
.c3-chart-arcs-title {
font-size: 1.3em;
}
12 years ago
/*-- Focus --*/
.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
12 years ago
stroke-width: 2px;
}
/*-- Region --*/
.c3-region {
12 years ago
fill: steelblue;
11 years ago
fill-opacity: .1;
12 years ago
}
/*-- Brush --*/
.c3-brush .extent {
12 years ago
fill-opacity: .1;
}
/*-- Select - Drag --*/
.c3-dragarea {
12 years ago
}
/*-- Legend --*/
.c3-legend-item {
12 years ago
font-size: 12px;
}
/*-- Tooltip --*/
.c3-tooltip {
12 years ago
border-collapse:collapse;
border-spacing:0;
background-color:#fff;
empty-cells:show;
-webkit-box-shadow: 7px 7px 12px -9px rgb(119,119,119);
-moz-box-shadow: 7px 7px 12px -9px rgb(119,119,119);
box-shadow: 7px 7px 12px -9px rgb(119,119,119);
opacity: 0.9;
12 years ago
}
.c3-tooltip tr {
12 years ago
border:1px solid #CCC;
}
.c3-tooltip th {
12 years ago
background-color: #aaa;
font-size:14px;
padding:2px 5px;
text-align:left;
color:#FFF;
}
.c3-tooltip td {
12 years ago
font-size:13px;
padding: 3px 6px;
12 years ago
background-color:#fff;
border-left:1px dotted #999;
}
.c3-tooltip td > span {
display: inline-block;
width: 10px;
height: 10px;
margin-right: 6px;
}
.c3-tooltip td.value{
12 years ago
text-align: right;
}
.c3-area {
stroke-width: 0;
opacity: 0.2;
}
.c3-chart-arcs .c3-chart-arcs-background {
fill: #e0e0e0;
stroke: none;
}
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
fill: #000;
font-size: 16px;
}
.c3-chart-arcs .c3-chart-arcs-gauge-max {
fill: #777;
}
.c3-chart-arcs .c3-chart-arcs-gauge-min {
fill: #777;
}
.c3-chart-arc .c3-gauge-value {
fill: #000;
font-size: 28px;
}