-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtinyplot.css
131 lines (128 loc) · 2.47 KB
/
tinyplot.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
.tinyplot-chart {
position: relative;
min-height: 400px;
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
}
.tinyplot-chart > div {
position: absolute;
}
.tinyplot-chart canvas {
width: 100%;
height: 100%;
}
.tinyplot-chart .text {
color: #222;
}
.tinyplot-chart .title-area {
position: absolute;
left: 64px;
right: 64px;
height: 64px;
}
.tinyplot-chart .title-area .title {
text-align: center;
font-size: 24px;
color: #222;
margin-bottom: 4px;
}
.tinyplot-chart .title-area .subtitle {
text-align: center;
font-size: 16px;
color: #222;
}
.tinyplot-chart .y-axis {
width: 64px;
top: 64px;
bottom: 64px;
z-index: 2;
}
.tinyplot-chart .data, .tinyplot-chart .data-intercept {
left: 64px;
right: 64px;
top: 64px;
bottom: 64px;
z-index: 1;
}
.tinyplot-chart .data {
background: #fff;
overflow: hidden;
border: 1px solid #ccc;
}
.tinyplot-chart .data.no-canvas {
overflow: visible;
}
.tinyplot-chart .x-axis {
height: 64px;
left: 64px;
right: 64px;
bottom: 0;
z-index: 2;
}
.tinyplot-chart.timeseries .cursor {
position: absolute;
top: 0;
bottom: 0;
left: 20px;
display: none;
text-align: center;
width: 200px;
}
.tinyplot-chart.timeseries .cursor .bar {
height: 100%;
margin: 0 auto;
width: 0;
}
.tinyplot-chart.timeseries .cursor .info {
background: #fff;
border: 1px solid #ccc;
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
padding: 2px 8px;
position: absolute;
top: 8px;
width: 100%;
box-sizing: border-box;
}
.tinyplot-chart.timeseries .cursor .info > div {
font-size: 12px;
padding: 2px 0;
}
.tinyplot-chart.stacked-bar {
min-height: 400px;
position: relative;
-webkit-transform: translateZ(0);
}
.tinyplot-chart.stacked-bar .data {
position: absolute;
left: 64px;
right: 64px;
top: 64px;
bottom: 64px;
background: #fff;
}
.tinyplot-chart.stacked-bar .data .column {
float: left;
height: 100%;
position: relative;
vertical-align: bottom;
}
.tinyplot-chart.stacked-bar .data .column a.box {
position: absolute;
display: block;
border-bottom: 1px solid #fff;
left: 4px;
right: 4px;
-webkit-transform: translateZ(0);
cursor: pointer;
}
.tinyplot-chart.stacked-bar .data .column .total {
text-align: center;
font-size: 12px;
position: absolute;
left: 4px;
right: 4px;
padding: 1px;
height: 16px;
-webkit-transform: translateZ(0);
overflow: hidden;
}
/*# sourceMappingURL=tinyplot.css.map */