-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (81 loc) · 3.17 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<script type="module" src="node_modules/flowbite/dist/flowbite.js"></script>
</head>
<body>
<div class="bg-gray-100 w-96 p-6 rounded-xl shadow-xl">
<header class="pb-4">
<div class="flex flex-row justify-center items-center">
<img
src="/images/logo.png"
alt="HandwritingFy"
class="w-8 h-8 shadow-sm"
/>
<p
class="p-2 text-xl font-bold text-center text-black-700"
style="font-family: xkcd"
>
HandwritingFy
</p>
</div>
<h3 class="text-gray-500 text-sm">
Make the webpages look like
<span class="font-bold">handwritten</span>.
</h3>
</header>
<div class="flex flex-col gap-y-3">
<select
id="select"
name="font families"
class="rounded-full my-4"
></select>
<div
class="flex flex-row justify-between border-gray-600 border rounded-full px-2 py-2"
>
<p>HandwritingFy texts</p>
<label
for="toggle-text"
class="inline-flex relative items-center cursor-pointer"
>
<input
type="checkbox"
value=""
id="toggle-text"
class="sr-only peer"
/>
<div
class="w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600"
></div>
</label>
</div>
<div
class="flex flex-row justify-between border-gray-600 border rounded-full px-2 py-2"
>
<p>HandwritingFy svg chart</p>
<label
for="toggle-svg"
class="inline-flex relative items-center cursor-pointer"
>
<input
type="checkbox"
value=""
id="toggle-svg"
class="sr-only peer"
/>
<div
class="w-11 h-6 bg-gray-200 peer-focus:outline-none peer-focus:ring-4 peer-focus:ring-blue-300 dark:peer-focus:ring-blue-800 rounded-full peer dark:bg-gray-700 peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all dark:border-gray-600 peer-checked:bg-blue-600"
></div>
</label>
</div>
<div
id="refresh"
class="shadow-sm py-2 mt-3 px-4 rounded-full border-black-100 border-2 text-white text-center bg-blue-700 hover:bg-blue-800 active:bg-blue-900"
>
<span class="font-bold">Refresh</span>
</div>
</div>
</div>
<script type="module" src="src/popup.js"></script>
</body>
</html>