-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (80 loc) · 1.54 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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
*{
padding: 0%;
margin: 0%;
box-sizing: border-box;
font-family: 'Bebas Neue', cursive;
}
.app{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #FC4245;
flex-direction: column;
}
.header{
display: flex;
flex-direction: column;
}
.main-title{
font-size: 50px;
text-align: center;
line-height: 3rem;
color: rgba(0, 0, 0, 0.568);
margin-bottom: 30px;
}
.lista{
min-height: 45px;
border: solid 2px black;
background-color: white;
display: flex;
width: 300px;
justify-content: space-between;
align-items: center;
margin-bottom: 1px;
padding-left: 10px;
}
p{
font-size: 20px;
}
.form{
min-height: 45px;
border: solid 2px black;
background-color: white;
display: flex;
width: 300px;
justify-content: space-between;
margin-bottom: 1px;
}
.adiciona-tarefa, .botao-adicona{
height: 100%;
border: none;
outline: none;
min-width: 80px;
font-size: 20px;
padding-left: 10px;
}
.list{
display: flex;
flex-direction: column;
height: 100%;
justify-content: flex-start;
height: 500px;
overflow-y: scroll;
}
.botao-deleta{
min-width: 80px;
height: 100%;
border: none;
cursor: pointer;
font-size: 20px;
}
::-webkit-scrollbar{
width: 1px;
background-color: #FC4245;
}
::-webkit-scrollbar-thumb{
background-color: #ffffff;
}