31 lines
711 B
HTML
31 lines
711 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="de">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<meta name="color-scheme" content="dark" />
|
||
|
|
<title>HMS MediaEngine</title>
|
||
|
|
<style>
|
||
|
|
/* Vollbild ohne Scroll auf dunklem Anthrazit (§17.2, §17.6). */
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
background: #0d0f12;
|
||
|
|
color-scheme: dark;
|
||
|
|
}
|
||
|
|
#root {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="/src/main.tsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|