-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 867 Bytes
/
index.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 lang="en">
<head>
<meta charset="UTF-8" />
<title>Search Form</title>
<style>
* {
font-size: 16px;
box-sizing: border-box;
}
body {
position: relative;
width: 100%;
margin: 0;
padding: 0;
}
.search-form {
padding: 20px;
}
.sp {
position: fixed;
width: 100%;
left: 0;
right: 0;
top: 0;
bottom: 0;
border: 5px solid black;
background-color: #e0e0e0;
z-index: 2;
}
input[type='text'] {
display: block;
padding: 10px;
width: 100%;
background-color: transparent;
border: 1px solid #ddd;
}
</style>
</head>
<body>
<div id="root"></div>
</body>
</html>