-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopupstructor.html
61 lines (54 loc) · 1.19 KB
/
popupstructor.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div#container {
width: 300px;
}
div#title {
height: 50px;
background-color: green;
text-align: center;
line-height: 50px;
font-size: 26px;
}
div#content {
height: 300px;
background-color: blue;
}
div#footer {
height: 50px;
background-color: red;
display: flex;
}
#footer div {
width: 33%;
text-align: center;
line-height: 50px;
}
</style>
</head>
<body>
<div id="container">
<div id="title">DBC's Text Manager</div>
<div id="textmanager">
<div id="content">Content</div>
<div id="footer">
<div id="clear">
<input type="button" value="清空" id="btn_clear" />
</div>
<div id="import">
<input type="button" value="存储" id="btn_import" />
</div>
<div id="export">
<input type="button" value="导出" id="btn_export" />
</div>
</div>
</div>
<div id="searchManager"></div>
</div>
</body>
</html>