added delete function

This commit is contained in:
Daniel
2022-04-26 10:50:42 +04:30
parent c757b2bfa6
commit e49ade7462
6 changed files with 99 additions and 31 deletions
+37 -26
View File
@@ -1,29 +1,40 @@
.table {
width: 100%;
text-align: left;
padding-top: 20px;
}
.table td {
font-size: 1.3rem;
padding: 5px;
}
.table th {
font-size: 1.6rem;
padding: 5px;
}
.table tbody tr:nth-of-type(2n-1) {
background-color:#273949;
}
width: 100%;
text-align: left;
padding-top: 20px;
}
.table a {
text-decoration: none;
color: rgb(194, 193, 193);
font-size: 1rem;
}
.table td {
font-size: 1.3rem;
padding: 5px;
}
.table a:hover {
text-decoration: underline;
}
.table th {
font-size: 1.6rem;
padding: 5px;
}
.table tbody tr:nth-of-type(2n-1) {
background-color:#273949;
}
.table tbody td {
border-radius: 10px;
}
.table a {
text-decoration: none;
color: rgb(194, 193, 193);
font-size: 1rem;
}
.table a:hover {
text-decoration: underline;
}
.delete {
background-color: red;
color: white;
cursor: pointer;
}