-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
executable file
·73 lines (61 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<style>
.container {
max-height: 600px;
min-height: 300px;
width: 250px;
background: white;
}
html {
font-family: verdana, sans-serif;
font-size: 11pt;
}
body {
width: 250px;
}
body>h1 {
text-align: center;
}
h2 {
color: rgb(132, 0, 255);
margin-bottom: 0;
font-size: 14pt;
}
a:link {
color: dodgerblue;
}
h2+a:link {
font-weight: bold;
}
h3 {
margin-top: 0;
margin-bottom: 0;
font-size: 10pt;
}
p {
margin: 0;
}
output h1 {
background-color: rgb(132, 0, 255);
text-indent: 5px;
color: white;
font-size: 18pt;
}
</style>
</head>
<body>
<div class='container'>
<output>Loading...</output>
<template>
<h2></h2>
<h3></h3>
<a href='#'></a>
<p></p>
</template>
</div>
<script src='/scripts/rss.js' type='text/javascript' defer></script>
<script src='/scripts/extension.js ' type='text/javascript '></script>
</body>
</html>