-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (82 loc) · 1.38 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
body {
background-color: aliceblue;
}
.heading {
text-align: center;
}
span {
color: green;
}
.container {
display: flex;
justify-content: center;
justify-items: center;
padding: 20px;
box-shadow: 46px -12px 15px -3px rgba(0, 0, 0, 0.1);
width: 80%;
margin: auto;
}
.inputText {
width: 550px;
height: 50px;
border-radius: 15px;
margin: 30px;
font-weight: bold;
}
.saveBtn {
border-radius: 15px;
margin: 30px;
background-color: green;
color: white;
font-weight: bold;
}
.addBtn {
border-radius: 15px;
margin: 30px;
background-color: green;
color: white;
font-weight: bold;
}
#error {
color: red;
margin-top: 20px;
}
.addBtn:hover {
opacity: 0.7;
}
.deleteallBtn {
border-radius: 15px;
margin: 30px;
background-color: red;
color: white;
font-weight: bold;
}
.addlist {
display: flex;
justify-content: center;
justify-items: center;
padding: 20px;
box-shadow: 46px -12px 15px -3px rgba(0, 0, 0, 0.1);
width: 80%;
margin: auto;
}
tr td {
border-bottom: 1px solid #ddd;
margin: 20px;
font-size: 20px;
font-weight: bold;
}
tr:hover {
background-color: rgb(220, 215, 214);
}
.editBtn {
background-color: #4c7d00;
color: white;
font-weight: bold;
margin: 10px;
}
.deleteBtn {
background-color: red;
color: white;
font-weight: bold;
}