-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 1.6 KB
/
index.html
File metadata and controls
64 lines (64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PyCon Philippines - Redirecting...</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #fff;
font-family: 'Inter', Arial, sans-serif;
color: #222;
}
.spinner {
width: 32px;
height: 32px;
border: 2.5px solid #e0e0e0;
border-top: 2.5px solid #222;
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin-bottom: 24px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.minimal {
text-align: center;
font-weight: 400;
letter-spacing: 0.01em;
}
.minimal a {
color: #222;
text-decoration: underline dotted;
font-size: 1em;
}
.minimal a:hover {
color: #888;
}
</style>
<script>
setTimeout(function() {
window.location.href = "https://pycon.python.ph";
}, 2000);
</script>
</head>
<body>
<div class="spinner"></div>
<div class="minimal">
<div style="font-size:1.2em; margin-bottom: 0.5em;">You are being redirected to <strong>PyCon Philippines</strong></div>
<div style="font-size:0.95em; color:#aaa;">If not redirected, <a href="https://pycon.python.ph">click here</a>.</div>
</div>
</body>
</html>