-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.html
103 lines (89 loc) · 3.21 KB
/
app.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
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html class="maxheight">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>BitGo - Indexer Health Dashboard</title>
<link rel="shortcut icon" href="https://www.bitgo.com/marketing/img/favicon.1bb1319a26df959d.png">
<!-- jQuery and app.js includes -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/app.js"></script>
<!-- App css -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="assets/css/icons.css" rel="stylesheet" type="text/css" />
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
<style>
th{
font-weight: bold;
font-size: 17px;
}
.ta-r{
text-align: right;
}
a{
color: #555;
}
i{
font-size: 24px !important;
}
.mdi-checkbox-marked-circle{
color: limegreen !important;
}
.mdi-alert-circle{
color: red !important;
}
.wrapper{
padding-top: 70px !important;
}
</style>
</head>
<body class="maxheight">
<!-- Navigation Bar-->
<header id="topnav">
<div class="topbar-main">
<div class="container-fluid">
<!-- Logo container-->
<div class="logo">
<img src="assets/images/indexer-health-logo.png" height="34" class="logo-large" />
</div>
<!-- End Logo container-->
<!-- Menu-extras -->
<div class="menu-extras topbar-custom float-right mt-4 mr-2" style="color: #fff; font-size: 13px;">
<!-- Updated every 2 minutes and verified against public block explorers. -->
<a style="color:#fff;" href="https://medium.com/@cooncesean/exploring-serverless-architecture-3a5e5b10f335" target='_blank'>(BETA) Last updated <span id="js-lastUpdated"></span></a>
</div>
<!-- end menu-extras -->
<div class="clearfix"></div>
</div> <!-- end container -->
</div>
<!-- end topbar-main -->
</header>
<!-- End Navigation Bar-->
<!-- Main content + table Start -->
<div class="wrapper maxheight">
<div class="row col-lg-12">
<div class="container-fluid maxheight">
<div class="card m-b-30 maxheight">
<div class="card-body maxheight">
<table id="js-statusTable" class="table maxheight">
<thead class="thead-default">
<tr style="text-align: center;">
<th>Coin</th>
<th style="width:31%;">PROD</th>
<th style="width:31%;">TEST</th>
<th style="width:31%;">DEV</th>
</tr>
</thead>
<tbody>
<!-- dynamically populated -->
</tbody>
</table>
</div> <!-- end cardbody -->
</div> <!-- end card -->
</div> <!-- end container -->
</div> <!-- end row col -->
</div> <!-- end wrapper -->
</body>
</html>