-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (61 loc) · 1.08 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
body {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 14px;
color: #333;
}
circle {
fill: #ddd;
cursor: pointer;
}
.frame {
fill: none;
stroke: #000;
}
#tooltip {
height: 220px;
visibility: hidden;
margin-top: 150px;
}
#slider {
margin-top: 12px;
-webkit-appearance: none;
border-radius: 5px;
background: rgba(189, 214, 255, 0.36);
outline: none;
}
.force {
height: 20px;
position: relative;
}
.force .label {
width: 150px;
text-align: right;
color: black;
}
.force .bar {
height: 19px;
background-color: YellowGreen;
}
.force div {
display: inline-block;
}
.button-reset {
background-color: #06c2ff;
border-radius: 5%;
color: white;
padding: 10px 5px;
text-align: center;
font-weight: bold;
display: inline-block;
font-size: 15px;
}
.button-switch-visualization {
background-color: #ffa600;
border-radius: 5%;
color: white;
padding: 10px 5px;
text-align: center;
font-weight: bold;
display: inline-block;
font-size: 15px;
}