-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
96 lines (88 loc) · 1.5 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
#container {
display: flex;
flex-flow: row wrap;
width: 100%;
height: 600px;
}
#container .main-canvas {
width: 100%;
max-width: 500px;
margin: 0 40px 40px;
}
#lines-svg #lines-group {
transition: scale 0.4s linear, transform 0.4s linear, matrix 0.4s linear;
}
svg path{
vector-effect: non-scaling-stroke;
}
.show {
visibility: visible;
}
.hide {
visibility: hidden;
}
.checkbox {
width: 80px;
padding: 10px 10px 10px 0;
}
.checkbox:hover{
cursor: pointer;
}
.checkbox .checkmark {
stroke-width: 2;
stroke: white;
}
.checkbox .checkmark__circle {
stroke: #7ac142;
}
.checkbox.checked .checkmark__circle{
fill: #7ac142;
}
#y-axi-group .y-axi-text,
#x-axi-group .x-axi-text{
fill: #55575e;
}
#y-axi-group .y-axi-text {
font-size: 18px;
}
#x-axi-group .x-axi-text.hide{
opacity: 0;
visibility: hidden;
}
#x-axi-group .x-axi-text, #x-axi-group .x-axi-text.show{
opacity: 1;
visibility: visible;
font-size: 15px;
transition: visibility .5s linear, opacity .5s linear;
}
@media screen and (max-width: 640px) {
#y-axi-group .y-axi-text {
font-size: 14px;
}
}
#y-axi-group .y-axi-line {
stroke: #eee;
}
.popup, .popup.show {
opacity: 1;
visibility: visible;
transition: visibility .5s linear, opacity .5s linear;
}
.popup.hide {
opacity: 0;
visibility: hidden;
}
.popup .popup-circle{
fill: white;
stroke-width: 2px;
}
.popup .popup-rect{
fill: white;
stroke: black;
}
.popup .popup-line-text{
fill: #55575e;
}
.popup .popup-line {
stroke: #eee;
}