-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
110 lines (89 loc) · 2.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="nushdle.">
<meta name="description" content="NUS High's very own version of Wordle">
<meta name="theme-color" content="#19A7A7">
<meta property="og:type" content="website">
<meta property="og:title" content="nushdle.">
<meta property="og:description" content="NUS High's very own version of Wordle">
<title>nushdle.</title>
<link href="./css/style.css" rel="stylesheet" type="text/css" media="all">
<script src="https://unpkg.com/swup@latest/dist/swup.min.js"></script>
<style>
a {
text-shadow: none;
}
a:hover {
text-shadow: 0px 0px 15px #FFFFFF, 0px 0px 15px #FFFFFF;
}
a:hover.nohover {
text-shadow: none;
}
.transition-fade {
transition: opacity 0.4s 1s;
opacity: 1;
}
html.is-animating .transition-fade {
opacity: 0;
}
@-moz-keyframes slideUp {
0% {
transform: translate3d(0, 100%, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@-webkit-keyframes slideUp {
0% {
transform: translate3d(0, 100%, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@-o-keyframes slideUp {
0% {
transform: translate3d(0, 100%, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
@keyframes slideUp {
0% {
transform: translate3d(0, 100%, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.scroll-anchors>* {
display: block;
margin: 1000px 0;
}
.no-transitions * {
transition: none !important;
}
</style>
</head>
<body>
<main id="swup" class="transition-fade">
<a href="game.html">
<h1 style="font-size: 60pt;"><span style="color:#19A7A7;">nush</span>dle.</h1>
</a>
<p></p>
<div style="text-shadow: none;">
<h2 id="1"><a href="game.html" style="color: yellow;">play</a></h2>
<h2 id="5"><a href="leaderboard.html" style="color: cyan;">leaderboard</a></h2>
<h2 id="6"><a href="account.html" style="color: mediumpurple;">account</a></h2>
</div>
</main>
<script>
const swup = new Swup(); // only this line when included with script tag
</script>
</body>
</html>