forked from receptron/mulmocast-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.html
More file actions
77 lines (70 loc) · 1.6 KB
/
Copy pathsplash.html
File metadata and controls
77 lines (70 loc) · 1.6 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Loading...</title>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
body {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
background-color: #f7f7f7;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.splash-container {
text-align: center;
margin: 0;
padding: 0;
}
.app-logo {
width: 400px;
height: auto;
margin: 0;
margin-bottom: 15px;
display: block;
}
.app-name {
color: #222222;
font-size: 28px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: 1px;
}
.loading-spinner {
width: 16px;
height: 16px;
margin: 0 auto;
border: 3px solid #e0e0e0;
border-top-color: #222;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.loading-text {
color: #888;
font-size: 16px;
margin: 0;
}
</style>
</head>
<body>
<div class="splash-container">
<img src="./images/mulmocast_credit.png" alt="Mulmocast Logo" class="app-logo">
<div style="display: flex; align-items: center; justify-content: center;">
<div style="display: flex; align-items: center; gap: 8px;">
<div class="loading-spinner"></div>
<div class="loading-text">Loading...</div>
</div>
</div>
</div>
</body>
</html>