aprsNotifyJS/src/index.html

35 lines
598 B
HTML

<head>
<meta charset="UTF-8">
<script src="./index.js"></script>
<style>
table.stations {
border-collapse: collapse;
}
table.stations td, table.stations th{
border: 1px solid black;
padding: 2px;
}
table.stations tr.timedOut {
background-color: red;
}
table.stations tr.lowVoltage {
background-color: yellow;
}
table.stations tr.neverHeard {
background-color: purple;
color: #eee;
}
</style>
</head>
<body>
<div class="wrapper">
<table class="stations">
</table>
<a href="map.html">Map</a>
</div>
</body>