-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (82 loc) · 1.85 KB
/
about.html
File metadata and controls
82 lines (82 loc) · 1.85 KB
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
<!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.0" />
<title>Settings</title>
<link
rel="icon"
href="https://hub.koneko.link/cdn/icons/black.png"
type="image/gif"
sizes="16x16" />
</head>
<body>
<main>
<p>
4koneko is a simple 4 key rythm game made with pixi.js by
<a href="https://koneko.rocks" style="color: dodgerblue">koneko</a>,
hence the name.
</p>
<p>
I apologise for any technical faults, please report them to the github
linked on my profile.
</p>
<p>
As for the songs, you can play your own custom songs (you need the .qp
file) and the songs available are chosen semi randomly, so I apologise
if you don't like the songs.
</p>
<p>
If you want to see extra stuff, you can type in the console
(CTRL+SHIFT+I)
<a style="color: dodgerblue">localStorage.developerMode = "true"</a>
or <a style="color: dodgerblue">localStorage.extraOptions = "true"</a>.
Enjoy!
</p>
<a href="index.html" style="color: dodgerblue">back</a>
</main>
</body>
<style>
html,
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
main {
width: 100%;
height: 100%;
background-color: black;
color: white;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.settings {
background-color: white;
color: black;
border-radius: 10px;
padding: 10px;
height: 70%;
width: 30%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 15px;
}
.keys {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 15px;
}
.subkeys > input {
width: 1ch;
}
</style>
</html>