-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
49 lines (49 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>Youtube Transcript Summariser</title>
<style>
h1 {
text-align: center;
}
body {
width: max-content;
max-width: 800px;
}
button {
background-color: red;
color: white;
border-radius: 8px;
width: max-content;
height: max-content;
padding: 10px;
font-size: large;
margin: auto;
display: block;
border-color: coral;
}
button[disabled] {
background-color: lightcoral;
color: white;
border-radius: 8px;
width: max-content;
height: max-content;
padding: 10px;
font-size: large;
margin: auto;
display: block;
border-color: lightpink;
}
p {
font-size: medium;
}
</style>
</head>
<body>
<h1>Youtube Transcript Summariser</h1>
<button id="summarise" type="button">Summarise</button>
<br/>
<p id="output"></p>
<script src="popup.js"></script>
</body>
</html>