id |
Имя |
Страна |
Баланс |
1 |
Владимир |
Россия |
147 |
2 |
Александр |
Белорусь |
0 |
3 |
Lisa |
Англия |
65 |
4 |
Мутумба |
Зимбабве |
-43 |
5 |
Donald |
США |
350 |
6 |
Angela |
Германия |
37 |
.table_sort table {
border-collapse: collapse;
}
.table_sort th {
color: #ffebcd;
background: #008b8b;
cursor: pointer;
}
.table_sort td,
.table_sort th {
width: 150px;
height: 40px;
text-align: center;
border: 2px solid #846868;
}
.table_sort tbody tr:nth-child(even) {
background: #e3e3e3;
}
th.sorted[data-order="1"],
th.sorted[data-order="-1"] {
position: relative;
}
th.sorted[data-order="1"]::after,
th.sorted[data-order="-1"]::after {
right: 8px;
position: absolute;
}
th.sorted[data-order="-1"]::after {
content: "▼"
}
th.sorted[data-order="1"]::after {
content: "▲"
}