-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
78 lines (71 loc) · 2.65 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
<!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, shrink-to-fit=no">
<link rel="manifest" href="static/manifest.json">
<link rel="shortcut icon" href="static/favicon.ico">
<link rel="stylesheet" href="static/materializecss/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="static/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/images/favicon-16x16.png">
<link rel="mask-icon" href="static/images/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="static/images/favicon.ico">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#000000">
<title>Quack Stanley</title>
<style>
html {
background: url("static/images/bg.png");
}
</style>
<script type="module" src="src/index.js"></script>
</head>
<body>
<div id="root"></div>
<noscript>
<style>
.stanley--noscript {
width: 120px;
height: 120px;
background-color: #4CAF50;
border-radius: 60px;
border: solid 2px #424242;
margin-bottom: 20px;
animation: stanley-colour linear 15s infinite alternate;
}
.noscript-message {
margin-top: 100px;
}
@keyframes stanley-colour {
0% {
background-color: #CAF50;
}
50% {
background-color: #2196F3;
}
100% {
background-color: #9c27b0;
}
}
</style>
<main>
<div class="container">
<div class="row">
<div class="col s12">
<div class="noscript-message center-align flow-text">
<img src="static/images/stanley.png" class="stanley--noscript" />
<br />
<div class="card-panel">
<strong>Enable JavaScript</strong> to play Quack Stanley
</div>
</div>
</div>
</div>
</div>
</main>
</noscript>
</body>
</html>