-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (75 loc) · 1.36 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
:root{
--blue: #8299CB;
--purpleDark:#9955AA;
--black:#050505;
--white:#FAFAFA;
}
*{
padding: 0;
margin: 0;
font-family: 'Ysabeau Infant', sans-serif;
}
body{
background-color: #FAFAFA;
}
.container{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.list-container{
width: 500px;
height: 400px;
background-color: var(--blue);
border-radius: 30px;
display: flex;
flex-direction: column;
padding: 70px;
color:var(--black);
}
.task-container{
display: flex;
justify-content: space-between;
align-items: center;
background-color: #FAFAFA;
padding: 15px 30px;
border-radius: 10px;
border: 3px solid #E4E7E7;
transition: all 0.1s ease-in;
}
.task-container textarea{
all:unset;
overflow: hidden;
background-color: #FAFAFA;
font-size: 20px;
}
.task-container:hover{
border-color: var(--purpleDark);
}
.add-task{
height: 20px;
width: 30px;
}
.btn-container{
opacity: 0;
padding: 20px;
display: flex;
justify-content: space-around;
align-items: center;
transition: all 0.2s ease-in-out;
}
.cancel{
all:unset;
color: var(--black);
}
.cancel:hover{
color: var(--purpleDark);
}
.add{
all:unset;
background-color:var(--white);
padding: 9px 30px;
border-radius: 20px;
}