-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
135 lines (128 loc) · 2.03 KB
/
index.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
132
133
134
135
body {
font-family: 'Helvetica Light', 'Helvetica', Arial, sans-serif;
font-weight: 100;
font-size: 16px;
color: #111111;
background-color: #fff;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
#options {
margin: 20px;
padding: 20px;
border: 1px solid #111111;
}
h2 {
margin: 20px;
margin-bottom: 0;
font-size: 22px;
}
h3 {
margin: 10px;
font-size: 14px;
font-weight: normal;
text-align: center;
}
.charts {
padding: 10px;
margin: 0 auto;
}
.chart {
width: calc(50% - 10px - 10px);
margin: 14px 10px;
float: left;
background-color: aliceblue;
box-sizing: border-box;
position: relative;
}
.chart.placeholder {
height: 337px;
background-color: transparent;
}
@media (max-width: 750px) {
.chart {
width: calc(100% - 10px - 10px);
}
.chart.placeholder {
display: none;
}
}
.chart-container {
width: 97.5%;
height: 300px;
}
.chart-info {
font-size: 9px;
text-align: right;
position: absolute;
top: calc(100% + 1px);
right: 1px;
}
.selector {
width: 100%;
margin: 0 10px;
}
.checkbox {
display: inline-block;
margin-right: 15px;
margin-bottom: 5px;
}
input[type="checkbox"] {
margin-right: 5px;
}
.sources {
margin: 20px;
font-size: 14px;
}
.sources dd {
margin-inline-start: 0;
}
.chart svg .y-line-red line {
stroke: #ff4040;
}
.chart svg .y-line-red text {
fill: #ff4040;
}
.chart svg .y-line-orange line {
stroke: #ffa500;
}
.chart svg .y-line-orange text {
fill: #ffa500;
}
.chart svg .y-line-green line {
stroke: #6ca730;
}
.chart svg .y-line-green text {
fill: #6ca730;
}
.chart svg .y-line-blue line {
stroke: #346db6;
}
.chart svg .y-line-blue text {
fill: #346db6;
}
.chart svg .y-line-purple line {
stroke: #7134b6;
}
.chart svg .y-line-purple text {
fill: #7134b6;
}
.chart svg .x-line-c1-start line,
.chart svg .x-line-start line {
stroke: #caa;
}
.chart svg .x-line-c1-start text,
.chart svg .x-line-start text {
fill: #caa;
}
.chart svg .x-line-c1-end line,
.chart svg .x-line-end line {
stroke: #aca;
}
.chart svg .x-line-c1-end text,
.chart svg .x-line-end text {
fill: #aca;
}