-
Notifications
You must be signed in to change notification settings - Fork 0
/
shutdown.html
61 lines (54 loc) · 1.13 KB
/
shutdown.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shutting Down</title>
<link rel="stylesheet" href="styles.css">
</head>
<style>
.shutdown {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
background-color: #000;
}
.loader-container {
text-align: center;
}
.loader {
display: inline-block;
width: 80px;
height: 80px;
border: 6px solid #fff;
border-radius: 50%;
border-top-color: transparent;
animation: spin 1.5s linear infinite;
}
.loader-text {
margin-top: 20px;
color: #fff;
font-size: 18px;
font-family: Arial, sans-serif;
animation: fade-in-out 1.5s ease-in-out infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes fade-in-out {
0%, 100% { opacity: 0; }
50% { opacity: 1; }
}
</style>
<body>
<div class="shutdown">
<div class="loader-container">
<div class="loader"></div>
<div class="loader-text">Shutting down...</div>
</div>
</div>
</body>
</html>