mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 21:19:35 +00:00
30 lines
567 B
HTML
30 lines
567 B
HTML
<html>
|
|
<head>
|
|
<title>Disconnected</title>
|
|
<script src="js/roslib.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
.dash {
|
|
font-size: 30px;
|
|
text-align: center;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
line-height: 150%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="dash">
|
|
<div class="mode"> </div>
|
|
<div class="battery"> </div>
|
|
</div>
|
|
</body>
|
|
<script src="js/gcs.js"></script>
|
|
</html>
|