forked from ahupowerdns/protocol-camel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 1.46 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
<!doctype html>
<meta charset="utf-8">
<html>
<head>
<script src="ext/d3/d3.min.js"></script>
<style>
html {
font-family: "Arial", Verdana, sans-serif;
}
body {
background: white;
color: black;
max-width: 80em;
margin: 0.5em 1em;
}
label {
font-size: small;
}
th {
background: navy;
color: white;
}
td, th {
padding: 0.5em 1em;
}
tr:nth-child(even) { background: #eef }
tr:nth-child(odd) { background: #fff }
tr:hover { background: gold }
label {
cursor: pointer;
}
input[type="checkbox"] {
cursor: pointer;
}
</style>
<link rel="shortcut icon" href="camel.png" type="image/png">
<title>Mail Camel</title>
</head>
<body>
<a href="https://github.com/ahuPowerDNS/protocol-camel"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<p>
🐫 Welcome to the Mail Camel Viewer! Please see <a href="https://github.com/ahuPowerDNS/dns-camel">GitHub</a> for what this is & how to contribute.
</p>
<table width="75%"><tr><td>
<div id="selector"></div></td></tr></table>
<p id="main"></p>
<div id="table"></div>
<p></p>
<span id="json"></span>
<script src="camel-main.js"></script>
</body>
</html>