-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (67 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>Epic Highlighter</title>
<style>
body {
width: 200px;
background-color: #f7fafc;
padding: 5px;
min-width: 250px;
margin: 0 10;
border-radius: 20px;
}
.text-center {
text-align: center;
}
.flex {
display: flex;
flex-direction: column;
}
.mb-4 {
margin-bottom: 16px;
}
.text-lg {
font-size: 1.125rem;
font-weight: bold;
}
.text-sm {
font-size: 0.875rem;
color: #718096;
}
.btn {
display: block;
width: 100%;
padding: 8px 16px;
margin: 8px 0;
background-color: #e2e8f0;
border-radius: 5px;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #cbd5e0;
}
.buttons {
display: flex;
gap: 8px;
align-items: center;
}
</style>
</head>
<body>
<div class="text-center">
<h1 class="text-lg">Epic Highlighter</h1>
<p class="text-sm">A raccoon custom extension</p>
</div>
<div class="space-y-2">
<div class="buttons">
<button id="prev-button" class="btn">Previous</button>
<button id="next-button" class="btn">Next</button>
</div>
<button id="auto-button" class="btn">Toggle Auto</button>
</div>
<script src="js/popup.js"></script>
</body>
</html>