-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
35 lines (33 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>Tusmo Solver</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="popup.css" />
</head>
<body>
<h1 class="w-full text-center">Tusmo Solver</h1>
<label class="toggle" for="enable">
<input type="checkbox" class="toggle__input" id="enable" />
<span class="toggle-track">
<span class="toggle-indicator">
<!-- This check mark is optional -->
<span class="checkMark">
<svg
viewBox="0 0 24 24"
id="ghq-svg-check"
role="presentation"
aria-hidden="true"
>
<path
d="M9.86 18a1 1 0 01-.73-.32l-4.86-5.17a1.001 1.001 0 011.46-1.37l4.12 4.39 8.41-9.2a1 1 0 111.48 1.34l-9.14 10a1 1 0 01-.73.33h-.01z"
></path>
</svg>
</span>
</span>
</span>
<span class="label" id="enabled-label">Désactivé</span>
</label>
<script src="popup.js"></script>
</body>
</html>