38 lines
587 B
CSS
38 lines
587 B
CSS
.user-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 80%;
|
|
}
|
|
table {
|
|
width: 80%;
|
|
}
|
|
|
|
/****** table style ******/
|
|
table tbody>tr>td:last-child{
|
|
text-align: center;
|
|
}
|
|
|
|
.table.table-style {
|
|
|
|
}
|
|
|
|
.table.table-style tr td:last-child {
|
|
|
|
}
|
|
|
|
.table.table-style > thead > tr > td,
|
|
.table.table-style > tbody > tr > td,
|
|
.table.table-style > tfoot > tr > td {
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.table.table-style tr {
|
|
}
|
|
|
|
.table.table-style tbody > tr {
|
|
background-color: var(--bg-secondary);
|
|
}
|
|
|
|
.table.table-style tbody > tr:nth-child(even) {
|
|
background-color: var(--bg-grad-1);
|
|
} |