31 lines
324 B
CSS
31 lines
324 B
CSS
|
table {
|
||
|
.charlist {
|
||
|
display: inline-grid;
|
||
|
grid-template-columns: repeat(3, 1fr);
|
||
|
gap: 15px;
|
||
|
|
||
|
.aqua {
|
||
|
color: #97c8ff;
|
||
|
}
|
||
|
|
||
|
.ventus {
|
||
|
color: #26ff62;
|
||
|
}
|
||
|
|
||
|
.terra {
|
||
|
color: #ff7400;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
tbody tr:hover {
|
||
|
background-color: #4f4f4f;
|
||
|
}
|
||
|
|
||
|
& tr,
|
||
|
th,
|
||
|
td {
|
||
|
border: 1px solid #fff;
|
||
|
padding: 7px;
|
||
|
}
|
||
|
}
|