-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading.html
More file actions
37 lines (37 loc) · 860 Bytes
/
Copy pathloading.html
File metadata and controls
37 lines (37 loc) · 860 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Loading Vehicles Diagnostic System...</title>
<style>
body {
background-color: #0a0a0c;
color: #e2e8f0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.spinner {
width: 50px;
height: 50px;
border: 5px solid #222226;
border-top-color: #e63946;
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 20px;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="spinner"></div>
<h2>Starting Diagnostic Server...</h2>
<p>Please wait while the system initializes.</p>
</body>
</html>