rust-galmon-web/static/index.html

65 lines
1.8 KiB
HTML
Raw Permalink Normal View History

2019-09-28 10:16:55 +00:00
<!DOCTYPE html>
<html>
<head>
<title>galmon</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" name="viewport" />
<script>
var Module = {};
var __cargo_web = {};
Object.defineProperty( Module, 'canvas', {
get: function() {
if( __cargo_web.canvas ) {
return __cargo_web.canvas;
}
var canvas = document.createElement( 'canvas' );
document.querySelector( 'body' ).appendChild( canvas );
__cargo_web.canvas = canvas;
return canvas;
}
});
</script>
<!-- you could download bootstrap + fontawesome manually, but there might be some differences -->
<!--
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="fontawesome/css/all.min.css" crossorigin="anonymous">
-->
<!-- try using debian ones through symlinks, tested with:
libjs-bootstrap4 4.3.1+dfsg2-1
fonts-font-awesome 5.0.10+really4.7.0~dfsg-1
-->
<link rel="stylesheet" href="bootstrap-debian/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="fontawesome-debian/css/font-awesome.min.css" crossorigin="anonymous">
<style>
table.technical {
font-size: 80%;
line-height: 100%;
}
input[type="checkbox"] {
vertical-align: middle;
}
.select-all {
-moz-user-select: all;
-webkit-user-select: all;
-ms-user-select: all;
user-select: all;
}
.select-none {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.clickable {
cursor: pointer;
}
</style>
</head>
<body>
<script src="galmon-web.js"></script>
</body>
</html>