-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
84 lines (72 loc) · 1.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<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">
<title>IND Checker</title>
<style>
body {
padding: 5px;
}
.box {
width: 300px;
min-height: 300px;
border-radius: 10px;
margin: auto;
padding: 10px;
}
#txtCompanyName {
padding: 10px 15px;
border: none;
width: 65%;
background-color: #f5f5f5;
}
#txtCompanyName:focus{
outline: none;
}
#btnSearch {
padding: 5px;
border: none;
background-color: #f5f5f5;
}
* {
margin: 0;
}
.searchBox {
border-top-right-radius: 10px;
border-top-left-radius: 10px;
background-color: #f5f5f5;
padding: 10px;
}
.link{
text-decoration: none;
padding: 5px;
display: inline-block;
width: 100%;
}
.link:hover{
cursor: pointer;
color: brown;
background-color: skyblue;
border-radius: 5px;
}
#btnSearch:hover{
cursor: pointer;
color: brown;
}
</style>
</head>
<body>
<div class="box">
<div class="searchBox">
<input type="text" placeholder="Company Name" id="txtCompanyName">
<button type="button" id="btnSearch">Search</button>
<hr/>
<div id="pr">
</div>
</div>
</div>
<script src="./popup.js"></script>
</body>
</html>