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* {
margin: 0;
padding: 0;
}
.main {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Roboto';
background-color: #34495e;
background-size: 64px 128px;
}
.main .container {
height: 660px;
width: 1000px;
background-color: #fff;
display: flex;
flex-direction: column;
padding: 20px 20px 20px 20px;
align-self: center;
position: relative;
}
@media (min-width: 1000px) {
.main .container {
box-shadow: 2px 2px 20px;
}
}
.main .container #title {
text-align: center;
font-size: 2.5em;
}
.main .container #sub_Title {
text-align: center;
font-size: 1.2em;
}
.main .container .visHolder {
position: absolute;
top: 7em;
}
#tooltip {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
text-align: left;
text-align: top;
width: 150px;
height: 100px;
padding: 2px;
font-size: 12px;
background: lightsteelblue;
box-shadow: 1px 1px 10px;
border-radius: 2px;
pointer-events: none;
}
.overlay {
position: absolute;
background: #fff;
pointer-events: none;
}
#y-axis path {
stroke: black;
stroke-width: 1;
fill: none;
}
#x-axis path {
stroke: black;
stroke-width: 1;
fill: none;
}
.info {
font-size: 0.8em;
}