-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (61 loc) · 1.42 KB
/
index.html
File metadata and controls
70 lines (61 loc) · 1.42 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Car</title>
<!-- <style type="text/css">
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
background-color: #1CA26C;
overflow: hidden;
}
.container{
width: 295px;
margin: 160px auto;
}
.fa{
padding: 26px 35px;
border-radius: 3px;
border: 1px solid #eeeeee;
font-size: 35px;
font-weight: bolder;
cursor: pointer;
float: left;
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.4);
margin: 0 5px;
color: #fff;
}
.fa:hover{
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.7);
}
.fa:first-of-type{
margin: 18px 100px;
display: block;
}
.stop{
width: 96%;
margin-top: 15px;
text-align: center;
}
</style> -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/public/style.css">
</head>
<body>
<div class="container">
<i class="fa fa-angle-up" id="forward"></i>
<i class="fa fa-angle-left" id="left"></i>
<i class="fa fa-angle-down" id="reverse"></i>
<i class="fa fa-angle-right" id="right"></i>
<i class="fa stop" id="stop">STOP</i>
</div>
</body>
<script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/1.3.6/socket.io.min.js"></script>
<script src="/public/client.js"></script>
</html>