-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
80 lines (73 loc) · 1.47 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0; url='https://old.buildingblocs.sg/2023/'" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting...</title>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
font-family: sans-serif;
color: rgb(127, 127, 127)
}
@media (prefers-color-scheme: dark) {
body {
background: black;
}
}
.center {
text-align: center;
}
.center > * {
margin: 0 auto;
}
.spinner {
font-size: 2em;
width: 1em;
height: 1em;
display: flex;
align-items: center;
justify-content: center;
}
.spinner span {
display: block;
border-radius: 50%;
width: 0.2em;
height: 0.2em;
box-shadow: 0.3em 0.3em rgb(127, 127, 127),
-0.3em 0.3em rgb(127, 127, 127),
0.3em -0.3em rgb(127, 127, 127),
-0.3em -0.3em rgb(127, 127, 127),
-0.4243em 0 rgb(127, 127, 127),
0 0.4243em rgb(127, 127, 127),
0 -0.4243em rgb(127, 127, 127),
0.4243em 0 rgb(127, 127, 127);
animation: 2s linear infinite spin;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="center">
<div class="spinner">
<span></span>
</div>
<div><p>Redirecting you to BuildingBloCS 2023</p></div>
</div>
</body>
</html>