-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
140 lines (123 loc) · 2.98 KB
/
style.css
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* Importação de Fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Cedarville+Cursive&family=Poetsen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Cedarville+Cursive&family=Gochi+Hand&family=Poetsen+One&display=swap');
/* Estilos Gerais */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
/* Estilo do Rodapé */
footer {
display: flex;
background-color: #333;
color: #f0f0f0;
position: fixed;
bottom: 0;
height: 50px;
width: 100%;
border-top: 2px solid #1cebb7;
justify-content: center;
align-items: center;
}
/* Estilo do Cabeçalho */
header {
background-color: #333;
color: white;
padding: 1px 0;
text-align: center;
font-family: "Gochi Hand", cursive;
font-size: 22pt;
border-bottom: 5px solid #1cebb7;
}
/* Estilo do Conteúdo Principal */
main {
padding: 20px;
}
main p {
padding-bottom: 1vh;
}
/* Estilo do Contêiner de Tarefas */
.tarefas-container {
display: flex;
padding: auto;
}
/* Estilo do Campo de Entrada de Nova Tarefa */
#nova_tarefa {
background-color: rgb(187, 255, 235);
width: 100%;
height: 5.2vh;
font-size: 18pt;
font-family: monospace;
border: none;
border-bottom: 2px solid #1cebb7;
border-radius: 5px;
margin-right: 5px;
}
/* Estilo do Botão de Adicionar Tarefa */
#adicionar_tarefa {
height: 5.6vh;
font-size: 18pt;
font-weight: bold;
background-color: aquamarine;
border: none;
border-bottom: 2px solid #1cebb7;
border-radius: 5px;
}
#adicionar_tarefa:hover {
background-color: rgb(184, 243, 223);
border-top: 2px solid #1cebb7;
}
/* Estilo do Título da Lista de Tarefas */
.tarefas-titulo {
display: flex;
height: 50px;
width: 100%;
background-color: rgb(210, 255, 255);
border-radius: 5px;
justify-content: center;
align-items: center;
font-size: 24pt;
font-family: "Gochi Hand", cursive;
}
/* Estilo da Lista de Tarefas */
.tarefas-list {
background-color: #f0ffff;
padding: 10px;
border-radius: 5px;
}
/* Estilo de Cada Tarefa */
.tarefa {
display: flex;
align-items: center;
border-bottom: 1px dashed rgb(47, 43, 255);
justify-content: space-between;
padding: 25px 10px;
position: relative;
font-size: 16pt;
font-family: "Gochi Hand", cursive;
}
/* Estilo dos Ícones de Lixeira e Concluído */
.tarefa .fa-trash, .tarefa .fa-calendar-check-o {
display: none;
cursor: pointer;
margin-right: 10px;
}
.tarefa:hover .fa-trash, .tarefa:hover .fa-calendar-check-o {
display: inline;
}
/* Estilo do Conteúdo da Tarefa */
.tarefa-conteudo {
flex-grow: 1;
margin-left: 10px;
}
/* Estilo de Tarefa Concluída */
.tarefa-concluida {
background-color: #85faa0;
}
/* Estilo da Mensagem de Erro */
.mensagem-erro {
color: red;
margin-top: 10px;
}