-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.87 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="Web-based ECU calibration editor for Simos, MED, and DSG tuning. View and edit binary calibration data with A2L/XDF definitions." />
<meta name="keywords" content="ECU, calibration, tuning, Simos, DSG, A2L, XDF, binary editor" />
<meta name="author" content="theflashbold" />
<meta name="theme-color" content="#1a1a2e" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta property="og:title" content="Tune Editor" />
<meta property="og:description" content="Web-based ECU calibration editor for Simos, MED, and DSG tuning." />
<meta property="og:type" content="website" />
<meta property="og:image" content="logo.svg" />
<title>Tune Editor</title>
</head>
<body>
<div id="app">
<div id="splash" class="splash">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 48" class="splash-logo">
<rect x="8" y="38" width="48" height="4" rx="1" fill="#52525b"/>
<rect x="12" y="12" width="40" height="26" rx="2" fill="#3f3f46"/>
<rect x="14" y="14" width="36" height="22" rx="1" class="splash-screen"/>
<path d="M36 8L22 32h10l-4 18 18-26H34l2-16z" fill="#d4a855" opacity="0.95"/>
<path d="M35 10L23 30h9l-3.5 15 15-22H33l2-13z" fill="#e8c468"/>
</svg>
<div class="splash-text">Tune Editor</div>
<div class="splash-track">
<div class="splash-bar"></div>
</div>
</div>
</div>
<style>
.splash{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh;background:#fff;color:#71717a;font-family:system-ui,sans-serif;gap:16px}
.splash-logo{width:96px;height:96px;opacity:0;animation:splash-in .4s ease-out forwards}
.splash-screen{fill:#fff}
.splash-text{font-size:14px;font-weight:500;opacity:0;animation:splash-in .4s ease-out .15s forwards}
.splash-track{width:180px;height:3px;background:#e4e4e7;border-radius:1px;overflow:hidden;opacity:0;animation:splash-in .4s ease-out .3s forwards}
.splash-bar{height:100%;width:30%;background:#d4a855;border-radius:1px;animation:splash-bar 1.2s ease-in-out infinite}
@media(prefers-color-scheme:dark){
.splash{background:#18181b;color:#a1a1aa}
.splash-screen{fill:#18181b}
.splash-track{background:#27272a}
}
@keyframes splash-in{to{opacity:1}}
@keyframes splash-bar{0%{transform:translateX(-100%)}50%{transform:translateX(250%)}100%{transform:translateX(-100%)}}
</style>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>