blob: 310c69fe89b25a12f270a3c54015c932f364b14a (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Telechromy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/static/styles.css">
<link rel="stylesheet" type="text/css" href="/telechromy/static/styles.css">
<link rel="shortcut icon" type="image/x-icon" href="/telechromy/static/favicon.ico">
</head>
<body id="body">
<div class="container">
<div class="center-container">
<div>
<div class="home">
<a href="/telechromy" class="home-title">Telechromy</a>
<span> at </span><a class="site" href="/">cyfraeviolae.org</a>
<a class="source" href="/git/telechromy">[src]</a>
</div>
</div>
<noscript>Sorry, JavaScript is required to play Telechromy.</noscript>
<div id="prompt" style="display: none;">
<p>
Describe the background color without using color words or numbers.
<br>
<small>
You could use <span class="nb">objects (<em>a moonlit glade</em>)</span>,
<span class="nb">emotions (<em>latent bitterness</em>)</span>,
<span class="nb">ideas (<em>intuitionism</em>)</span>,
<span class="nb">or memories (<em>our first kiss</em>)</span>.
</small>
</p>
<input id="entry" type="text">
<div id="share" style="display: none;">
<p>
Share this link with a friend.
</p>
<input id="url" type="text" readonly>
<button id="copy">Copy</button>
<button id="visit">Visit</button>
</div>
</div>
<div id="guess" style="display: none;">
<p>
Select the color described by
<br>
<span id="challenge"></span>
</p>
<input id="color" type="color">
<br>
<br>
<button id="submit">Submit</button>
</div>
<div id="result" style="display: none;">
<p>
<span id="prompt-text"></span>
</p>
</div>
</div>
</div>
<div id="labels" style="display: none;">
<div class="prompt-label label">
Prompt
</div>
<div class="guess-label label">
Guess
</div>
</div>
<script src="/telechromy/static/script.js"></script>
</body>
</html>
|