-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocksmp.html
More file actions
36 lines (34 loc) · 866 Bytes
/
blocksmp.html
File metadata and controls
36 lines (34 loc) · 866 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>BlockSMP | Coming Soon...</title>
<style>
body {
background-color: black;
color: #00d9ff;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.coming-soon {
font-size: 60px;
letter-spacing: 5px;
animation: fade 2s infinite;
}
@keyframes fade {
0% { opacity: 0.3; }
50% { opacity: 1; }
100% { opacity: 0.3; }
}
</style>
</head>
<body>
<div class="coming-soon">Coming soon...</div>
</body>
</html>