54 lines
1.3 KiB
HTML
54 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link data-trunk rel="rust" data-bin="plate-tool-eframe" />
|
|
<title>Plate Tool</title>
|
|
<style>
|
|
html {
|
|
/* Remove touch delay: */
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
body {
|
|
/* Light mode background color for what is not covered by the egui canvas,
|
|
or where the egui canvas is translucent. */
|
|
background: #909090;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
/* Dark mode background color for what is not covered by the egui canvas,
|
|
or where the egui canvas is translucent. */
|
|
background: #404040;
|
|
}
|
|
}
|
|
|
|
/* Allow canvas to fill entire web page: */
|
|
html,
|
|
body {
|
|
overflow: hidden;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Make canvas fill entire document: */
|
|
canvas {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="main_canvas"></canvas>
|
|
</body>
|
|
</html>
|