forked from hjk789/NXEnhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (57 loc) · 1.71 KB
/
popup.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
<html style="user-select: none; width: 430px; height: 500px; font-family: Segoe UI;">
<style>
body > div { padding: 5px 5px; }
span { font-size: 15px; }
#open-website {
background: #eee;
border-radius: 15px 15px 0px 0px;
}
#open-website > div {
padding: 5px;
width: max-content;
inset: 0;
margin: auto;
}
#open-website div div:hover {
background: #0063cd;
}
#open-website div div {
border-radius: 10px;
padding: 8px 20px;
font-size: 15px;
background: #007bff;
color: white;
font-weight: bold;
cursor: pointer;
margin-top: 1px;
transition: background 0.10s;
}
a {
text-decoration: none;
color: inherit;
}
iframe {
height: 375px;
width: 396px;
padding-left: 5px;
margin-top: 10px;
border: 2px solid #f2f2f2;
border-left: 2px solid #f8f8f8;
border-right: 2px solid #f8f8f8;
border-radius: 20px;
}
</style>
<body style="border: 1px solid #eee; border-radius: 15px;">
<div id="open-website">
<div>
<a href="https://my.nextdns.io" target="_blank">
<div>Open NextDNS</div>
</a>
</div>
</div>
<div>
<span style="font-weight: 600;">Options</span><br>
<iframe src="options-page.html"></iframe>
</div>
</body>
</html>