mirror of
https://github.com/Pandipipas/scoreko-electron-dev.git
synced 2026-06-06 05:32:06 +00:00
905bf0dda0
* feat: recreate scoreko electron wrapper on electron 39.5.1 * fix: handle missing bindings in sqlite legacy workspace
62 lines
1.3 KiB
HTML
62 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>Scoreko</title>
|
|
<style>
|
|
:root {
|
|
color-scheme: dark;
|
|
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: grid;
|
|
place-items: center;
|
|
background: #0f0f0f;
|
|
color: #d6d6d6;
|
|
}
|
|
|
|
.card {
|
|
text-align: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 24px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.subtitle {
|
|
margin-top: 8px;
|
|
color: #9a9a9a;
|
|
}
|
|
|
|
.spinner {
|
|
margin: 24px auto 0;
|
|
width: 30px;
|
|
aspect-ratio: 1;
|
|
border: 3px solid #2f2f2f;
|
|
border-top-color: #3b82f6;
|
|
border-radius: 50%;
|
|
animation: spin 0.9s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<div class="title">Scoreko</div>
|
|
<div class="subtitle">Inicializando NodeCG y dashboard…</div>
|
|
<div class="spinner" aria-hidden="true"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|