-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitor.html
93 lines (81 loc) · 1.27 KB
/
monitor.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE HTML>
<html>
<head>
<title>ShakeMonitor v1.0</title>
<style type = "text/css">
html
{
height: 100%;
body: 100%;
}
body
{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
border: 0;
}
.banner_div
{
height: 20%;
width: 100%;
margin: 0;
border: 0;
padding: 0;
background-color: linear-gradient(rgb(40, 45, 30), rgb(31, 38, 18));
}
.tlbr_item
{
border-width: 1px;
border-style: solid;
border-color: rgb(224,182,13);
background-color: rgb(224,182,13);
display: block;
text-align: center;
height: 50%;
float: left;
margin: 0;
margin-top: 5%;
}
.tlbr_opt
{
text-align: center;
margin: auto;
}
.tlbr_item:hover
{
border-width: 1px;
border-style: solid;
border-color: rgb(0,0,0);
}
#toolbar_id
{
border: 0;
margin: 0;
margin-left: auto;
margin-right: auto;
padding: 0;
width: 50%;
height: 100%;
list-style-type: none;
}
#dynamic_content_div
{
height: 80%;
width: 100%;
margin: 0;
border: 0;
padding: 0;
}
</style>
</head>
<body>
<div class="banner_div"><ul id="toolbar_id">
<li class="tlbr_item"><a class="tlbr_opt">Check Station Status</a></li>
<li class="tlbr_item"><a class="tlbr_opt">View Past Data</a></li>
<li class="tlbr_item"><a class="tlbr_opt">Realtime View</a></li>
</ul></div>
<div id="dynamic_content_div"></div>
</body>
</html>