-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Random Color</title>
<link rel="stylesheet" href="/normalize.css">
<style>
.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}
</style>
<script>
(function(){
var redirect = sessionStorage.redirect
delete sessionStorage.redirect
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect)
}
})();
</script>
<script src="/main.js"></script>
</head>
<body>
<script>
var app = Elm.Main.init({
flags: {
randomNumber: Math.floor(Math.random()*0xFFFFFFFF),
mountPath: "",
}
})
</script>
</body>
</html>