-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
64 lines (44 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>To Do List</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
darkpurple: '#251233',
lightpurple: '#A650DF',
purple: '#3B1B4D',
yellow: '#FFCE07',
}
}
}
}
</script>
</head>
<body>
<div class="container px-3 py-5 w-auto flex flex-col">
<div class="insert-form flex flex-col items-center text-center p-0">
<h1 class=" font-bold text-xl h-10 text-purple">Lista de Tarefas</h1>
<input type="text" class="rounded h-auto my-20 mx-0 p-4 my-8 outline outline-1 outline-lightpurple" id="inputText">
<button class="bg-darkpurple rounded text-white h-auto py-4 font-bold my-1" id="btnInsert">Inserir Tarefa</button>
<button class="bg-yellow rounded text-darkpurple h-auto py-4 font-bold my-4" id="btnRemoveAll">Remover Todas as Tarefas</button>
</div>
<div class="list-container flex flex-col items-start mt-2">
<ul class="texto-padrao justify-start" id="listItems">
<!-- <li class="item-lista">Teste de Item Pendente</li>
<li class="item-lista completo">Teste de Item Completo</li> -->
</ul>
</div>
</div>
</body>
</html>