-
Notifications
You must be signed in to change notification settings - Fork 0
/
line-fitter.css
120 lines (103 loc) · 1.65 KB
/
line-fitter.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
body{
font-size: 14px;
background-color:#15141f;
}
.randomize {
background-color: goldenrod;
text-decoration: none;
color: #15141f;
display: inline-flex;
justify-content: center;
font-weight: bold;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
border: 1px solid transparent;
border-radius: 2px;
padding: 0.375rem 1rem;
font-size: 1rem;
line-height: 2;
min-width: 8rem;
transition: all 0.1s ease-in-out;
}
.randomize:active {
background-color: #cc9a06;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}
.chart {
background-color: white;
}
.well {
background-color: white;
}
.hero-unit{
margin: 0;
}
.chart text {
fill: #AAAAAA;
font: 10px sans-serif;
}
.chart line {
stroke: #EEEEEE;
}
.chart .best-fit{
stroke: black;
}
.chart .error-line{
stroke: black;
stroke-width: 3;
stroke-dasharray: 2,2;
}
.chart .datapoint{
fill: blue;
}
h2{
text-align: center;
margin: 0;
}
.selected {
stroke: black;
}
.x-adder {
width:20%;
}
.y-adder {
width:20%;
}
.point-error{
position: absolute;
z-index: 10;
visibility: hidden;
padding: 5;
width: 100;
height: 60;
background: #F5F5F5;
color: black;
/* border: 2px solid black;*/
}
.x-display:hover {
cursor: pointer;
}
.y-display:hover {
cursor: pointer;
}
.a-display:hover {
cursor: pointer;
}
.b-display:hover {
cursor: pointer;
}
.a-slider{
width:60%;
}
.b-slider{
width:60%;
}
.point-number{
width:20%;
}
div.data-table-main{
overflow-x: hidden;
overflow-y: auto;
width:100%;
height:341px;
}