-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplash.html
More file actions
69 lines (69 loc) · 1.51 KB
/
splash.html
File metadata and controls
69 lines (69 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Launching Batman: Arkham Knight...</title>
<style>
html, body {
height: 100%;
margin: 0;
background: #000;
overflow: hidden;
width: 100vw;
height: 100vh;
}
body {
width: 100vw;
height: 100vh;
background: #000 url('batman.jpg') no-repeat center center fixed;
background-size: cover;
position: relative;
}
.spinner {
position: absolute;
right: 32px;
bottom: 32px;
width: 32px;
height: 32px;
border: 4px solid #444;
border-top: 4px solid #fff;
border-radius: 50%;
animation: spin 1s linear infinite;
box-shadow: 0 0 16px #000a;
background: transparent;
}
.launch-text {
position: absolute;
left: 32px;
bottom: 56px;
color: #fff;
font-size: 1rem;
font-family: 'Segoe UI', Arial, sans-serif;
opacity: 0.8;
text-shadow: 1px 1px 4px #000a;
letter-spacing: 0.05em;
user-select: none;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 2px;
}
.author {
font-size: 0.85rem;
opacity: 0.7;
margin-top: 2px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="spinner"></div>
<div class="launch-text">
Launching BAK
<span class="author">Made by кяуρтιк</span>
</div>
</body>
</html>