forked from asciimoo/cssplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssplot.base.css
More file actions
68 lines (68 loc) · 1.16 KB
/
cssplot.base.css
File metadata and controls
68 lines (68 loc) · 1.16 KB
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
.bar-chart,
.vertical-chart,
.scatterplot {
position: relative;
min-width: 100px;
min-height: 100px;
padding: 0;
margin: 0;
}
.bar-chart .container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
position: absolute;
text-align: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 0;
margin: 0;
min-height: 100px;
}
.bar-chart .chart-column,
.bar-chart [data-cp-size] {
flex-grow: 1;
align-self: flex-end;
}
.bar-chart .chart-column,
.vertical-chart .chart-row,
.bar-chart [data-cp-size],
.vertical-chart [data-cp-size] {
background: #3498db;
color: #ffffff;
list-style: none;
border: 1px solid #ffffff;
box-sizing: border-box;
}
.vertical-chart {
clear: both;
}
.vertical-chart .container {
flex-direction: row;
padding: 0;
margin: 0;
width: 100%;
}
.scatterplot .container {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
}
.scatterplot .chart-dot,
.scatterplot .chart-dot,
.scatterplot [data-cp-x],
.scatterplot [data-cp-y] {
position: absolute;
height: 0;
width: 0;
list-style: none;
overflow: hidden;
border: 6px solid #3498db;
border-radius: 100%;
}