-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsolution.html
More file actions
59 lines (53 loc) · 1.23 KB
/
solution.html
File metadata and controls
59 lines (53 loc) · 1.23 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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Solution</title>
<style>
body {
margin: 0;
padding: 12px 16px;
font-family: 'Segoe UI', sans-serif;
font-size: 14px;
color: #f1f1f1;
background: rgba(0, 0, 0, 0.4);
}
#solution-container {
white-space: pre-wrap;
word-wrap: break-word;
background: rgba(0, 0, 0, 0.4);
}
#loading-spinner {
display: flex;
align-items: center;
justify-content: center;
margin: 40px auto;
background: rgba(0, 0, 0, 0.4);
}
.spinner {
border: 4px solid rgba(255, 255, 255, 0.2);
border-top: 4px solid #00ffff;
border-radius: 50%;
width: 32px;
height: 32px;
animation: spin 0.8s linear infinite;
background: rgba(0, 0, 0, 0.4);
}
.spinner-text {
color: #fff;
font-size: 14px;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div id="loading-spinner">
<div class="spinner"></div>
<div class="spinner-text">Analyzing screenshots...</div>
</div>
<div id="solution-container"></div>
<script src="solution-render.js"></script>
</body>
</html>