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