-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
40 lines (40 loc) · 877 Bytes
/
Copy pathpopup.html
File metadata and controls
40 lines (40 loc) · 877 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Archive.ph Extension</title>
<style>
body {
width: 250px;
padding: 10px;
font-family: Arial, sans-serif;
text-align: center;
}
button {
width: 100%;
padding: 10px;
margin: 8px 0;
border: none;
border-radius: 4px;
background-color: #B40010;
color: white;
font-size: 14px;
cursor: pointer;
}
button:hover {
background-color: #96000d;
}
.search-btn {
background-color: #1D2D40;
}
.search-btn:hover {
background-color: #15202b;
}
</style>
</head>
<body>
<button id="archiveBtn">Archive Current Page</button>
<button id="searchBtn" class="search-btn">Search Archive</button>
<script src="popup.js"></script>
</body>
</html>