aprsNotifyJS/src/index.html

35 lines
598 B
HTML
Raw Normal View History

<head>
2018-07-10 18:53:56 -04:00
<meta charset="UTF-8">
<script src="./index.js"></script>
2018-07-10 19:03:21 -04:00
<style>
table.stations {
2018-07-10 19:03:21 -04:00
border-collapse: collapse;
}
table.stations td, table.stations th{
2018-07-10 19:03:21 -04:00
border: 1px solid black;
padding: 2px;
2018-07-10 19:03:21 -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;
}
table.stations tr.neverHeard {
background-color: purple;
2018-07-14 09:10:35 -04:00
color: #eee;
}
2018-07-10 19:03:21 -04:00
</style>
</head>
<body>
<div class="wrapper">
<table class="stations">
</table>
<a href="map.html">Map</a>
</div>
</body>