-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (51 loc) · 996 Bytes
/
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
*{
font-family: "Lateef", serif;
font-weight: 200;
font-style: normal;
}
.container{
text-align: center;
}
h1{
margin-top: 100px;
color: rgb(158, 9, 158);
font-family: "Caveat", cursive;
font-size: 4rem;
}
#do{
font-size: 1.5rem;
font: bold;
border: 1px solid rgb(155, 147, 147);
border-radius: 8px;
padding-left: 10px;
}
#addTask{
border-radius: 8px;
outline: 0;
border: 0;
border: 1px solid rgb(155, 147, 147);
margin-left: 5px;
font-size: 1.3rem;
font: bold;
background-color: rgb(250, 204, 250);
}
#addTask i{
font-size: 1rem;
}
li{
font-size: 2rem;
}
.deleteTask{
position: absolute;
right: 0;
border: 0;
border-radius: 5px;
color: rgb(211, 74, 74);
font-size: 1.2rem;
cursor: pointer;
}
.deleteTask:hover, #addTask:hover{
transform: scale(1.1);
transition: 0.2s ease;
cursor: pointer;
}