Project

General

Profile

1
/*-- Chart --*/
2
.c3 svg {
3
  font: 10px sans-serif; }
4

    
5
.c3 path, .c3 line {
6
  fill: none;
7
  stroke: #000; }
8

    
9
.c3 text {
10
  -webkit-user-select: none;
11
  -moz-user-select: none;
12
  user-select: none; }
13

    
14
.c3-legend-item-tile, .c3-xgrid-focus, .c3-ygrid, .c3-event-rect, .c3-bars path {
15
  shape-rendering: crispEdges; }
16

    
17
.c3-chart-arc path {
18
  stroke: #fff; }
19

    
20
.c3-chart-arc text {
21
  fill: #fff;
22
  font-size: 13px; }
23

    
24
/*-- Axis --*/
25
/*-- Grid --*/
26
.c3-grid line {
27
  stroke: #aaa; }
28

    
29
.c3-grid text {
30
  fill: #aaa; }
31

    
32
.c3-xgrid, .c3-ygrid {
33
  stroke-dasharray: 3 3; }
34

    
35
/*-- Text on Chart --*/
36
.c3-text.c3-empty {
37
  fill: #808080;
38
  font-size: 2em; }
39

    
40
/*-- Line --*/
41
.c3-line {
42
  stroke-width: 1px; }
43

    
44
/*-- Point --*/
45
.c3-circle._expanded_ {
46
  stroke-width: 1px;
47
  stroke: white; }
48

    
49
.c3-selected-circle {
50
  fill: white;
51
  stroke-width: 2px; }
52

    
53
/*-- Bar --*/
54
.c3-bar {
55
  stroke-width: 0; }
56

    
57
.c3-bar._expanded_ {
58
  fill-opacity: 0.75; }
59

    
60
/*-- Focus --*/
61
.c3-target.c3-focused {
62
  opacity: 1; }
63

    
64
.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
65
  stroke-width: 2px; }
66

    
67
.c3-target.c3-defocused {
68
  opacity: 0.3 !important; }
69

    
70
/*-- Region --*/
71
.c3-region {
72
  fill: steelblue;
73
  fill-opacity: 0.1; }
74

    
75
/*-- Brush --*/
76
.c3-brush .extent {
77
  fill-opacity: 0.1; }
78

    
79
/*-- Select - Drag --*/
80
/*-- Legend --*/
81
.c3-legend-item {
82
  font-size: 12px; }
83

    
84
.c3-legend-item-hidden {
85
  opacity: 0.15; }
86

    
87
.c3-legend-background {
88
  opacity: 0.75;
89
  fill: white;
90
  stroke: lightgray;
91
  stroke-width: 1; }
92

    
93
/*-- Tooltip --*/
94
.c3-tooltip-container {
95
  z-index: 10; }
96

    
97
.c3-tooltip {
98
  border-collapse: collapse;
99
  border-spacing: 0;
100
  background-color: #fff;
101
  empty-cells: show;
102
  -webkit-box-shadow: 7px 7px 12px -9px #777777;
103
  -moz-box-shadow: 7px 7px 12px -9px #777777;
104
  box-shadow: 7px 7px 12px -9px #777777;
105
  opacity: 0.9; }
106

    
107
.c3-tooltip tr {
108
  border: 1px solid #CCC; }
109

    
110
.c3-tooltip th {
111
  background-color: #aaa;
112
  font-size: 14px;
113
  padding: 2px 5px;
114
  text-align: left;
115
  color: #FFF; }
116

    
117
.c3-tooltip td {
118
  font-size: 13px;
119
  padding: 3px 6px;
120
  background-color: #fff;
121
  border-left: 1px dotted #999; }
122

    
123
.c3-tooltip td > span {
124
  display: inline-block;
125
  width: 10px;
126
  height: 10px;
127
  margin-right: 6px; }
128

    
129
.c3-tooltip td.value {
130
  text-align: right; }
131

    
132
/*-- Area --*/
133
.c3-area {
134
  stroke-width: 0;
135
  opacity: 0.2; }
136

    
137
/*-- Arc --*/
138
.c3-chart-arcs-title {
139
  dominant-baseline: middle;
140
  font-size: 1.3em; }
141

    
142
.c3-chart-arcs .c3-chart-arcs-background {
143
  fill: #e0e0e0;
144
  stroke: none; }
145

    
146
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
147
  fill: #000;
148
  font-size: 16px; }
149

    
150
.c3-chart-arcs .c3-chart-arcs-gauge-max {
151
  fill: #777; }
152

    
153
.c3-chart-arcs .c3-chart-arcs-gauge-min {
154
  fill: #777; }
155

    
156
.c3-chart-arc .c3-gauge-value {
157
  fill: #000;
158
  /*  font-size: 28px !important;*/ }
(5-5/8)