-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (52 loc) · 1.87 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="https://cdn-icons-png.flaticon.com/128/4315/4315445.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="src/output.css" />
<title>ToDo</title>
</head>
<body>
<div
id="page"
class="mx-auto w-1/2 space-y-5 rounded-lg bg-[url('../assets/office.jpg')] bg-contain bg-fixed bg-center p-10"
>
<div class="flex items-center justify-between">
<h1 class="text-3xl font-bold text-white">ToDo</h1>
<form class="flex items-center" id="form" action="">
<input
class="rounded-bl-lg rounded-tl-lg border-none bg-gray-100 bg-opacity-50 px-5 py-2 outline-none backdrop-blur-md"
type="text"
name=""
id="input"
/>
<input
class="rounded-br-lg rounded-tr-lg bg-white px-5 py-2 text-black transition-all duration-100 hover:bg-gray-800 hover:text-white"
type="submit"
value="Create task"
/>
</form>
</div>
<ul
class="space-y-3 rounded-lg bg-white bg-opacity-45 p-5 backdrop-blur-md"
id="list"
>
<!-- <li id="1" class="flex items-center justify-start gap-2 px-3 py-1">
<img src="./src/assets/pen.png" alt="" class="size-8" />
<span id="task" class="mr-auto w-full rounded-lg bg-white px-5 py-2"
>Learn to play guitar</span
>
<img src="./src/assets/check.png" class="size-8" alt="" />
<img src="./src/assets/delete.png" class="size-8 opacity-70" alt="" />
</li> -->
<img src="./assets/welcome.png" alt="" class="mx-auto">
</ul>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>