-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
86 lines (79 loc) · 1.31 KB
/
index.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
body {
margin: 0;
overflow-x: hidden; /* hide x scrollbar */
}
header {
color: white;
background-color: #fc4c02;
padding: 3px;
position: sticky;
top: 0;
}
header h3 {
margin: 0;
}
header img {
height: 30px;
width: 30px;
}
:focus {
border: 1px solid red;
}
.page {
width: 240px;
position: absolute;
}
img.map {
position: absolute;
left: 0;
}
img.map.recording {
top: 124px;
}
img.map.prerecord {
top: 31px;
}
footer.softkey-cont {
position: fixed;
bottom: 0;
left: 0;
width: 240px;
display: none;
text-align: center;
z-index: 2
}
.active footer.softkey-cont {
display: block;
}
footer.softkey-cont span {
background-color: rgba(200, 200, 200, 1);
}
footer.softkey-cont span.left {
border-top-right-radius: 13px;
float: left;
padding-left: 2px;
padding-right: 7px;
}
footer.softkey-cont span.center {
border-top-left-radius: 13px;
border-top-right-radius: 13px;
padding-left: 7px;
padding-right: 7px;
}
footer.softkey-cont span.right {
border-top-left-radius: 13px;
float: right;
padding-left: 7px;
padding-right: 2px;
}
.activity h4 {
margin-bottom: 0;
}
table.stats {
width: 100%;
text-align: center;
border-collapse: collapse;
}
.dist, .time {
font-size: 50px;
}