-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol-panel.html
53 lines (51 loc) · 1.49 KB
/
control-panel.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
<div id="curtain-control-panel">
<div id="curtain-control-panel-content">
<h3>Curtain Control</h3>
<label class="curtain-label">
<input type="checkbox" id="toggle-images" checked />
Images <i class="curtain-icon"></i>
</label>
<label class="curtain-label">
<input type="checkbox" id="toggle-backgrounds" checked />
Backgrounds <i class="curtain-icon"></i>
</label>
<label class="curtain-label">
<input type="checkbox" id="toggle-videos" checked />
Videos <i class="curtain-icon"></i>
</label>
<label class="curtain-label">
<input type="checkbox" id="toggle-svgs" checked />
SVGs <i class="curtain-icon"></i>
</label>
<label class="curtain-label">
<input type="checkbox" id="toggle-greyscale" />
Greyscale <i class="curtain-icon"></i>
</label>
<div id="curtain-control-buttons">
<a
id="curtain-donate"
href="https://www.paypal.com/donate/?hosted_button_id=C3P2E52UHSS74"
class="curtain-button"
target="_blank"
>
Buy me a coffee
</a>
</div>
<div id="curtain-close-panel" class="curtain-close-button">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
>
<path
d="M6 18L18 6M6 6l12 12"
stroke="white"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
</div>