-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (88 loc) · 1.56 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 5% 5%;
background-color: #7a1ae1;
}
header {
display: flex;
justify-content: center;
align-items: center;
}
h1 {
color: #fff;
font-size: 35px;
}
main {
display: flex;
justify-content: center;
align-items: center;
}
footer {
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 15px;
}
input {
font-size: 20px;
color: #41183c;
width: 82%;
height: 50px;
border-radius: 10px;
padding: 2px 12px;
margin: 2px;
outline: none;
}
button {
width: 40px;
height: 40px;
border-radius: 10px;
margin: 3px 3px;
font-weight: bold;
background-color: #fff;
transition: 0.5s;
border: none;
cursor: pointer;
}
button:hover {
background-color: #970484;
color: #fff;
}
ul {
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
}
li {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
background-color: #fff;
color: #41183c;
font-weight: bold;
font-size: 25px;
padding: 12px;
margin: 5px 5px;
}
.conteudo {
max-width: 600px;
margin-top: 50px;
margin-bottom: 10%;
background-color: #e70dbf;
border-radius: 10px;
}
.input-tarefa {
margin: 10px;
}
.tarefa {
width: 100%;
padding: 5px;
}