-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
89 lines (74 loc) · 1.15 KB
/
styles.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
body {
font: 10px sans-serif;
}
path {
stroke: gray;
stroke-width: 0.5;
stroke-opacity: 0.3;
fill: none;
shape-rendering: geometricPrecision;
}
.sline {
stroke: black;
stroke-width: 2;
stroke-opacity: 0.6;
fill: none;
shape-rendering: geometricPrecision;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
stroke-width: 2px;
}
.dot {
stroke: #000;
}
.boundingCircle {
stroke: black;
stroke-width: 0.5;
stroke-opacity: 1.0;
stroke-dasharray: 5 3;
fill: none;
}
.heatmap-canvas {
opacity: 0.2;
position: absolute;
margin-left: 40px;
margin-top: 20px;
}
#heading {
padding: 20px 100px;
background-color: rgb(220, 220, 220);
text-align:center;
}
.block {
height: 100%;
padding: 10px;
}
.footstepchart {
height: 500px;
width: 500px;
}
.speedchart {
width: 300px;
height: 300px;
}
.colcell {
padding: 20px;
}
.videocontainer {
height: 200px;
}
.inputdiv {
width: 150px;
margin: 0 5px;
}
.inputdropdowndiv {
width: 100px;
margin: 0 5px;
}
.mylabel {
line-height: 25px;
}