-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
61 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
<!DOCTYPE html>
<html>
<head>
<title>Summarize Website</title>
<style>
body {
font-family: 'Arial', sans-serif;
padding: 0px 16px;
width: 600px;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #252525;
}
button {
padding: 12px 12px;
background-color: #098b75;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #096954;
}
#summary {
margin-top: 16px;
overflow-y: auto;
width: 100%;
height: calc(100% - 100px);
padding: 12px;
background-color: #3f3f3f;
border-radius: 8px;
color: white;
font-size: 16px;
line-height: 1.3;
}
#summary::-webkit-scrollbar {
display: none;
}
</style>
</head>
<body>
<button id="summarize-button">Summarize this page</button>
<div id="summary"></div>
<script src="popup.js"></script>
</body>
</html>