CS370-Milestone5 / styles.css
JaMugen's picture
Update styles.css
5531cc1
Raw
History Blame Contribute Delete
533 Bytes
/* styles.css */
/* Your CSS styles for the table */
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; /* Or specify a fixed width for th/td */
}
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);
}