-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (86 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sword Art Offline</title>
</head>
<body>
<div class="output"><h1><span class="logo">Sword Art Offline</span></h1> [ Made by <a href="https://twitter.com/karanganesan" target="_blank">@karanganesan</a> ]
<p>
In 2022, a virtual reality massively multiplayer online role-playing game (VRMMORPG) called Sword Art Offline (SAO) is released.
On November 6, 10,000 players log into the SAO's mainframe cyberspace for the first time, only if you kill all the octahedron bosses you can go offline. #JS13K
<p>
Now you are Kirito ✔ | Rules are so simple use the sword to attack the bosses i.e. the octahedrons (30 of them) only then you can go offline...
</p>
<p>Controls :
<br> Left Arrow / A - Left
<br> Front Arrow / W - Front
<br> Back Arrow / S - Back
<br> E - Up Floor
<br> Q - Down Floor
</p>
<h2><a href="./game.html">Play</a></h2>
</div>
<style>
h1,
h3 {
margin-top: 0
}
body,
ul {
margin: 0
}
* {
box-sizing: border-box
}
body {
background: red;
color: white;
font-family: Monaco, Consolas, monospace;
-webkit-font-smoothing: none;
-moz-osx-font-smoothing: grayscale;
line-height: 1.4
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
color: #1FC
}
h3 {
font-size: 24px
}
p {
margin-bottom: 2rem
}
a,
a:visited {
border-bottom: .2rem solid #1FC;
color: #1FC;
text-decoration: none
}
.logo,
a:active,
a:focus,
a:hover {
background: #1FC;
color: #031e11
}
ul {
padding: 6px 0 0
}
li {
list-style-type: none
}
.output {
padding: 3rem 2rem;
pointer-events: auto;
text-shadow: 0 .2rem 1rem #0c7b46;
font-size: 22px
}
::selection {
background: #1FC;
color: #031e11
}
</style>
</body>
</html>