-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (80 loc) · 1.68 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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
background-color: white;
display: flex;
align-content: center;
justify-content: center;
flex-direction: column;
align-items: center;
font-family: "Inter", sans-serif;
}
header {
display: flex;
align-content: center;
justify-content: center;
align-items: center;
}
main {
display: flex;
justify-content: center;
flex-direction: column;
align-content: center;
align-items: center;
width: 600px;
}
.addTarefa {
background-color: #f1f3f5;
width: 100%;
display: flex;
justify-content: space-between;
height: 50px;
border-radius: 10px;
align-items: center;
margin: 20px 0px;
}
input{
border: none;
background-color: #f1f3f5;
margin: 0px 15px;
padding: 2px 5px;
font-size: 15px;
}
.buttonPrincipal{
margin: 0px 15px;
padding: 1px 12px;
height: 25px;
background-color: #364fc7;
color: white;
border: none;
border-radius: 6px;
}
li{
margin: auto;
text-align: center;
}
.tarefa {
width: 100%;
display: flex;
background-color: #f1f3f5;
justify-content: space-between;
margin: 20px 0px;
height: 50px;
align-items: center;
border-radius: 10px;
}
ul{
width: 100%;
}
h1{
font-size: 40px;
margin: 10px 0px;
}
.buttonEscluir{
background-color: #dee2e6;
border-radius: 6px;
border: none;
margin: 0px 15px;
}
p{
margin: 0px 15px;
}