-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (63 loc) · 1.26 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mybus</title>
</head>
<style>
.entirepage {
position:fixed;
padding:0;
margin:0;
top:0;
left:0;
width: 100%;
height: 100%;
}
.sidebar-left{
float:left;
width:15%;
height:100%;
/* background-color: red; */
}
.header {
float:left;
width:85%;
height:15%;
/* background: pink; */
}
.mainbody {
float:left;
width:85%;
height:85%;
/* background: yellow; */
}
.onerow {
float: left;
color: red;
font-size:800%;
height: 20%;
width: 100%;
/* background: red; */
}
</style>
<body>
<div class="entirepage">
<div class="sidebar-left">
<!-- <div id="sidebar-left">Left</div> -->
</div>
<div class="header">
<div id="time" style="font-size:400%;">????-??-?? ??:??:??</div>
<div id="err">Error counter = 0</div>
</div>
<div class="mainbody">
<div id="bus1" class="onerow">[??] ?? min</div>
<div id="bus2" class="onerow">[??] ?? min</div>
<div id="bus3" class="onerow">[??] ?? min</div>
<div id="bus4" class="onerow">[??] ?? min</div>
<div id="bus5" class="onerow">[??] ?? min</div>
</div>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>