-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 923 Bytes
/
index.html
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
<html>
<head>
<title>UCDFS Telemetry Configuration</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"\>
<style>
body {
position: relative;
}
a {
display: block;
width: 50%;
margin: 5px auto;
border: 1px solid black;
line-height: 30px;
text-align: center;
font-size: 16px;
font-weight: bold;
text-decoration: none;
background-color: #ddd;
color: black;
}
.buttons {
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
</style>
</head>
<body>
<div class="buttons">
<a href="/">Default</a>
<a href="/accelerometer">Accelerometer</a>
<a href="/brake">Brake Temp</a>
<a href="/gps">GPS</a>
<a href="/telemetry">Telemetry</a>
<a href="/temperature">Temperature</a>
<a href="/wheel_speed">Wheel Speed</a>
</div>
</body>
</html>