-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
103 lines (91 loc) · 1.94 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
101
102
103
:root{
--color-dark: rgb(14, 14, 14);
--color-dark2: rgb(32, 32, 32);
--color-dark3: rgb(22, 22, 22);
--color-white: #fff;
--color-green: rgb(103, 195, 80);
--color-green2: rgb(51, 149, 26);
--color-red: rgb(184, 40, 35);
--color-red2: rgb(146, 22, 17);
}
body{
font-family: 'Lato';
background-color: var(--color-dark);
color: var(--color-white);
display: flex;
flex-direction: column;
align-items: center;
gap: 4rem;
}
.content{
display: flex;
flex-direction: column;
gap: 4rem;
}
.content--ad-item{
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
#input-new-task,
#btn-new-task{
border: none;
font-size: 1rem;
outline: none;
padding: 1rem;
}
#input-new-task{
width: 20rem;
border-radius: 1rem;
}
#btn-new-task{
background-color: var(--color-dark2);
color: var(--color-white);
border-radius: 50%;
width: 50px;
height: 50px4;
cursor: pointer;
transition: .4s;
}
#btn-new-task:hover{
background-color: var(--color-dark3);
}
#to-do-list{
display: flex;
flex-direction: column;
gap: 1rem;
padding: 0;
}
#to-do-list li{
list-style-type: none;
font-size: 1.4rem;
text-transform: capitalize;
display: flex;
align-items: center;
justify-content: space-between;
}
#to-do-list li:hover{
background-color: var(--color-dark3);
transition: .4s;
border-radius: 1rem;
padding-left: 1rem;
}
#btn-ok{
border: none;
background-color: var(--color-green);
color: var(--color-white);
font-size: 1rem;
padding: .4rem .8rem;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: .4s;
}
#btn-ok:hover{
background-color: var(--color-green2);
}