34 lines
433 B
CSS
34 lines
433 B
CSS
.table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 20px;
|
|
background: #1c1c1c;
|
|
}
|
|
|
|
.table th, .table td {
|
|
border: 1px solid #333;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.table th {
|
|
background: #222;
|
|
}
|
|
|
|
.table tr:hover {
|
|
background: #2a2a2a;
|
|
cursor: pointer;
|
|
}
|
|
|
|
td:nth-child(3) {
|
|
color: #00e676;
|
|
}
|
|
|
|
td:nth-child(5) {
|
|
color: red;
|
|
}
|
|
|
|
td:nth-child(6) {
|
|
color: #00c853;
|
|
}
|