-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
64 lines (58 loc) · 1.18 KB
/
index.css
File metadata and controls
64 lines (58 loc) · 1.18 KB
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
body{
background-color: rgb(255, 255, 255);
text-align: center;
}
.main{
background-color: rgb(9, 56, 9);
width: 50%;
margin: auto;
margin-top: 50px;
padding: 20px;
border-radius: 20px;
color: whitesmoke;
}
#add{
border-radius: 10px;
padding: 5px 10px;
background-color: #adcff4;
}
input{
border-radius: 10px;
padding: 5px 10px;
background-color: rgb(189, 255, 189);
}
ul{
margin-top: 40px;
margin-left: 20px;
}
li{
display: flex;
justify-content:left;
margin: 5px;
font-size: 20px;
}
.delete {
display: inline-block;
padding: 5px 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
text-decoration: none;
color: #040404; /* Text color */
background-color: #adcff4; /* Background color */
border: none;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease, transform 0.3s ease;
cursor: pointer;
margin-left: 10px;
}
/* Hover effect */
.delete:hover {
background-color: #0056b3;
transform: translateY(-2px);
}
#add.hover{
background-color: #0056b3;
transform: translateY(-2px);
}