-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path006a-colours.html
52 lines (48 loc) · 1.21 KB
/
006a-colours.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=320, user-scalable=no" />
<link rel="stylesheet" href="doodle.css" />
<title>Chinese colour names</title>
<style>
#previous-answer
{
margin: 15px 5px;
font-size: 32px;
line-height: 28px;
font-weight: normal;
font-family: serif;
}
#previous-answer .correct { color: #1FC92B; }
#previous-answer .wrong { color: #C9231F; }
#previous-answer .youanswered
{
color: #9C9C9C;
font-size: 80%;
}
#current-hint
{
font-weight: normal;
}
</style>
<link rel="stylesheet" href="006-hanzipad.css" />
</head>
<body class="HanziPad">
<header id="doodle-header">
<a href="."><strong>←</strong> all doodles</a>
<h1>Chinese colour names</h1>
</header>
<main id="doodle-main">
<h2 id="previous-answer"></h2>
<h1><span id="current-challenge"></span><span id="current-hint"></span></h1>
<div class="HanziPad">
<canvas id="canvas"></canvas>
<ul class="optionList" id="options"></ul>
</div>
</main>
<script src="006-hanzipad.js"></script>
<script src="006-database.js"></script>
<script src="006a-colours.js"></script>
</body>
</html>