-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
60 lines (49 loc) · 1.28 KB
/
Copy pathpopup.html
File metadata and controls
60 lines (49 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
html,body {
width: 620px;
padding:0;
font-family:arial;
font-size:15px;
}
body {margin: 0;text-size-adjust: 100%; }
*, *::after, *::before { box-sizing: border-box;}
a{ font-weight:500; text-decoration:none; display:block;color:#000; margin-bottom:5px; border-bottom:#EEE 1px solid}
h1, h2 {
border-bottom: 1px solid;
}
img{ width:18px; cursor:pointer; margin-left:5px;}
.flex {display: flex; flex-wrap: wrap;justify-content: center;}
.flex > .col {flex: 1 1 0;text-align: center;display: flex;flex-direction: column;align-items: center;max-width: 380px;margin: 8px;}
.flex a{font-size:12px;}
.outer{ margin: 15px 15px; padding:0;}
.header{ font-size:16px; border-bottom:1px solid #000;}
.header .txt{font-size:24px;}
.header #asn a{display: inline-block;}
.header #asn img.copy{ float:left}
</style>
</head>
<body>
<div class="outer">
<div style="float:right;" id="version"></div>
<div class="header">
<span class="txt">ASN: </br></span>
<span id="asn"></span>
</div>
<div class="flex">
<div class="col">
<h3>ASN</h3>
<div id="asns"></div>
</div>
<div class="col">
<h3>Requests</h3>
<div id="ips"></div>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>