-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathstyle.css
153 lines (125 loc) · 1.95 KB
/
style.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
@import url("d3/lib/jquery-ui/jquery-ui.css");
body {
background-color: #ededed;
font-size: 16px;
font-family: 'Ovo', helvetica, sans-serif;
font-weight: 400;
}
h1 {
display: block;
font-size: 3em;
font-family: 'Open Sans';
font-weight: 300;
margin-bottom: 0.3333333em;
margin-top: 0.333333em;
}
h2 {
display: block;
font-size: 1.3333333em;
font-family: 'Open Sans';
font-weight: 700;
margin-bottom: 0.3333333em;
margin-top: 0.5em;
}
p {
margin-bottom: 1em;
}
h1 strong {
font-weight: 400;
}
strong {
/* font-family: 'Open Sans';*/
font-weight: 600;
/* font-size: 0.91em;*/
}
.sans {
font-family: 'Open Sans';
font-weight: 700;
font-size: 0.8em;
}
div.2ndRow {
margin-top: 20px;
}
p.caption {
font-family: 'Open Sans';
font-weight: 700;
font-size: 0.8em;
}
p.note {
font-family: 'Open Sans';
font-weight: 600;
background-color: #EDE6B2;
border-radius: 15px;
font-size: 0.8em;
padding: 15px;
}
.border {
border: solid black 1px;
}
hr {
height: 1px;
background-color: #ccc;
margin: 15px;
}
#dataSets .active {
color: #fff;
background-image: url('tile16.png');
}
#dataSets div {
border-radius: 4px;
margin: 2px;
padding: 2px 8px 2px 8px;
}
#dataSets button {
margin-left: 120px;
}
#sliderRadius, #sliderDistance {
margin-top: -10px;
}
div.msg {
width: 200px;
/* height: 40px;*/
position: fixed;
top: 10px;
left:50%;
margin-left: -100px;
background-color: #FFE736;
border-radius: 10px;
padding: 10px;
color: #fff;
text-align: center;
vertical-align: center;
font-family: 'Open Sans';
font-weight: 700;
}
div.math {
padding: 20px;
}
/*SVG styles*/
line {
stroke: black;
/* shape-rendering: crispEdges;*/
}
.back {
fill: #fff;
stroke: #000;
stroke-width: 2px;
shape-rendering: crispEdges;
}
#plot-scatter circle {
fill: red;
opacity: 0.5;
}
.axis path, .axis line {
fill: none;
stroke: #ccc;
shape-rendering: crispEdges;
}
path {
fill: none;
stroke: #000;
}
circle.iso {
fill: #ddd;
opacity: 0.5;
}