2018-07-10 01:15:26 -04:00
|
|
|
<head>
|
2018-07-10 18:53:56 -04:00
|
|
|
<meta charset="UTF-8">
|
2018-07-10 01:15:26 -04:00
|
|
|
<script src="./client.js"></script>
|
2018-07-10 19:03:21 -04:00
|
|
|
<style>
|
2018-07-10 20:43:06 -04:00
|
|
|
table.stations {
|
2018-07-10 19:03:21 -04:00
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
2018-07-10 20:43:06 -04:00
|
|
|
table.stations td, table.stations th{
|
2018-07-10 19:03:21 -04:00
|
|
|
border: 1px solid black;
|
2018-07-10 20:43:06 -04:00
|
|
|
padding: 2px;
|
2018-07-10 19:03:21 -04:00
|
|
|
}
|
|
|
|
|
2018-07-10 20:43:06 -04:00
|
|
|
table.stations tr.timedOut {
|
2018-07-10 19:03:21 -04:00
|
|
|
background-color: red;
|
|
|
|
}
|
2018-07-13 15:27:59 -04:00
|
|
|
|
|
|
|
table.stations tr.lowVoltage {
|
|
|
|
background-color: yellow;
|
|
|
|
}
|
2018-07-10 19:03:21 -04:00
|
|
|
</style>
|
2018-07-10 01:15:26 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
2018-07-10 20:43:06 -04:00
|
|
|
<table class="stations">
|
2018-07-10 01:15:26 -04:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</body>
|