-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
82 lines (69 loc) · 1.31 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
body{
font-family: Arial;
font: 100;
align-self: center;
}
#main-heading{
text-align: center;
}
.grid-Container {
display: grid;
grid-template-columns: 200px 150px 100px ;
column-gap: 10px;
row-gap: 10px;
margin-top: 10px;
align-items: center;
}
#input-text,#todo-date{
font-size: 15px;
padding: 10px 5px;
}
.btn-todo{
color: white;
border: none;
background-color: black;
border-radius: 10px;
padding: 15px 0px;
outline: none;
transition: ease-out 0.3s;
border: 2px solid #42fb4b ;
position: relative;
z-index: 1;
}
.btn-todo:hover{
color: #fff;
cursor: pointer;
}
.btn-todo:before {
transition: 0.5s all ease;
position: absolute;
top: 0;
left: 50%;
right: 50%;
bottom: 0;
opacity: 0;
content: "";
background-color: #42fb4b;
}
.btn-todo:hover:before {
transition: 0.5s all ease;
left: 0;
right: 0%;
opacity: 1;
z-index: -1;
}
.btn-delete{
background-color: rgb(255, 0, 68);
color: white;
border: none;
border-radius: 10px;
padding: 15px 0px;
outline: none;
transition: ease-out 0.3s;
box-shadow: inset 0 0 0 0 #f9e506;
}
.btn-delete:hover {
box-shadow: inset 100px 0 0 0 #f9e506;
color: black;
cursor: pointer ;
}