-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (46 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Address Renamer</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
width: 300px;
margin: 0;
padding: 16px;
background-color: #f3f4f6;
}
h2 {
color: #1f2937;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}
button {
background-color: #3b82f6;
color: white;
border: none;
padding: 0.5rem 1rem;
font-size: 0.875rem;
font-weight: 500;
border-radius: 0.375rem;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #2563eb;
}
button:focus {
outline: 2px solid #60a5fa;
outline-offset: 2px;
}
</style>
</head>
<body>
<h2>Address Renamer</h2>
<button id="resetButton">Reset All Changes</button>
<script src="popup.js"></script>
</body>
</html>