forked from LiamHarrison25/Jambofy-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
50 lines (39 loc) · 2.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="US-ASCII">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jambofy Extension</title>
<link rel="stylesheet" href="bulma.min.css" />
</head>
<body style="background-color:lightblue">
<div class="container m-2">
<h1 style="color:darkorange; font-family: 'Niagara Engraved', sans-serif, inherit; "> Jambofy Extension 🐈 </h1>
<!-- Buttons for toggling the cats-->
<div class="field">
<label class="label"> Toggle Cats ⌊ 😼 ⌋</label>
<span class="tag is-outlined is-medium is-primary" id="enable"> Enabled</span>
<span class="tag is-outlined is-medium is-danger" id="disable">Disabled</span>
</div>
</div>
<!-- Dropdown for the cat opacity-->
<div class="container m-2">
<div class="field">
<label class="label"> Change cat opacity </label>
<div class="select">
<select id="opacity" style="border-color: darkorange; background-color: lightslategrey; --bulma-active-background-l-delta: hsl(0, 0%, 96%); --bulma-dropdown-divider-background-color: hsl(0, 0%, 96%)" >
<option value="100" style="background-color: darkslateblue; " > 100%</option>
<option value="75" style="background-color: slateblue"> 75%</option>
<option value="50" style="background-color: mediumslateblue"> 50%</option>
<option value="25" style="background-color: cornflowerblue"> 25%</option>
</select>
</div>
</div>
</div>
<!-- <h3 style="color:darkslategray; font-family: sans-serif, inherit; "> ⌊ 😼 ⌋</h3> <!– NOTE: for disabled feedback: &# 128575 –>-->
<!-- <button id="ToggleButton" style=" background-color: lavender; border-color: darkorange; scale: inherit; align-content: center">Toggle Cats</button>-->
<!-- <h3 style="color:darkslategray">Cat Opacity</h3>-->
</body>
<script src="popup.js"></script>
</html>
</docutypehtml>