-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
67 lines (59 loc) · 1.37 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>
<meta charset="UTF-8">
<style>
body {
width: 300px;
font-family: Arial, sans-serif;
margin: 0;
padding: 15px;
box-sizing: border-box;
background-color: #f8f8f8;
}
h1 {
font-size: 20px;
color: #4a4a4a;
margin-bottom: 10px;
text-align: center;
}
p {
font-size: 16px;
color: #4a4a4a;
margin-bottom: 5px;
}
.notice {
font-size: 12px;
color: #4a4a4a;
margin-bottom: 5px;
text-align: center;
}
select {
width: 100%;
padding: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #ffffff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Buff Currency Converter</h1>
<p>Current Currency:</p>
<select id="currencySelect">
<!-- Add your currency options here -->
</select>
<script src="src/popup.js"></script>
<p class="notice">Note the exchange rates update every 24 hours.</p>
<footer>
<p class="notice">Made with ❤️ by tevxn | <a
href="https://github.com/cadecuddy/buff-currency-converter/blob/main/CHANGELOG.md">CHANGELOG</a></p>
</footer>
</body>
</html>