-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
66 lines (57 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Walmart Invoice Exporter</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 15px;
background-color: #f8f9fa;
color: #333;
width: fit-content;
height: fit-content;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
h2 {
font-size: 2em;
margin-bottom: 10px;
}
.lead {
font-size: 1.2em;
margin-bottom: 20px;
}
button {
background-color: #007bff;
border: none;
color: white;
padding: 10px 24px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h2>Walmart Invoice Exporter</h2>
<p class="lead">Get your order invoice in xlsx format.</p>
<button id="downloadInvoice">Download Invoice</button>
</div>
<script src="popup.js"></script>
</body>
</html>