-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (32 loc) · 905 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<!--
<link data-trunk rel="rust" data-bin="run_plot" data-wasm-opt="4" data-cargo-features="websocket_rx"
data-cargo-no-default-features="false" data-weak-refs data-reference-types/>
-->
<link data-trunk rel="rust" data-bin="run_plot" data-wasm-opt="4" data-cargo-features="futuresdr_integrated,svg"
data-cargo-no-default-features="false" data-weak-refs data-reference-types/>
</head>
<style>
body {
background: #182841;
}
#container {
margin: 50px;
text-align: center;
}
#canvas {
width: 80vw !important;
height: 60vh !important;
max-width: 1400px !important;
outline: none;
}
</style>
<body>
<div id="container">
<canvas id="canvas"></canvas>
</div>
</body>
</html>