-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainframe.html
43 lines (38 loc) · 1.09 KB
/
mainframe.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
<!DOCTYPE html>
<html>
<head>
<style>
html, body {height:100%;width:100%;overflow:hidden;}
iframe {height:100%;width:100%; overflow:hidden; }
input[type=text] {
width: 130px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 6px;
font-size: 16px;
background-color: white;
background-repeat: no-repeat;
padding: 12px 5px 10px 5px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}
input[type=text]:focus {
width: 100%;
border-color: #00ffff;
border-radius: 6px;
}
</style>
</head>
<body>
<div style="overflow:hidden; padding-bottom:5px;">
<div>
<input type="text" name="search" id="search_box" style="height:30px;min-width:90%;max-width:90%;float: left;" padding-left="5px" placeholder="">
</div>
<div style="float: left;padding-left: 5px;">
<img id="go_button" src="images/search.png" height="30px" width="30px">
</div>
</div>
<iframe id="lp" src="landup_page.html" ></iframe>
<script type="text/javascript" src="js/mainframe_content.js"></script>
</body>
</html>