-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (106 loc) · 2.05 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
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;300&display=swap');
* {
margin: 0;
padding: 0;
text-decoration: none;
box-sizing: border-box;
font-family: 'Be Vietnam Pro', sans-serif;
color: #2A313C;
}
body {
background-color: #efd3d7;
}
.tasks {
background-color: transparent;
}
.tasks-gray {
background-color: rgb(128 , 128 , 128);
}
.completed {
text-decoration: line-through solid rgb(0 , 0 , 0);
}
header {
margin: auto 10px;
}
h1 {
margin: 10px 40px;
font-size: 3rem;
padding: 10px 0;
}
#funcionamento {
margin: auto 40px;
font-size: 1.2rem;
padding: 10px 0;
}
#apaga-tudo , #remover-finalizados , #salvar-tarefas , #criar-tarefa , #remover-selecionado , #mover-cima , #mover-baixo {
font-size: 1.2rem;
padding: 10px 20px;
flex-grow: 5;
font-weight: 700;
color: white;
border-radius: 10px;
border: none;
opacity: 0.8;
}
#criar-tarefa {
background-color: #00043A;
}
#remover-selecionado {
background-color: #EB3F33;
flex-basis: 10px;
}
#mover-cima, #mover-baixo {
background-color: #886F9B;
flex-basis: 10px;
}
#salvar-tarefas {
background-color: #279057;
}
#apaga-tudo {
background-color: #EB3F33;
}
#remover-finalizados {
background-color: #886F9B;
}
#apaga-tudo:hover , #remover-finalizados:hover , #salvar-tarefas:hover , #criar-tarefa:hover , #remover-selecionado:hover , #mover-cima:hover , #mover-baixo:hover {
opacity: 1;
}
.containers {
display: flex;
flex-direction: column;
height: 120px;
margin: auto;
}
.container-buttons {
display: flex;
align-items: center;
gap: 20px;
width: 60%;
height: 50px;
margin: 10px 40px;
}
.container-input {
display: flex;
align-items: center;
gap: 6px;
width: 60%;
height: 50px;
margin: auto 40px;
}
#texto-tarefa {
flex-basis: 400px;
font-size: 1rem;
flex-grow: 1;
font-weight: 700;
border-radius: 10px;
padding: 10px 20px;
}
#lista-tarefas {
display: flex;
flex-wrap: wrap;
flex-direction: column;
margin: 10px 60px;
padding: 0 10px;
font-size: 1.4rem;
width: 60%;
}