40 lines
492 B
CSS
40 lines
492 B
CSS
.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;
|
|
}
|
|
|
|
.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;
|
|
} |