-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
66 lines (59 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
padding: 0;
min-width: 620px;
min-height: 720px;
overflow-x: scroll;
font-family: Helvetica, sans-serif;
font-size: 12px;
background-color: #F8F8F8;
}
input, textarea {
width: 420px;
height: 420px;
}
input#save {
font-weight: bold; width: auto;
}
h1 {
background-color: #30CEF6;
color: white;
font-size: 24px;
font-weight: bold;
margin: 0;
padding: 5px;
}
p {
color: black;
font-size: 16px;
padding-left: 10px;
padding-right: 10px;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<h1> <div>
<span id="title"></span>
</div> </h1>
<p><small>Read Time: <ins id="readTime"></ins> min</small></p>
<p><small>Article of
<ins id="article_count"></ins> sentences reduced to
<ins id="summary_count"></ins>
</small></p>
<p><small>Summary Size: </small>
<select id="selected" autofocus>
<option value=".2">Small</option>
<option value=".4" selected="selected">Medium</option>
<option value=".6">Large</option>
</select></p>
<p><label for="summary"><strong>Summary</strong></label>
<p id="summary" name="summary" rows="6" cols="35"></p>
<p><label for="summary"><strong>Article Themes</strong></label>
<p id="wordCounts" name="word count" rows="6" cols="35"></p>
</body>
</html>