-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
75 lines (52 loc) · 1.12 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
<!doctype html>
<html>
<head>
<title>Search Subscriptions</title>
<script src="auth.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="common.min.css">
<link rel="stylesheet" type="text/css" href="browser_action.min.css">
<style>
body{
background-color: #e2e2e2;
}
p {
font-size: 150%;
}
.video {
margin-top: 10px;
margin-bottom: 10px;
}
.videoImage {
width: 600px;
float: left;
color: green;
}
.videoText{
color: yellow;
font-size: 15px;
}
.videoThumb{
width: 150px;
float: left;
}
.video2{
margin-top: 10px;
margin-bottom: 10px;
background-color: white;
}
</style>
</head>
<body>
<basefont face="roboto">
<input type=text id = "query-field"></text>
<button id="button" type="button" class="btn btn-primary">Search Subscriptions</button>
<div id = "display" style="font-size:100%;">
<p id="demo"></p>
</div>
<div class="footer">
<!--©-->
<span id="year">© 2017</span> Kenneth Wu
</div>
</body>
</html>