55 lines
1.3 KiB
HTML
55 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Render Validation Results</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0px;
|
|
background-color: #f5f5f5;
|
|
color: #333;
|
|
height: 100%;
|
|
}
|
|
h1 {
|
|
color: #2c3e50;
|
|
margin-bottom: 20px;
|
|
border-bottom: 2px solid #3498db;
|
|
padding-bottom: 10px;
|
|
}
|
|
#app {
|
|
margin: 0 auto;
|
|
height: 100%;
|
|
}
|
|
.loading {
|
|
text-align: center;
|
|
font-size: 1.2em;
|
|
color: #7f8c8d;
|
|
margin-top: 50px;
|
|
}
|
|
#container {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<!-- Use ES modules to load Lit -->
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"lit": "https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<div id="container">
|
|
<div class="loading">Loading data...</div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="./app.js"></script>
|
|
</body>
|
|
</html>
|