forked from aesthetic/wii-shop-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
54 lines (46 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<title>Wii Shop Channel Music - Settings</title>
<style>
html,
body {
width: 300px;
}
select {
overflow: auto;
}
.btn-wii {
background: linear-gradient(to bottom, #f5fafe 0%,#fdfdfe 7%,#f2fdff 81%,#e8f3f8 86%,#e7f2f6 89%,#e4f0f3 93%,#ddeff0 100%);
border: 1px solid #34bfed;
}
.btn-wii:active {
background: linear-gradient(to top, #f5fafe 0%,#fdfdfe 7%,#f2fdff 81%,#e8f3f8 86%,#e7f2f6 89%,#e4f0f3 93%,#ddeff0 100%);
}
</style>
</head>
<body>
<div class="container-fluid">
<button class="btn btn-sm btn-wii mt-3 w-100" id="music-toggle">...</button>
<div class="form-text">You may need to switch tabs for this to take effect.</div>
<label for="music-picker" class="mt-2 form-label">Music picker</label>
<select id="music-picker" multiple size="6" class="form-select w-100" multiple>
<option value="wii-shop-theme">Wii Shop Channel</option>
<option value="wii-shop-banner-theme">Wii Shop Channel (Menu)</option>
<option value="wii-u-eshop-theme">Wii U eShop</option>
<option value="3ds-eshop-theme">3DS eShop</option>
<option value="dsi-shop-theme">DSi Shop</option>
<option value="coconut-mall">Coconut Mall</option>
</select>
<div class="mt-2">More stuff</div>
<button class="btn btn-sm btn-wii mt-2 w-100" data-link="https://discord.com/invite/59wfy5cNHw">Join Discord server</button>
<button class="btn btn-sm btn-wii mt-2 mb-3 w-100" data-link="https://github.com/corbindavenport/wii-shop-extension/">GitHub repository</button>
</div>
<script src="js/bootstrap.min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>