highlight data received that does not match what was sent

This commit is contained in:
Lewis Moten
2024-05-03 23:37:51 -04:00
parent 53efd951d9
commit 348ea8df7c
3 changed files with 198 additions and 73 deletions

View File

@@ -18,7 +18,23 @@ body {
border-bottom: 4px solid darkolivegreen;
color: black;
}
.panels > div textarea {
#received-graph {
background-color: black;
}
textarea, .raw-data {
background-color: rgb(41, 59, 10);
color: rgb(75, 185, 75);
width: 250px;
height: 75px;
font-size: x-small;
border: 1px solid grey;
overflow: auto;
font-family: monospace;
}
.bit-wrong {
font-weight: bolder;
color: red;
}
.bit-unexpected {
color: green;
}