-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
66 lines (62 loc) · 1.73 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
<!DOCTYPE HTML>
<!--
Spectral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>HooHacks</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:image" content="http://hackuva.io/images/mascot.png"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="http://hackuva.io"/>
<meta property="og:title" content="HooHacks" />
<meta property="og:description" content="The premier annual hackathon of UVA is happening the weekend of March 2nd-3rd!" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<style>
html,
body.landing {
background: linear-gradient(127deg, #3156b1, #1b1848);
color: #fff;
font-family: sans-serif;
font-size: 18px;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
#redirect-message {
width: 100%;
height: 100%;
display: grid;
align-items: center;
justify-items: center;
letter-spacing: 2px;
}
#redirect-message h2 {
text-align: center;
}
#redirect-message a {
color: #9d5cab;
text-decoration: none;
}
#redirect-message a:hover {
color: #7c55aa;
}
</style>
</head>
<body class="landing">
<div id="redirect-message">
<h2>Redirecting to <a href="https://hoohacks.io/">hoohacks.io</a>...</h2>
</div>
<script>
setTimeout(() => {
window.location.href = 'https://hoohacks.io/';
}, 1000);
</script>
</body>
</html>