File size: 441 Bytes
9fe59a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
table {
border-collapse: collapse;
width: 100%;
table-layout: fixed;
word-wrap: break-word;
}
th, td {
padding: 8px;
border: 1px solid black;
text-align: center;
width: auto;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
.timestamp {
background-color: rgb(255, 0, 0);
color: rgb(128, 128, 128);
}
.original {
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
}
|