-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (62 loc) · 1.1 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: antiquewhite;
}
.container{
background-color: white;
width: 70%;
margin: auto;
min-height: 100vh;
padding: 30px;
}
form{
display: flex;
flex-direction: column;
}
input,textarea,button{
padding: 10px;
border: 1px solid rgba(0, 0, 0, 0.2);
font: 100 1.1rem sans-serif;
border-radius: 5px;
outline: none;
margin: 10px;
}
button{
background-color: rgb(50, 50, 50);
cursor: pointer;
color: white;
transition: .3s;
}
button:hover{
background-color: rgb(155, 130, 179);
}
.task > div{
width: 100%;
}
.task{
display: flex;
align-items: center;
background-color: rgb(186, 227, 227);
font: 100 1.1rem sans-serif;
margin: 2vmax;
padding: 30px;
color: rgba(0, 0, 0,0.8);
}
.task span{
color: rgba(0, 0, 0,0.6);
}
.deteteBtn{
border-radius: 100%;
width: 30px;
height: 30px;
font-size: 1.6rem;
display: flex;
align-items: center;
border-color: crimson;
justify-content: center;
background-color: crimson;
}