Newer
Older
Tifenn Guillas
committed
font-size: 24px;
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
}
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.grid line {
fill: none;
stroke: lightgray;
shape-rendering: crispEdges;
}
.ray line {
stroke-dasharray: 3, 3;
stroke-width: 1.5px;
}
.emission line {
stroke: steelblue;
}
.emission text {
fill: steelblue;
}
.absorption line {
stroke: tomato;
}
.absorption text {
fill: tomato;
}
.spectra-line, .line {
fill: none;
stroke: black;
stroke-width: 1px;
}
.spectra-area, .area {
fill: #D0D0D0;
opacity: 0.6;
}
.overlay {
fill: none;
pointer-events: all;
}
.big-circle-tootlip {
fill: #7ac29a;
}
.little-circle-tooltip {
fill: rgb(16, 75, 42);
stroke: #fff;
stroke-width: 1.5px;
}
.rect-tootlip {
fill: #fafafa;
stroke: #7ac29a;
opacity: 0.9;
stroke-width: 1;
}
.text-tooltip {
font-size: 13px;
font-family: "Segoe UI";
color: #333333;
fill: #333333;
}
.text-y-value {
font-weight: bold;
}
.emission-button circle {
stroke: steelblue;
stroke-width: 3px;
cursor: pointer;
}
.button-off circle {
fill: transparent;
}
.emission-button-on circle {
fill: steelblue;
}
.absorption-button circle {
stroke: tomato;
stroke-width: 3px;
cursor: pointer;
}
.absorption-button-on circle {
fill: tomato;
}
.emission-button text, .absorption-button text {
Tifenn Guillas
committed
font-size: 15px;