-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
65 lines (62 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TỰ HỌC 247</title>
<style>
body {
width: 550px;
}
input#uid, input#bgUrl {
padding: 5px;
margin-bottom: 4px;
border: #673ab785 solid 1px;
border-radius: 3px;
}
button.btn-add {
float: right;
clear: both;
margin-bottom: 5px;
background: #13b519;
border: none;
color: #fff;
padding: 6px;
font-weight: bold;
cursor: pointer;
border-radius: 3px;
}
ul#list {
list-style-type: none;
padding-left: 0;
font-size: 16px;
margin: 0;
}
ul#list li {
margin: 4px 0;
background: #f5f5f5;
padding: 5px;
border-radius: 4px;
border: #2196f32e solid 1px;
}
span.delete{
float: right;
color: red;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<input type="number" placeholder="Nhập USER ID" id="uid">
<input type="text" placeholder="Nhập link hình nền" id="bgUrl" style="width: 54%;">
<button class="btn-add">THÊM</button>
<div class="list">
<ul id="list">
</ul>
</div>
<span style="float:right">Code by HUYNH NHỌN</span>
</div>
<script src="lib/jquery-2.1.3.min.js"></script>
<script src="popup.js"></script>
</body>
</html>