48 lines
995 B
HTML
48 lines
995 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<style>
|
||
|
#tauri-root {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
background: black;
|
||
|
color: white;
|
||
|
overflow: hidden;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
|
||
|
#tauri-loading {
|
||
|
position: absolute;
|
||
|
display: inline;
|
||
|
z-index: 0;
|
||
|
left: 50%;
|
||
|
top: 50%;
|
||
|
-webkit-transform: translate(-50%, -50%);
|
||
|
transform: translate(-50%, -50%);
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#tauri-frame {
|
||
|
position: absolute;
|
||
|
z-index: 1;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
a, a:link, a:visited, a:hover, a:active {
|
||
|
color: white;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
</style>
|
||
|
<script type="module" src="/src/main.ts" defer></script>
|
||
|
</head>
|
||
|
<body id="tauri-root">
|
||
|
<div id="tauri-loading">Chargement...</div>
|
||
|
</body>
|
||
|
</html>
|