-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
51 lines (51 loc) · 1.13 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
<!doctype html>
<html>
<head>
<title>Quick Window</title>
<script src="popup.js"></script>
<style>
html {
background-color: #333333;
border-left: 2px solid #FFFFFF;
border-right: 2px solid #FFFFFF;
color: #F2F2F2;
}
iframe {
min-width: 750px;
min-height: 500px;
}
#top_query {
width: 100%;
margin-left: 50%;
transform: translateX(-50%);
}
#frame_url {
margin-bottom: 10px;
width: 89%;
text-align: center;
float: left;
}
#load_url {
float: left;
width: 19%;
}
img#load_url,
img#incognito {
float: left;
max-height: 20px;
width: auto;
margin-left: 1%;
}
</style>
</head>
<body>
<div id="top_query">
<input id="frame_url" type="url">
<img id="load_url" src="search.png">
<img id="incognito" src="incognito.png">
</div>
<div>
<iframe id="frame_id" src="about:blank" frameborder="0"></iframe>
</div>
</body>
</html>