-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
90 lines (76 loc) · 1.32 KB
/
index.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
@import url('https://fonts.googleapis.com/css?family=Amiri&display=swap');
body {
background-color: aquamarine;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Amiri', serif;
}
.todo-box {
width: 600px;
height: 700px;
background-color: white;
padding: 1em;
display: flex;
flex-direction: column;
background-color: lightyellow;
font-size: 1.4em;
}
.title {
width: 107.5%;
box-sizing: border-box;
text-align: center;
margin-top: -22px;
margin-left: -23px;
background-color: lightgreen;
}
.title h1 {
color: gray;
text-transform: uppercase;
}
.uncompleted-tasks {
box-sizing: border-box;
text-transform: capitalize;
}
.completed-tasks{
text-transform: capitalize;
}
.item{
display: flex;
justify-content: space-between;
}
.completed-item span{
text-decoration: line-through;
}
.fa-circle{
font-size: 0.6em;
}
.actions .fa{
cursor: pointer;
}
.actions .fa:hover{
font-size: 1.1em;
}
ul{
padding-inline-start: 0px;
}
form input{
padding: 0.55em;
width: 78.5%;
margin-right: 20px;
}
form button{
border: 0;
color: white;
font-size: 0.75em;
padding: 0.4em;
background-color:#65cca9;
text-transform: capitalize;
border-radius: 2px;
cursor: pointer;
}
form button:hover{
background-color: #4c997f;
transition: 1s;
}